hendr1k1
Ensign
- Registriert
- Aug. 2009
- Beiträge
- 182
Ich verbinde mich zur Sqlite3 DB. Dabei wird mir schon angezeigt, dass sie irgendwo im Speicher liegt.
Fuehre ich einen Query aus, so bekomme ich als Antwort:
Code
Ausgabe:
Fuehre ich einen Query aus, so bekomme ich als Antwort:
PHP:
<sqlite3.Cursor object at 0x8bc4290>
Code
PHP:
import sqlite3
conn = sqlite3.connect('./foo.db')
cursor = conn.cursor()
cursor.execute('create table bar(id int, name text)')
conn.commit()
cursor.execute("insert into bar values('1', 'test')")
conn.commit()
e = cursor.execute('select * from bar')
print e
PHP:
<sqlite3.Cursor object at 0xb77ad920>