Download presentation
Presentation is loading. Please wait.
Published byPaula Palmer Modified over 9 years ago
1
Working with Databases
2
There are many different databases that one can use e.g. MS Access, Microsoft Sequel Server, MySQL. For our purposes, we will use a lightweight database called SQLite3. We can import the SQLite3 library as follows… import sqlite3 We can now use the database.
3
Next, we use the inbuilt function connect() to open a connection between our python program and the SQLite database. Import the SQLite3 library as follows… import sqlite3 MyDB =sqlite3.connect (‘NinjaTurtle.db’) Note!! We have used a RELATIVE file path here. This means the SQLite DB will be located in the same folder as your Python Program Note!! Name your database here…call it whatever you want!!!
4
MyDB =sqlite3.connect (‘N:\\Computing\\NinjaTurtle.db’) Note!! Make sure you have no spaces in your file path! Note!! Name your database here…call it whatever you want!!! If you want to go for ABSOLUTE file path…then here is an example
5
1.Sqlite library imported – ok 2.Connection to database – ok 3. Next, we need to create a cursor object (this will allow us to work with and manipulate our database) import sqlite3 MyDB = sqlite3.connect (‘N:\\ MyDocuments...etc’) c =MyDB.cursor() Now we can create our first table of data!
6
We use DDL (Data Definition Language) to create a table in SQlite. import sqlite3 MyDB = sqlite3.connect (‘N:\\ MyDocuments...etc’) c =MyDB.cursor() #create a table of students c.execute ('''CREATE TABLE Student (StudentID text, Firstname text, Surname text, DOB date, FormGroup text) ''')
7
The standard DDL for creating a table in SQLite is: #create a table example c.execute ('''CREATE TABLE NameOfTable (Field Data type, Field Data type, Field Data type) ''')
8
Now, to insert data into our new table called Student #insert data into our table c.execute (''‘INSERT INTO Student VALUES (‘001’,’Mary’,’Berry’,’1/1/1994’,’11W’) ‘’’) Make sure you are inserting data in the right order and with an appropriate data type.
9
Now you need to save changes using the COMMIT() function and close using the close() function #insert data into our table c.execute (''‘INSERT INTO Student VALUES (‘001’,’Mary’,’Berry’,’1/1/1994’,’11W’) ’’’) #Save changes using the commit() function MyDB.commit() #Close the database connection MyDB.close()
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.