python implement mysql add delete check change サンプルコード
2022-01-02 06:14:55
phpstduyのローカルインストールと設定
このデータベース管理ツールをインストールし、手動でデータベース、テーブル、フィールド、そしてもちろんコードを作成します。
<スパン 1. 追加
$ (node:10816) Warning: Accessing non-existent property 'lineno' of module exports inside circular dependency
bash: syntax error near unexpected token `Warning:'
(node:10816) Warning: Accessing non-existent property 'column' of module exports inside circular dependency
(node:10816) Warning: Accessing non-existent property 'filename' of module exports inside circular dependency
(node:10816) Warning: Accessing non-existent property 'lineno' of module exports inside circular dependency
(node:10816) Warning: Accessing non-existent property 'column' of module exports inside circular dependency
(node:10816) Warning: Accessing non-existent property 'filename' of module exports inside circular dependency
(node:10816) Warning: Accessing non-existent property 'lineno' of module exports inside circular dependency
2. 削除
node --trace-warnings queue.js
3. チェック
が削除されたため、まずデータを2つ追加します。
(node:11572) Warning: Accessing non-existent property 'lineno' of module exports inside circular dependency
at emitCircularRequireWarning (internal/modules/cjs/loader.js:814:11)
at Object.get (internal/modules/cjs/loader.js:825:5)
at Boolean.Node [as constructor] (\node_modules\stylus\lib\nodes\node.js:44:23)
at new Boolean (\node_modules\stylus\lib\nodes\boolean.js:23:8)
at Object.<anonymous> (\node_modules\stylus\lib\nodes\index.js:57:16)
at Module._compile (internal/modules/cjs/loader.js:1185:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1205:10)
at Module.load (internal/modules/cjs/loader.js:1034:32)
at Function.Module._load (internal/modules/cjs/loader.js:923:14)
at Module.require (internal/modules/cjs/loader.js:1074:19)
(node:11572) Warning: Accessing non-existent property 'column' of module exports inside circular dependency
at emitCircularRequireWarning (internal/modules/cjs/loader.js:814:11)
at Object.get (internal/modules/cjs/loader.js:825:5)
at Boolean.Node [as constructor] (\node_modules\stylus\lib\nodes\node.js:45:23)
at new Boolean (\node_modules\stylus\lib\nodes\boolean.js:23:8)
at Object.<anonymous> (\node_modules\stylus\lib\nodes\index.js:57:16)
at Module._compile (internal/modules/cjs/loader.js:1185:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:1205:10)
at Module.load (internal/modules/cjs/loader.js:1034:32)
at Function.Module._load (internal/modules/cjs/loader.js:923:14)
at Module.require (internal/modules/cjs/loader.js:1074:19)
3. チェック
exports.lineno = null;
exports.column = null;
exports.filename = null;
4. 変更
'''
host hostname Here is your ip address
user database account
password database password
port port mysql database port
db database name
Basic statements
cursor = conn.cursor()# initialize a cursor object
sql = "database operation statement"
cursor.execute(sql)#execute the statement
conn.commit()#close the cursor object
cursor.close()#close the database
rollback Rollback
'''
import pymysql
db = pymysql.connect(host='localhost',user='root',password='123456',port=3306,db='text')
sql = "update text set name='Xiaolin' where id=1"
# Get subscript
cursor = db.cursor()
try:
cursor.execute(sql)
db.commit()
print(f'Modified successfully')
except:
db.rollback()
db.close()
<スパン 概要
挿入
INSERT INTO テーブル名 (列名 a、列名 b、列名 c) VALUES (値 1、値 2、値 3)。
削除
テーブル名から削除 where 条件式
ルックアップ
テーブル名から列を選択
変更
更新テーブル名 変更する値を設定する 条件式
上記は、mysqlの追加、削除、チェック、変更サンプルコードの詳細のpythonの実装であり、パイソンmysqlの追加、削除、チェック、変更については、スクリプト家の他の関連記事に注意を払うしてください
関連
-
[解決済み】TypeError: 'type'オブジェクトは、辞書にインデックスを付けるときに添え字になりません。
-
[解決済み】torch.stack関数の使用方法
-
[解決済み】re.subが "Expected string or bytes-like object "でエラーになる。
-
[解決済み] __init__.py でも「非パッケージで相対的なインポートを試みた」を修正する方法
-
[解決済み] sys.excepthook is missing" エラーの対処方法について教えてください。
-
[解決済み] django.db.utils.IntegrityError: NOT NULL 制約は失敗しました: products_product.image ERROR WITH IMAGE FIELD
-
[解決済み] UnicodeDecodeError: 'ascii' コーデックは、位置 13 のバイト 0xe2 をデコードできません: 序数が range(128) にありません。
-
[解決済み] Pythonにおけるミューテックスの適切な使用法
-
[解決済み] ソースディレクトリとビルドディレクトリを分離する」とはどういう意味ですか?
-
[解決済み] フロート値が整数であるかどうかを確認する方法
最新
-
nginxです。[emerg] 0.0.0.0:80 への bind() に失敗しました (98: アドレスは既に使用中です)
-
htmlページでギリシャ文字を使うには
-
ピュアhtml+cssでの要素読み込み効果
-
純粋なhtml + cssで五輪を実現するサンプルコード
-
ナビゲーションバー・ドロップダウンメニューのHTML+CSSサンプルコード
-
タイピング効果を実現するピュアhtml+css
-
htmlの選択ボックスのプレースホルダー作成に関する質問
-
html css3 伸縮しない 画像表示効果
-
トップナビゲーションバーメニュー作成用HTML+CSS
-
html+css 実装 サイバーパンク風ボタン
おすすめ
-
[解決済み] urllib2 HTTP エラー 400: 不正なリクエスト
-
[解決済み】python flask インポートエラー
-
[解決済み] python辞書エラー AttributeError: 'list' オブジェクトには 'keys' という属性がありません。
-
[解決済み] return list.sort()」は、なぜリストではなくNoneを返すのですか?
-
[解決済み] Pythonで同じ長さの複数のリストをインターリーブする
-
[解決済み] 非推奨のtsplotの置き換え
-
[解決済み] 既存のデータフレームに計算されたカラムを添付する
-
[解決済み] Matplotlib の pyplot 軸フォーマッタ
-
[解決済み] Scrapyで次のページをクロールする
-
[解決済み] OperationalError, no such column. ジャンゴ