Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

using sqlite3 in python with "WITH" keyword

Tags:

I was doing a tutorial and came across a way to handle connections with sqlite3, Then I studied about the WITH keyword and found out that it is an alternative to try,except,finally way of doing things

It was said that in case of file-handling, 'WITH' automatically handles closing of files and I thought similar with the connection as said in zetcode tutorial:-

"With the with keyword, the Python interpreter automatically releases the resources. It also provides error handling." http://zetcode.com/db/sqlitepythontutorial/

so I thought it would be good to use this way of handling things, but I couldn't figure out why both (inner scope and outer scope) statements work? shouldn't the WITH release the connection?

import sqlite3  con = sqlite3.connect('test.db')  with con:         cur = con.cursor()          cur.execute('SELECT 1,SQLITE_VERSION()')     data = cur.fetchone()        print data          cur.execute('SELECT 2,SQLITE_VERSION()') data = cur.fetchone() print data 

which outputs

(1, u'3.6.21') (2, u'3.6.21') 

I don't know what exactly the WITH is doing here(or does in general), so, if you will please elaborate on the use of WITH over TRY CATCH in this context.

And should the connections be opened and closed on each query? (I am formulating queries inside a function which I call each time with an argument) Would it be a good practice?

like image 455
Aavaas Avatar asked Oct 22 '13 15:10

Aavaas


People also ask

Where do we use sqlite3 in Python?

WHERE Clause in SQLite using Python: In Python SQLite Cursor object/class which contains all the methods to execute SQL queries to perform operations, etc. The Cursor is the method of connection class that returns a cursor object. Establish a connection with the database using the connect() method.

Can you use Python with SQLite?

SQLite is a self-contained, file-based SQL database. SQLite comes bundled with Python and can be used in any of your Python applications without having to install any additional software.

How fetch data from sqlite3 in Python?

SQLite Python: Querying Data First, establish a connection to the SQLite database by creating a Connection object. Next, create a Cursor object using the cursor method of the Connection object. Then, execute a SELECT statement. After that, call the fetchall() method of the cursor object to fetch the data.


2 Answers

In general, a context manager is free to do whatever its author wants it to do when used. Set/reset a certain system state, cleaning up resources after use, acquiring/releasing a lock, etc.

In particular, as Jon already writes, a database connection object creates a transaction when used as a context manager. If you want to auto-close the connection, you can do

with contextlib.closing(sqlite3.connect('test.db')) as con:     with con as cur:         cur.execute('SELECT 1,SQLITE_VERSION()')         data = cur.fetchone()            print data              with con as cur:         cur.execute('SELECT 2,SQLITE_VERSION()')         data = cur.fetchone()         print data 
like image 176
glglgl Avatar answered Oct 26 '22 22:10

glglgl


From the docs: http://docs.python.org/2/library/sqlite3.html#using-the-connection-as-a-context-manager

Connection objects can be used as context managers that automatically commit or rollback transactions. In the event of an exception, the transaction is rolled back; otherwise, the transaction is committed:

So, the context manager doesn't release the connection, instead, it ensures that any transactions occurring on the connection are rolled back if any exception occurs, or committed otherwise... Useful for DELETE, UPDATE and INSERT queries for instance.

like image 35
Jon Clements Avatar answered Oct 27 '22 00:10

Jon Clements