
{"id":19160,"date":"2022-08-26T22:14:04","date_gmt":"2022-08-26T16:44:04","guid":{"rendered":"https:\/\/valavil.in\/?p=19160"},"modified":"2022-08-26T22:14:04","modified_gmt":"2022-08-26T16:44:04","slug":"connect-mysql-database-using-mysql-connector-python","status":"publish","type":"post","link":"https:\/\/www.trueangle.org\/index.php\/2022\/08\/26\/connect-mysql-database-using-mysql-connector-python\/","title":{"rendered":"Connect MySQL database using MySQL-Connector Python"},"content":{"rendered":"\n<p><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">$cat fdb.py\nimport mysql.connector\n\n\nconn = mysql.connector.connect(host='localhost',\n\t\t\tdatabase='learning',\n\t\t\tuser='jeff',\n\t\t\tpassword='sixer')\nprint(conn)\nconn.close\n$python3  fdb.py\n&lt;mysql.connector.connection_cext.CMySQLConnection object at 0x7f143fc84790&gt;\n$\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p>$cat fdb.py import mysql.connector conn = mysql.connector.connect(host=&#8217;localhost&#8217;, database=&#8217;learning&#8217;, user=&#8217;jeff&#8217;, password=&#8217;sixer&#8217;) print(conn) conn.close $python3 fdb.py &lt;mysql.connector.connection_cext.CMySQLConnection object at 0x7f143fc84790&gt; $<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":[],"categories":[1],"tags":[],"_links":{"self":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/posts\/19160"}],"collection":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/comments?post=19160"}],"version-history":[{"count":0,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/posts\/19160\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/media?parent=19160"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/categories?post=19160"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.trueangle.org\/index.php\/wp-json\/wp\/v2\/tags?post=19160"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}