sqliteHow do I insert data into a SQLite database using Python?
Inserting data into a SQLite Database using Python is a simple process. The following example code will insert a record into the 'users' table of a SQLite database:
import sqlite3
conn = sqlite3.connect('example.db')
c = conn.cursor()
c.execute("INSERT INTO users VALUES ('John', 'Doe', '[email protected]')")
conn.commit()
conn.close()
The code above does the following:
- Imports the sqlite3 module.
- Connects to the 'example.db' database.
- Creates a cursor object.
- Executes an SQL statement to insert a record into the 'users' table.
- Commits the changes to the database.
- Closes the connection to the database.
Helpful links
More of Sqlite
- How do I use SQLite keywords to query a database?
- How do I use the SQLite zfill function?
- How do I generate a row number for each record in a SQLite database?
- How can I use SQLite with Zabbix?
- How do I use SQLite to zip a file?
- How do I use the SQLite sequence feature?
- How to configure SQLite with XAMPP on Windows?
- How do I store a timestamp in an SQLite database?
- How can I use SQLite with Xamarin?
- How can I use SQLite with WPF?
See more codes...