Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 710 Bytes

README.md

File metadata and controls

32 lines (24 loc) · 710 Bytes

This is a simple Python script that contains functions for CRUD operations on SQLite.


To run this, open your terminal or command prompt and go to the directory where your cloned repository is located:

$ cd go/to/path

Execute the Python script:

$ python _python-sqlite.py

This should create an SQLite database named db.db with an Employee table that contains the following columns and rows:

ID Fname Lname
1 ALYSSON ALVARAN

Check out SQLite Tutorial for more info.