From 36c0b525ea58867b1b4314e02f7b5d117e5ee663 Mon Sep 17 00:00:00 2001 From: Unknown <157136443@qq.com> Date: Wed, 11 Apr 2018 14:19:50 +0800 Subject: [PATCH 1/2] MySQL_Python_Update --- .vscode/launch.json | 117 +++++++++++++++++++++++++++++++++++++++++ .vscode/settings.json | 3 ++ MySQL_Python_Update.py | 10 ++++ 3 files changed, 130 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json create mode 100644 MySQL_Python_Update.py diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..9922f9e --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,117 @@ +{ + // 使用 IntelliSense 了解相关属性。 + // 悬停以查看现有属性的描述。 + // 欲了解更多信息,请访问: https://go.microsoft.com/fwlink/?linkid=830387 + "version": "0.2.0", + "configurations": [ + + { + "name": "Python: Current File", + "type": "python", + "request": "launch", + "program": "${file}" + }, + { + "name": "Python: Attach", + "type": "python", + "request": "attach", + "localRoot": "${workspaceFolder}", + "remoteRoot": "${workspaceFolder}", + "port": 3000, + "secret": "my_secret", + "host": "localhost" + }, + { + "name": "Python: Terminal (integrated)", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "integratedTerminal" + }, + { + "name": "Python: Terminal (external)", + "type": "python", + "request": "launch", + "program": "${file}", + "console": "externalTerminal" + }, + { + "name": "Python: Django", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/manage.py", + "args": [ + "runserver", + "--noreload", + "--nothreading" + ], + "debugOptions": [ + "RedirectOutput", + "Django" + ] + }, + { + "name": "Python: Flask (0.11.x or later)", + "type": "python", + "request": "launch", + "module": "flask", + "env": { + "FLASK_APP": "${workspaceFolder}/app.py" + }, + "args": [ + "run", + "--no-debugger", + "--no-reload" + ] + }, + { + "name": "Python: Module", + "type": "python", + "request": "launch", + "module": "module.name" + }, + { + "name": "Python: Pyramid", + "type": "python", + "request": "launch", + "args": [ + "${workspaceFolder}/development.ini" + ], + "debugOptions": [ + "RedirectOutput", + "Pyramid" + ] + }, + { + "name": "Python: Watson", + "type": "python", + "request": "launch", + "program": "${workspaceFolder}/console.py", + "args": [ + "dev", + "runserver", + "--noreload=True" + ] + }, + { + "name": "Python: All debug Options", + "type": "python", + "request": "launch", + "pythonPath": "${config:python.pythonPath}", + "program": "${file}", + "module": "module.name", + "env": { + "VAR1": "1", + "VAR2": "2" + }, + "envFile": "${workspaceFolder}/.env", + "args": [ + "arg1", + "arg2" + ], + "debugOptions": [ + "RedirectOutput" + ] + } + ] +} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..615aafb --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "python.pythonPath": "/usr/bin/python3" +} \ No newline at end of file diff --git a/MySQL_Python_Update.py b/MySQL_Python_Update.py new file mode 100644 index 0000000..2f17f2f --- /dev/null +++ b/MySQL_Python_Update.py @@ -0,0 +1,10 @@ +#coding=utf-8 +from pymysql import * +conn = connect(host = 'localhost', port = 3306, user = 'root', passwd = 'zs007578', db = 'python3', charset = 'utf8') +cursor1 = conn.cursor() +sql = 'update students set name = "王小二" where id = 10' +cursor1.execute(sql) +conn.commit() +cursor1.close() +conn.close() +print('Done!') \ No newline at end of file From 01e1892f41d80750e4b0f5d7c78033751566c3d3 Mon Sep 17 00:00:00 2001 From: Unknown <157136443@qq.com> Date: Wed, 11 Apr 2018 14:21:43 +0800 Subject: [PATCH 2/2] MySQL_Python_Delete --- MySQL_Python_Delete.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 MySQL_Python_Delete.py diff --git a/MySQL_Python_Delete.py b/MySQL_Python_Delete.py new file mode 100644 index 0000000..5bbfcb6 --- /dev/null +++ b/MySQL_Python_Delete.py @@ -0,0 +1,10 @@ +#coding=utf-8 +from pymysql import * +conn = connect(host = 'localhost', port = 3306, user = 'root', passwd = 'zs007578', db = 'python3', charset = 'utf8') +cursor1 = conn.cursor() +sql = 'delete from students where id = 8' +cursor1.execute(sql) +conn.commit() +cursor1.close() +conn.close() +print('Done!') \ No newline at end of file