Jorge Vargas wrote:
> [...]
> What I'm confuse about right now is how pysqlite finds the db?
I don't understand. "db"? The database file is specified in the
connection URI.
> does it has an embeded client?
SQLite is an embedded database implemented as a C library. pysqlite
links to the SQLite C library.
> how can i tell which version of sqlite is pysqlite using?
>>> import sqlobject
>>> con = sqlobject.connectionForURI("sqlite:///:memory:")
>>> con.module.sqlite_version
'3.3.3' <--------- SQLite version
>>> con.module.version
'2.1.3' <--------- pysqlite version
>>>
HTH,
-- Gerhard
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"TurboGears" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/turbogears
-~----------~----~----~----~------~----~------~--~---