{"id":7787,"date":"2024-11-14T08:10:45","date_gmt":"2024-11-14T00:10:45","guid":{"rendered":"https:\/\/fwq.ai\/blog\/7787\/"},"modified":"2024-11-14T08:10:45","modified_gmt":"2024-11-14T00:10:45","slug":"python-mysql-connector-%e6%8a%a5%e9%94%99%ef%bc%9a%e5%a6%82%e4%bd%95%e8%a7%a3%e5%86%b3%e6%9f%a5%e8%af%a2%e8%af%ad%e6%b3%95%e9%94%99%e8%af%af%ef%bc%9f","status":"publish","type":"post","link":"https:\/\/fwq.ai\/blog\/7787\/","title":{"rendered":"Python MySQL Connector \u62a5\u9519\uff1a\u5982\u4f55\u89e3\u51b3\u67e5\u8be2\u8bed\u6cd5\u9519\u8bef\uff1f"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/img.php.cn\/upload\/article\/001\/246\/273\/173123359912839.jpg\" class=\"aligncenter\" title=\"Python MySQL Connector \u62a5\u9519\uff1a\u5982\u4f55\u89e3\u51b3\u67e5\u8be2\u8bed\u6cd5\u9519\u8bef\uff1f\u63d2\u56fe\" alt=\"Python MySQL Connector \u62a5\u9519\uff1a\u5982\u4f55\u89e3\u51b3\u67e5\u8be2\u8bed\u6cd5\u9519\u8bef\uff1f\u63d2\u56fe\" \/><\/p>\n<p><strong> connector \u62a5\u9519: \u5982\u4f55\u89e3\u51b3\uff1f<\/strong><\/p>\n<p>\u5728\u4f7f\u7528  \u7684 mysql connector \u65f6\uff0c\u60a8\u53ef\u80fd\u4f1a\u9047\u5230\u9519\u8bef\u3002\u5176\u4e2d\u4e00\u4e2a\u5e38\u89c1\u7684\u9519\u8bef\u662f &#8220;<\/p>\n<hr>\n<p>\u201d\u3002\u8fd9\u662f\u56e0\u4e3a\u5f53\u60a8\u5c1d\u8bd5\u6267\u884c\u4e00\u4e2a\u67e5\u8be2\u65f6\uff0c\u67e5\u8be2\u5b57\u7b26\u4e32\u4e2d\u5b58\u5728\u8bed\u6cd5\u9519\u8bef\u3002 <\/p>\n<p>\u4e3a\u4e86\u89e3\u51b3\u6b64\u9519\u8bef\uff0c\u8bf7\u68c0\u67e5\u60a8\u7684\u67e5\u8be2\u5b57\u7b26\u4e32\u662f\u5426\u5b58\u5728\u4ee5\u4e0b\u95ee\u9898\uff1a<\/p>\n<ul>\n<li>\u9057\u6f0f\u6216\u4e0d\u5339\u914d\u7684\u5f15\u53f7\u6216\u62ec\u53f7<\/li>\n<li>\u5173\u952e\u5b57\u62fc\u5199\u9519\u8bef<\/li>\n<li>\u8868\u6216\u5217\u540d\u62fc\u5199\u9519\u8bef<\/li>\n<\/ul>\n<p>\u6b64\u5916\uff0c\u786e\u4fdd\u60a8\u7684 mysql connector \u5b89\u88c5\u5df2\u66f4\u65b0\uff0c\u5e76\u4e14\u60a8\u4f7f\u7528\u7684\u662f\u6700\u65b0\u7248\u672c\u3002<\/p>\n<p><span>\u7acb\u5373\u5b66\u4e60<\/span>\u201c\u201d\uff1b<\/p>\n<p>\u4ee5\u4e0b\u793a\u4f8b\u4ee3\u7801\u6f14\u793a\u4e86\u5982\u4f55\u6b63\u786e\u4f7f\u7528 mysql connector \u6267\u884c\u67e5\u8be2\uff1a<\/p>\n<pre>import mysql.connector\n\n# \u8fde\u63a5\u5230\u6570\u636e\u5e93\nconn = mysql.connector.connect(\n    host=\"\u4e3b\u673a\u540d\u6216IP\u5730\u5740\",\n    user=\"\u6570\u636e\u5e93\u7528\u6237\u540d\",\n    password=\"\u6570\u636e\u5e93\u5bc6\u7801\",\n    database=\"\u6570\u636e\u5e93\u540d\"\n)\n\n# \u521b\u5efa\u4e00\u4e2a\u6e38\u6807\u5bf9\u8c61\nmycursor = conn.cursor()\n\n# \u5b9a\u4e49\u67e5\u8be2\u5b57\u7b26\u4e32\nquery_str = \"SELECT yu, rt FROM tablename\"\n\ntry:\n    mycursor.execute(query_str)\n    results = mycursor.fetchall()\n    for row in results:\n        yu, rt = row\n        print(f\"yu: {yu}, rt: {rt}\")\nexcept Exception as e:\n    print(f\"An error occurred: {e}\")\nfinally:\n    # \u5173\u95ed\u6e38\u6807\u548c\u8fde\u63a5\n    mycursor.close()\n    conn.close()<\/pre>\n<p> \u767b\u5f55\u540e\u590d\u5236 <\/p>\n<p>\u4ee5\u4e0a\u5c31\u662fPython MySQL Connector \u62a5\u9519\uff1a\u5982\u4f55\u89e3\u51b3\u67e5\u8be2\u8bed\u6cd5\u9519\u8bef\uff1f\u7684\u8be6\u7ec6\u5185\u5bb9\uff0c\u66f4\u591a\u8bf7\u5173\u6ce8\u7c73\u4e91\u7f51\u5176\u5b83\u76f8\u5173\u6587\u7ae0\uff01<\/p>\n","protected":false},"excerpt":{"rendered":"<p>connector \u62a5\u9519: \u5982\u4f55\u89e3\u51b3\uff1f \u5728\u4f7f\u7528 \u7684 mysql connector \u65f6\uff0c\u60a8\u53ef\u80fd\u4f1a\u9047\u5230\u9519\u8bef\u3002\u5176\u4e2d\u4e00\u4e2a\u5e38\u89c1\u7684\u9519\u8bef\u662f &#8220; \u201d\u3002\u8fd9\u662f\u56e0\u4e3a\u5f53\u60a8\u5c1d\u8bd5\u6267\u884c\u4e00\u4e2a\u67e5\u8be2\u65f6\uff0c\u67e5\u8be2\u5b57\u7b26\u4e32\u4e2d\u5b58\u5728\u8bed\u6cd5\u9519\u8bef\u3002 \u4e3a\u4e86\u89e3\u51b3\u6b64\u9519\u8bef\uff0c\u8bf7\u68c0\u67e5\u60a8\u7684\u67e5\u8be2\u5b57\u7b26\u4e32\u662f\u5426\u5b58\u5728\u4ee5\u4e0b\u95ee\u9898\uff1a \u9057\u6f0f\u6216\u4e0d\u5339\u914d\u7684\u5f15\u53f7\u6216\u62ec\u53f7 \u5173\u952e\u5b57\u62fc\u5199\u9519\u8bef \u8868\u6216\u5217\u540d\u62fc\u5199\u9519\u8bef \u6b64\u5916\uff0c\u786e\u4fdd\u60a8\u7684 mysql connector \u5b89\u88c5\u5df2\u66f4\u65b0\uff0c\u5e76\u4e14\u60a8\u4f7f\u7528\u7684\u662f\u6700\u65b0\u7248\u672c\u3002 \u7acb\u5373\u5b66\u4e60\u201c\u201d\uff1b \u4ee5\u4e0b\u793a\u4f8b\u4ee3\u7801\u6f14\u793a\u4e86\u5982\u4f55\u6b63\u786e\u4f7f\u7528 mysql connector \u6267\u884c\u67e5\u8be2\uff1a import mysql.connector # \u8fde\u63a5\u5230\u6570\u636e\u5e93 conn = mysql.connector.connect( host=&#8221;\u4e3b\u673a\u540d\u6216IP\u5730\u5740&#8221;, user=&#8221;\u6570\u636e\u5e93\u7528\u6237\u540d&#8221;, password=&#8221;\u6570\u636e\u5e93\u5bc6\u7801&#8221;, database=&#8221;\u6570\u636e\u5e93\u540d&#8221; ) # \u521b\u5efa\u4e00\u4e2a\u6e38\u6807\u5bf9\u8c61 mycursor = conn.cursor() # \u5b9a\u4e49\u67e5\u8be2\u5b57\u7b26\u4e32 query_str = &#8220;SELECT yu, rt FROM tablename&#8221; try: mycursor.execute(query_str) results = mycursor.fetchall() for [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[16],"tags":[],"class_list":["post-7787","post","type-post","status-publish","format-standard","hentry","category-16"],"_links":{"self":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/7787","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/comments?post=7787"}],"version-history":[{"count":0,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/posts\/7787\/revisions"}],"wp:attachment":[{"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/media?parent=7787"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/categories?post=7787"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/fwq.ai\/blog\/wp-json\/wp\/v2\/tags?post=7787"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}