File: control

package info (click to toggle)
sqlobject 1.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,880 kB
  • ctags: 3,020
  • sloc: python: 15,679; sh: 28; makefile: 12
file content (43 lines) | stat: -rw-r--r-- 1,780 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
Source: sqlobject
Section: python
Priority: optional
Build-Depends: debhelper (>= 8.1),
               dh-python,
               python-all (>= 2.7.3-4),
               python-docutils,
               python-formencode,
               python-pytest
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Neil Muller <drnlmuller+debian@gmail.com>
Standards-Version: 3.9.5
X-Python-Version: >= 2.5
Vcs-Svn: svn://anonscm.debian.org/python-modules/packages/sqlobject/trunk/
Vcs-Browser: http://anonscm.debian.org/viewvc/python-modules/packages/sqlobject/trunk/
Homepage: http://www.sqlobject.org

Package: python-sqlobject
Architecture: all
Depends: python-formencode,
         python-pkg-resources (>=0.6c8),
         ${misc:Depends},
         ${python:Depends}
Suggests: python-kinterbasdb,
          python-maxdb,
          python-mysqldb,
          python-psycopg2,
          python-sqlite
Description: object relational manager providing an object interface to your database
 SQLObject is an object-relational mapper. It allows you to translate RDBMS
 table rows into Python objects, and manipulate those objects to transparently
 manipulate the database.
 .
 In using SQLObject, you will create a class definition that will describe how
 the object connects to the database (in addition to any other methods you may
 wish to add to the class). SQLObject will produce the code to access the
 database, and update the database with your changes. The interface to the
 database is meant to be indistinguishable from other interfaces you may add
 to the object.
 .
 SQLObject also includes a novel feature to generate WHERE clauses using
 Python syntax and objects (instead of generating SQL using string
 substitution, as is traditional).