install sqlite python code example

Example 1: is sqlite installed as part of python3

import sqlite3
conn = sqlite3.connect('example.db')
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()

Example 2: install sqlite3 python

pip install pysqlite3

Example 3: how to install sqlite3 in python

pip install sqlite

Example 4: how to install sqlite3 in python

if you are using python3, sqlite3 is built in into it.

Example 5: how to install sqlite3 in python

#!/usr/bin/python

import sqlite3

conn = sqlite3.connect('test.db')

print "Opened database successfully";

Tags:

Sql Example