Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

python sqlite insert

import sqlite3

conn = sqlite3.connect('mysqlite.db')
c = conn.cursor()

#records or rows in a list
records = [(1, 'Glen', 8),
			(2, 'Elliot', 9),
			(3, 'Bob', 7)]

#insert multiple records in a single query
c.executemany('INSERT INTO students VALUES(?,?,?);',records);

print('We have inserted', c.rowcount, 'records to the table.')

#commit the changes to db			
conn.commit()
#close the connection
conn.close()
Comment

creating a sqlite3 table in python and inserting data in it

import sqlite3
# it will create a databse with name sqlite.db
connection= sqlite3.connect('sqlite.db') 
cursor= connection.cursor()
table_query = '''CREATE TABLE  if not Exists Student
               (Name text, Course text, Age real)'''
       
cursor.execute(table_query)   

# student list 

students_data = [
 ['AlixaProDev','CS',19],
 ['Alixawebdev','BBa',21],
  ['AskALixa','Software',22]
]
insert_q = []


# creating the insert query for each student
for std_data in students_data:
    name = std_data[0]
    course = std_data[1]
    age = std_data[2]
    q=f"INSERT INTO Student VALUES ('{name}','{course}','{age}')"
    insert_q.append(q)

# executing the insert queries
for q in insert_q:
    cursor.execute(q)


# you need to commit changes as well
connection.commit()
# you also need to close  the connection
connection.close()
Comment

insert data in sqlite database in python

import sqlite3
# it will create a databse with name sqlite.db
connection= sqlite3.connect('sqlite.db') 
cursor= connection.cursor()
table_query = '''CREATE TABLE Student
               (Name text, Course text, Age real)'''
               
cursor.execute(table_query)
# you need to commit changes as well
connection.commit()
# you also need to close  the connection
connection.close()   
Comment

PREVIOUS NEXT
Code Example
Python :: how to convert python input to int 
Python :: pandas groupby counts 
Python :: python dictionary append 
Python :: python keyboard key codes 
Python :: how to find the speed of a python program 
Python :: read csv file with pandas 
Python :: jupyter notebook plot background dark theme 
Python :: remove zeros from decimal python 
Python :: convert timedelta to days 
Python :: pandas apply lambda function with assign 
Python :: 3d array into 2d array python 
Python :: python detect warning 
Python :: print hexadecimal in python 
Python :: django textfield 
Python :: variable string in string python 
Python :: right-left staircase python 
Python :: how to extract domain name from url python 
Python :: python simple web app 
Python :: django serializer 
Python :: huggingface dataset from pandas 
Python :: import picturein colab 
Python :: how to print a variable in python 
Python :: pandas head sort by colun name 
Python :: raise a custom exception python 
Python :: update ubuntu to python 3.85 
Python :: how to reindex columns in pandas 
Python :: c++ call python function 
Python :: dict get list of values 
Python :: python memory usage 
Python :: how to print a string in python 
ADD CONTENT
Topic
Content
Source link
Name
3+5 =