Skip to main content

A wrapper class for basic setup and management of an SQLite database.

Project description

This package can be found at https://github.com/aescwork/sqlitemgr.

In the github repository there is sphinx-generated documentation: the main page is docs/index.html.

sqlitemgr – the SQLite Manager module – is a wrapper class for basic management of an sqlite database and its tables. It can be used to create and delete database files, tables, create and return a connection to a database file as well as a cursor which is used for executing statements against an sqlite database.

It has two main purposes: 1. to encapsulate all of the basic database management actions in one class, and 2. to create tables with the option of not having to directly enter the structured query language necessary. Specific methods for composing and executing sql statements can be chained together for creating tables (including specifying column names, data types and constraints) in an sqlite database.

There are also a few utility methods for managing data in and getting information about the tables. These can get the number of tables in a database, get the number of rows in a table, or re-index a column which is used for storing numbers.

This module was written as a companion to the sqliteminor module, whose functionality focuses on creating, reading, updating and deleting data in sqlite database columns.

NOTE:

This module requires sqlite3 to be installed prior to use.

After installation of this package is complete, trying to use the module might result in the following error: “ImportError: No module named sqlitemgr” or some other error message.

This probably indicates that the Python interpreter may not be able to locate the module. In this case, the following is recommended:

On Linux:

Locate where the package was installed. In the terminal, navigate to the root directory and execute the following command:

sudo find . -name sqlitemgr.py

This should give a path to the sqlitemgr.py file. Create a file called “local_python.sh” and put the following text in it:

PYTHONPATH=”/usr/local/lib/python*.*/dist-packages/sqlitemgr/”:”${PYTHONPATH}” export PYTHONPATH

To make the module available to all users, place this file in /etc/profile.d. Then place a line to execute this file somewhere in .bashrc or one of the other bash configuration files in the individual (non-root) user’s terminal:

. /etc/profile.d/local_python.sh

This should cause the python interpreter to locate the sqlitemgr.py file in the module.

On MS Windows:

The following was tested on a machine running Windows 10.

(This assumes that Python is installed on the machine.)

Locate where the package was installed. On Windows 10, Look for the Python folder. Its usually right under the C: drive. The name of the folder probably has the version number in it as well, like “Python27”. Look for the sqlitemgr folder: it should be in “Lib" and then “site-packages" folder.

Open up the System Properties Panel. (You can find this by clicking on the “Settings” icon and entering “Environment Variables” in the search bar. When the panel comes up, Click the “Environment Variables” button. Under “System variables”, click “New” and type in the full path to the sqlitemgr folder.

Test this by opening the command line application and starting the Python interpreter (type the command “python” and press enter). Now try to import the module and instantiate an sqlitemgr object. Type the following:

>>> import sqlitemgr
>>> sg = sqlitemgr.SQLiteMinor()
>>> sg.result

If everything went well, ‘None’ should print out on the screen. If there was an “ImportError” or any other error, try importing the module again and test as follows:

>>> import sqlitemgr.sqlitemgr as sqlitemgr
>>> sg = sqlitemgr.SQLiteMgr()
>>> sg.result

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

sqlitemgr-1.2.6.tar.gz (8.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

sqlitemgr-1.2.6-py2.py3-none-any.whl (10.2 kB view details)

Uploaded Python 2Python 3

File details

Details for the file sqlitemgr-1.2.6.tar.gz.

File metadata

  • Download URL: sqlitemgr-1.2.6.tar.gz
  • Upload date:
  • Size: 8.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for sqlitemgr-1.2.6.tar.gz
Algorithm Hash digest
SHA256 7da17a836bdd7c17d96fb53d52df1b2075ca7749ec1fb36796e908007b5398d7
MD5 dd14403be65a259fd82d7ef0d406654d
BLAKE2b-256 bb1d9e454e1ac3d4e7b6ed7f513189f417bd6acf66a2c73fd0a34306dfde1fd3

See more details on using hashes here.

File details

Details for the file sqlitemgr-1.2.6-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for sqlitemgr-1.2.6-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0352a38a50932c779f0c32760c05b54c0f4180feb7ac8bb519fa1af4044e76be
MD5 cadc07562c6a66dd572e7a9c74bdd66a
BLAKE2b-256 d4bdb0b5cf276602312c8db30178f4621effa2973cc4be1aa11d363601f63478

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page