Click here to Skip to main content
15,881,803 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
I have created one .db file of sqlite database in java, for that sqlite-jdbc3.8.7.jar file used.

Now I want to read this this file in linux using the sqlite-jdbc3.8.7.4 in python.

so how to read this...
Posted
Comments
Sergey Alexandrovich Kryukov 2-Jan-15 2:12am    
Why JDBC? :-)
—SA

1 solution

Let me remind you that "JDBC" means: "Java Database Connectivity". Java. So, it has nothing to do with Python. Please see: http://en.wikipedia.org/wiki/Java_Database_Connectivity[^].

Natively, SQLite is a C library. And this library is directly used for Python binding, by the use of the module "sqlite3". Please see:
https://docs.python.org/2/library/sqlite3.html[^],
http://zetcode.com/db/sqlitepythontutorial[^],
http://www.pythoncentral.io/introduction-to-sqlite-in-python[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900