I am trying to work with DBs and I find Python very convenient to do so, but I 
could only open databases that are not encrypted/compressed. My company has 
CEROD and some of the DBs were made using the CEROD extension.
Is there any way I can connect to such DBs and work with them using Python?

This is how I connect and read/manipulate regular DBs:

"
import sqlite3

conn = sqlite3.connect('example.db')

cursor = conn.cursor()

cursor.execute('...')
...
"

Thanks.
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to