Python: Create a SQLite table within the database
3. SQLite Table Creation
Write a Python program to connect a database and create a SQLite table within the database.
Structure of agent_master table:
agent_code char(6), agent_name char(40), working_area char(35), commission decimal(10,2), phone_no char(15) NULL);
Sample Solution:
Python Code :
Sample Output:
agent_master file has created. The SQLite connection is closed.
Alternate solution:
Python Code :
Sample Output:
agent_master file has created. The SQLite connection is closed.
For more Practice: Solve these Related Problems:
- Write a Python program to connect to a SQLite database, create a table with at least 5 columns of various data types, and then print a success message.
- Write a Python function that creates a SQLite table with constraints (such as UNIQUE and NOT NULL) and returns the table schema.
- Write a Python script to create multiple tables within a SQLite database and then print the list of created tables.
- Write a Python program to create a SQLite table with a composite primary key and verify its creation by querying the sqlite_master table.
Go to:
Previous: Write a Python program to create a SQLite database connection to a database that resides in the memory.
Next: Write a Python program to list the tables of given SQLite database file.
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.