|
SqmediumlitePython - SQLite network connection version 2.1.5, Edzard Pasma, 5th September 2013 |
Contents |
|
SQLite by itself is a serverless database engine which means that application programmes directly read and write the database files. Access to databases on a network file system is possible however at a not-great performance and at non-attractive quality of concurrent use.
The network connection provided through Sqmediumlite connects to databases on the network at full speed and quality, at the cost of running a permanent process on the file server side. In terms of SQLite the configuration is no longer serverless. Hence the name "mediumlite". It is not so light as SQLite but still much lighter then a true RDBMS.
There is no copyright except on parts that are copied from APSW "Another Python SQLite Wrapper". This is clearly indicated in the source.
Mailing list: Python-SQLite discussion group
tools | description | lines | modified |
---|---|---|---|
__init__.py | network connection | 312 | Tue Aug 14 2012 |
__main__.py | interactive shell | 166 | Sun Aug 12 2012 |
apswdbapi2.py | standard interface based on APSW | 286 | Thu Sep 05 2013 |
apswtrace.py | enhanced APSW SQL tracer | 628 | Sat Sep 07 2013 |
rowfactory.py | exposes columns as row attributes | 52 | Sat Sep 07 2013 |
internal |
|||
_backend.py | back-end of network connection | 216 | Sun Aug 12 2012 |
_common.py | socket connection | 123 | Sat Sep 07 2013 |
_conf.py | configurable settings | 29 | Fri Dec 09 2011 |
_service.py | Windows service handler | 76 | Thu Dec 08 2011 |
_shellbase.py | APSW interactive shell | 2988 | Sat Sep 07 2013 |
_test.py | test suite | 2131 | Thu Sep 05 2013 |
To install from source, start a command or shell prompt and change directory to the unzipped source archive. Here enter:
python setup.py install
APSW "another Python SQLite wrapper" may be used by the back-end of the network connection. This occurs automatically if APSW happens to be installed. By default the back-end relies on the standard Python sqlite3 module (Pysqlite).
On Windows, the back-end side of the network connection requires pywin32 "Python for Windows extensions", downloadable from:
sourceforge.net/projects/pywin32/files/pywin32.
Most convenient is the binary (.exe) version, which includes the required Windows SDK elements.
python setup.py testOr as a method in the package:
import sqmedium
sqmedium.test ()
The location in the network of the back-end (the file server) must be specified one way or another. By default this is taken to be the local host. One way to change this is to specifiy it as part of the database name:
import sqmedium as sqlite con = sqlite.connect ("//h1972688.stratoserver.net/test.db")Another way is in a sqmediumconf.py file (last chapter)
The shell is started with the -m option of the Python interpretor (as opposed to APSW issue 100). The FILENAME argument can now include a network location:
python -m sqmedium //h1972688.stratoserver.net/test.db
Microsoft Windows XP [versie 5.1.2600] (C) Copyright 1985-2001 Microsoft Corp. C:\Documents and Settings\EdzPas>mkdir dbfiles C:\Documents and Settings\EdzPas>cd dbfiles C:\Documents and Settings\EdzPas\dbfiles>python -m sqmedium SQLite version not available (APSW version not available, sqmediumlite 2.1.5) Enter ".help" for instructions Enter SQL statements terminated with a ";" sqlite> .service --startup auto install Installing service Sqmedium%20C%3A%5CDocuments%20and%20Settings%5CEdzPas%5Cdbfiles Service installed sqlite> .service start Starting service Sqmedium%20C%3A%5CDocuments%20and%20Settings%5CEdzPas%5Cdbfiles sqlite> .quit
su -l dbowner -c "(cd /home/dbowner/dbfiles; python -m sqmedium '' .$1)"'dbowner' is a non-root user and '/home/dbowner/dbfiles' is the working directory of the process.
The command is saved in /etc/init.d as sqmedium1.sh (or any name) and must become executable:
chmod +x /etc/init.d/sqmedium1.sh
The script must still be linked to the various run levels. In Ubuntu linux this is one command:
update-rc.d sqmedium1.sh defaultsOther unix-like systems may have other commands or may expect to manually create the symbolic links in /etc/rc[0-6].d.
host = "h1972688.stratoserver.net" # file server name or IP addressThis setting is overruled if host is given as part of the database name.
21 Dec 2011 | 2.1.1 |
apswdbapi2:
br>
- Pysqlite aggregate compatibility
- APSW to DB-API2 error mapping at more places
network interface:
|
5 May 2012 | 2.1.3 | use Pythons -m option to start shell |
12th August 2012 | 2.1.4 | apswtrace.py is not covered in the test suite but running the test suite through apswtrace.py appears a useful test. Several situations where it crashed are now dealt with. |
5th September 2013 | 2.1.5 | Incomplete version |
7th September 2013 | 2.1.6 |
- apswtrace now deals with sql statements pragma and vacuum.
- apswtrace option 'exeonly' can be used to measure the time of the first SQLite step only. This may sometimes be more realistic than the complete time including fetch, as that also includes idle time between fetching multiple rows. - apswdbapi2.py simply maps all APSW/SQLite exceptions to DBAPI ProgrammingError. - can use hasattr () on rowfactory instances. |