Python Language
Sqlite3モジュール
サーチ…
Sqlite3 - 別のサーバープロセスを必要としません。
sqlite3モジュールは、GerhardHäringによって書かれました。モジュールを使用するには、最初にデータベースを表すConnectionオブジェクトを作成する必要があります。ここでデータはexample.dbファイルに格納されます:
import sqlite3
conn = sqlite3.connect('example.db')
特殊名:memory:を指定すると、RAMにデータベースを作成できます。 Connectionを取得したら、Cursorオブジェクトを作成し、そのexecute()メソッドを呼び出してSQLコマンドを実行できます。
c = conn.cursor()
# Create table
c.execute('''CREATE TABLE stocks
(date text, trans text, symbol text, qty real, price real)''')
# Insert a row of data
c.execute("INSERT INTO stocks VALUES ('2006-01-05','BUY','RHAT',100,35.14)")
# Save (commit) the changes
conn.commit()
# We can also close the connection if we are done with it.
# Just be sure any changes have been committed or they will be lost.
conn.close()
データベースからの値の取得とエラー処理
SQLite3データベースから値を取得します。
選択クエリによって返された行の値を出力する
import sqlite3
conn = sqlite3.connect('example.db')
c = conn.cursor()
c.execute("SELECT * from table_name where id=cust_id")
for row in c:
print row # will be a list
単一の一致するfetchone()メソッドをフェッチするには
print c.fetchone()
複数行の場合、fetchall()メソッドを使用します。
a=c.fetchall() #which is similar to list(cursor) method used previously
for row in a:
print row
エラー処理は、関数sqlite3.Errorを使用して行うことができます
try:
#SQL Code
except sqlite3.Error as e:
print "An error occurred:", e.args[0]
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow