README
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:36k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. PyGreSQL - v2.4: PostgreSQL module for Python
  2. ==============================================
  3. 0. Copyright notice
  4. ===================
  5.   PyGreSQL, version 2.4
  6.   A Python interface for PostgreSQL database.
  7.   Written by D'Arcy J.M. Cain, darcy@druid.net<BR>
  8.   Based heavily on code written by Pascal Andre, andre@chimay.via.ecp.fr.
  9.   Copyright (c) 1995, Pascal ANDRE (andre@via.ecp.fr)
  10.   Permission to use, copy, modify, and distribute this software and its
  11.   documentation for any purpose, without fee, and without a written agreement
  12.   is hereby granted, provided that the above copyright notice and this
  13.   paragraph and the following two paragraphs appear in all copies or in any 
  14.   new file that contains a substantial portion of this file.
  15.   IN NO EVENT SHALL THE AUTHOR BE LIABLE TO ANY PARTY FOR DIRECT, INDIRECT, 
  16.   SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, INCLUDING LOST PROFITS, 
  17.   ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN IF THE 
  18.   AUTHOR HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  19.   THE AUTHOR SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, BUT NOT LIMITED
  20.   TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 
  21.   PURPOSE.  THE SOFTWARE PROVIDED HEREUNDER IS ON AN "AS IS" BASIS, AND THE 
  22.   AUTHOR HAS NO OBLIGATIONS TO PROVIDE MAINTENANCE, SUPPORT, UPDATES, 
  23.   ENHANCEMENTS, OR MODIFICATIONS.
  24.   Further modifications copyright 1997, 1998 and 1999 by D'Arcy J.M. Cain
  25.   (darcy@druid.net) subject to the same terms and conditions as above.
  26. 1. Presentation
  27. ===============
  28. 1.1. Introduction
  29. -----------------
  30. PostgreSQL is a database system derived from Postgres4.2. It conforms to
  31. (most of) ANSI SQL and offers many interesting capabilities (C dynamic linking
  32. for functions or type definition, etc.). This package is copyright by the
  33. Regents of the University of California, and is freely distributable.
  34. Python is an interpreted programming language. It is object oriented, simple
  35. to use (light syntax, simple and straightforward statements), and has many
  36. extensions for building GUIs, interfacing with WWW, etc. An intelligent web
  37. browser (HotJava like) is currently under development (November 1995), and
  38. this should open programmers many doors. Python is copyrighted by Stichting S
  39. Mathematisch Centrum, Amsterdam, The Netherlands, and is freely distributable.
  40. PyGreSQL is a python module that interfaces to a PostgreSQL database. It
  41. embeds the PostgreSQL query library to allow easy use of the powerful
  42. PostgreSQL features from a Python script.
  43. PyGreSQL 2.0 was developed and tested on a NetBSD 1.3_BETA system.  It is
  44. based on the PyGres95 code written by Pascal Andre, andre@chimay.via.ecp.fr.
  45. I changed the version to 2.0 and updated the code for Python 1.5 and
  46. PostgreSQL 6.2.1.  While I was at it I upgraded the code to use full ANSI 
  47. style prototypes and changed the order of arguments to connect.
  48. 1.2. Distribution files
  49. -----------------------
  50.   README       - this file
  51.   Announce     - announcement of this release
  52.   ChangeLog    - changes that affected this package during its history
  53.   pgmodule.c   - the C python module
  54.   pg.py        - PyGreSQL DB class.
  55.   tutorial/    - demos directory
  56.                  Content: basics.py, syscat.py, advanced.py, func.py and
  57.                  pgtools.py.  The samples here have been taken from the
  58.                  PostgreSQL manual and were used for module testing.  They
  59.                  demonstrate some PostgreSQL features.  Pgtools.py is an
  60.                  add-in used for demonstration.
  61. 1.3. Installation
  62. -----------------
  63. * You first have to get and build Python and PostgreSQL.
  64. * PyGreSQL is implemented as two parts, a C module labeled _pg and a
  65.   Python wrapper called pg.py.  This changed between 2.1 and 2.2.  This
  66.   should not affect any existing programs but the installation is slightly
  67.   different.
  68. * Find the directory where your 'Setup' file lives (usually ??/Modules) and
  69.   copy or symlink the 'pgmodule.c' file there.
  70. * Add the following line to your Setup file
  71.     _pg  pgmodule.c -I[pgInc] -L[pgLib] -lpq # -lcrypt # needed on some systems
  72.   where:
  73.     [pgInc] = path of the PostgreSQL include 
  74.     [pgLib] = path of the PostgreSQL libraries 
  75.   Some options may be added to this line:
  76.     -DNO_DEF_VAR  - no default variables support
  77.     -DNO_DIRECT   - no direct access methods
  78.     -DNO_LARGE    - no large object support
  79.     -DNO_PQSOCKET - if running an older PostgreSQL
  80.   Define NO_PQSOCKET if you are using a version of PostgreSQL before 6.4
  81.   that does not have the PQsocket function.  The other options will be
  82.   described in the next sections.
  83. * If you want a shared module, make sure that the "*shared*" keyword is
  84.   uncommented and add the above line below it.  You used to need to install
  85.   your shared modules with "make sharedinstall but this no longer seems
  86.   to be true."
  87. * Copy pg.py to the lib directory where the rest of your modules are.  For
  88.   example, that's /usr/local/lib/Python on my system.
  89. * Do 'make -f Makefile.pre.in boot' and do 'make && make install'
  90. * For more details read the documentation at the top of Makefile.pre.in
  91. * If you are on NetBSD, look in the packages directory under databases.  If
  92.   it isn't there yet, it should be there shortly.  You can also pick up the
  93.   package files from ftp://ftp.druid.net/pub/distrib/pygresql.pkg.tgz.
  94.   There is also a package in the FreeBSD ports collection but as I write
  95.   this it is at version 2.1.  I will try to get that updated as well.
  96. * For Linux installation look at README.linux
  97. 1.4. Where to get ... ?
  98. -----------------------
  99. The home sites of the different packages are:
  100.   - Python:     http://www.python.org/
  101.   - PosgreSQL:  http://www.PostgreSQL.org/
  102.   - PyGreSQL:   http://www.druid.net/pygresql/
  103. A Linux RPM can be picked up from ftp://www.eevolute.com/pub/python/.
  104. A NetBSD package thould be in the distribution soon and is available
  105. at ftp://ftp.druid.net/pub/distrib/pygresql.pkg.tgz.
  106. 1.5. Information and support
  107. ----------------------------
  108. If you need information about these packages please check their web sites:
  109.   - Python:     http://www.python.org/
  110.   - PostgreSQL: http://www.postgresql.org/
  111.   - PyGres95:   http://www.via.ecp.fr/via/products/pygres.html
  112.   - PyGreSQL:   http://www.druid.net/pygresql/
  113. For support:
  114.   - Python:      newgroup comp.lang.python
  115.   - PostgreSQL:  mailing list (see package documentation for information)
  116.   - PyGres95:    contact me (andre@via.ecp.fr) for bug reports, ideas, remarks
  117.                  I will try to answer as long as my free time allow me to do 
  118.                  that.
  119.   - PyGreSQL:    contact me (darcy@druid.net) concerning the changes to 2.x.
  120. 2. Programming information
  121. ==========================
  122. This module defines three objects: the pgobject that handles the connection 
  123. and all the requests to the database, the pglargeobject that handles
  124. all the accesses to Postgres large objects and pgqueryobject that handles
  125. query results.
  126. If you want to see a simple example of the use of some of these functions,
  127. see http://www.druid.net/rides/ where I have a link at the bottom to the
  128. actual Python code for the page.
  129. 2.1. pg module description
  130. ----------------------------
  131. The module defines only a few methods that allow to connect to a database and
  132. to allow to define "default variables" that override the environment variables
  133. used by PostgreSQL. 
  134. These "default variables" were designed to allow you to handle general 
  135. connection parameters without heavy code in your programs. You can prompt the
  136. user for a value, put it in the default variable, and forget it, without 
  137. having to modify your environment. The support for default variables can be
  138. disabled by setting the -DNO_DEF_VAR option in the Python Setup file. Methods
  139. relative to this are specified by te tag [DV].
  140. All variables are set to None at module initialization, specifying that 
  141. standard environment variables should be used.
  142.   2.1.1. connect - opens a pg connection
  143.   ----------------------------------------
  144.   Syntax:      
  145.     connect(dbname, host, port, opt, tty, user, passwd)
  146.   Parameters: 
  147.     dbname        - name of connected database (string/None)
  148.     host          - name of the server host (string/None)
  149.     port          - port used by the database server (integer/-1)
  150.     opt           - connection options (string/None)
  151.     tty           - debug terminal (string/None)
  152. user          - PostgreSQL user (string/None)
  153.     passwd        - password for user (string/None)
  154.   Return type:
  155.     pgobject      - the object handling the connection
  156.   Exceptions raised:
  157.     TypeError     - bad argument type, or too many arguments
  158.     SyntaxError   - duplicate argument definition 
  159.     pg.error      - some error occurred during pg connection definition
  160.     (+ all exceptions relative to object allocation)
  161.   Description:
  162.     This method opens a connection to a specified database on a given
  163.     PostgreSQL server. You can use keywords here, as described in the
  164.     Python tutorial; 
  165.     the names of the keywords are the name of the parameters given in the 
  166.     syntax line. For a precise description of the parameters, please refer to 
  167.     the PostgreSQL user manual.
  168.   2.1.2. get_defhost, set_defhost - default server host name handling [DV]
  169.   ------------------------------------------------------------------------
  170.   Syntax: get_defhost()
  171.   Parameters: 
  172.     none
  173.   Return type:
  174.     string, None  - default host specification
  175.   Exceptions raised:
  176.     SyntaxError   - too many arguments
  177.   Description:
  178.     This method returns the current default host specification, or None if the
  179.     environment variables should be used. Environment variables won't be looked
  180.     up.
  181.   Syntax: set_defhost(host)
  182.   Parameters:
  183.     host          - new default host (string/None)
  184.   Return type:
  185.     string, None  - previous default host specification
  186.   Exceptions raised:
  187.     TypeError     - bad argument type, or too many arguments
  188.   Description:
  189.     This methods sets the default host value for new connections. If None is
  190.     supplied as parameter, environment variables will be used in future 
  191.     connections. It returns the previous setting for default host.
  192.   2.1.3. get_defport, set_defport - default server port handling [DV]
  193.   -------------------------------------------------------------------
  194.   Syntax: get_defport()
  195.   Parameters: none
  196.   Return type:
  197.     integer, None - default port specification
  198.   Exceptions raised:
  199.     SyntaxError   - too many arguments
  200.   Description: 
  201.     This method returns the current default port specification, or None if
  202.     the environment variables should be used. Environment variables won't
  203.     be looked up.
  204.   Syntax: set_defport(port)
  205.   Parameters:
  206.     port          - new default port (integer/-1)
  207.   Return type:
  208.     integer, None - previous default port specification
  209.   Description:
  210.     This methods sets the default port value for new connections. If -1 is
  211.     supplied as parameter, environment variables will be used in future 
  212.     connections. It returns the previous setting for default port.
  213.   2.1.4. get_defopt, set_defopt - default connection options handling [DV]
  214.   ------------------------------------------------------------------------
  215.   Syntax: get_defopt()
  216.   Parameters: none
  217.   Return type:
  218.     string, None  - default options specification
  219.   Exceptions raised:
  220.     SyntaxError   - too many arguments
  221.   Description:
  222.     This method returns the current default connection options  specification,
  223.     or None if the environment variables should be used. Environment variables 
  224.     won't be looked up.
  225.   Syntax: set_defopt(options)
  226.   Parameters:
  227.     options       - new default connection options (string/None)
  228.   Return type:
  229.     string, None  - previous default options specification
  230.   Exceptions raised:
  231.     TypeError     - bad argument type, or too many arguments
  232.   Description:
  233.     This methods sets the default connection options value for new connections.
  234.     If None is supplied as parameter, environment variables will be used in 
  235.     future connections. It returns the previous setting for default options.
  236.   2.1.5. get_deftty, set_deftty - default connection debug tty handling [DV]
  237.   --------------------------------------------------------------------------
  238.   Syntax: get_deftty()
  239.   Parameters: none
  240.   Return type:
  241.     string, None  - default debug terminal specification
  242.   Exceptions raised:
  243.     SyntaxError   - too many arguments
  244.   Description:
  245.     This method returns the current default debug terminal specification, or 
  246.     None if the environment variables should be used. Environment variables 
  247.     won't be looked up.
  248.   Syntax: set_deftty(terminal)
  249.   Parameters:
  250.     terminal      - new default debug terminal (string/None)
  251.   Return type:
  252.     string, None  - previous default debug terminal specification
  253.   Exceptions raised:
  254.     TypeError     - bad argument type, or too many arguments
  255.   Description:
  256.     This methods sets the default debug terminal value for new connections. If
  257.     None is supplied as parameter, environment variables will be used in future
  258.     connections. It returns the previous setting for default terminal.
  259.   2.1.6. get_defbase, set_defbase - default database name handling [DV]
  260.   ---------------------------------------------------------------------
  261.   Syntax: get_defbase()
  262.   Parameters: none
  263.   Return type:
  264.     string, None  - default database name specification
  265.   Exceptions raised:
  266.     SyntaxError   - too many arguments
  267.   Description:
  268.     This method returns the current default database name specification, or 
  269.     None if the environment variables should be used. Environment variables 
  270.     won't be looked up.
  271.   Syntax: set_defbase(base)
  272.   Parameters:
  273.     base          - new default base name (string/None)
  274.   Return type:
  275.     string, None  - previous default database name specification
  276.   Exceptions raised:
  277.     TypeError     - bad argument type, or too many arguments
  278.   Description:
  279.     This method sets the default database name value for new connections. If 
  280.     None is supplied as parameter, environment variables will be used in 
  281.     future connections. It returns the previous setting for default host.
  282.   2.1.7. Module constants
  283.   -----------------------
  284.   Some constants are defined in the module dictionary. They are intended to be
  285. used as parameters for methods calls. You should refer to PostgreSQL user 
  286. manual for more information about them. These constants are:
  287.   - large objects access modes, used by (pgobject.)locreate and 
  288.     (pglarge.)open: (pg.)INV_READ, (pg.)INV_WRITE, (pg.)INV_ARCHIVE
  289.   - positional flags, used by (pglarge.)seek: (pg.)SEEK_SET, 
  290.     (pg.)SEEK_CUR, (pg.)SEEK_END.
  291.   - version and __version__ constants that give the current version.
  292.   2.1.9. 
  293.   2.1.10. Miscellaneous attributes
  294.   The following methods return information about the current connection.
  295.   - 
  296. 2.2. pgobject description
  297. ---------------------------
  298.   This object handle a connection to a PostgreSQL database. It embeds and 
  299. hides all the parameters that define this connection, thus just leaving really
  300. significant parameters in function calls.
  301.   Some methods give direct access to the connection socket. They are specified
  302. by the tag [DA]. DO NOT USE THEM UNLESS YOU REALLY KNOW WHAT YOU ARE DOING. If
  303. you prefer disabling them, set the -DNO_DIRECT option in the Python Setup file.
  304.   Some other methods give access to large objects (refer to PostgreSQL user
  305. manual for more information about these). if you want to forbid access to these
  306. from the module, set the -DNO_LARGE option in the Python Setup file. These 
  307. methods are specified by the tag [LO].
  308.   2.2.1. query - executes a SQL command string
  309.   --------------------------------------------
  310.   Syntax: query(command)
  311.   Parameters:
  312.     command       - SQL command (string)
  313.   Return type:
  314.     pgqueryobject, None    - result values
  315.   Exceptions raised:
  316.     TypeError     - bad argument type, or too many arguments.
  317.     ValueError    - empty SQL query
  318.     pg.error      - error during query processing, or invalid connection
  319.   Description:
  320.     This method simply sends a SQL query to the database. If the query is
  321.     an insert statement, the return value is the OID of the newly
  322.     inserted row.  If it is otherwise a query that does not return a result
  323.     (ie. is not a some kind of SELECT statement), it returns None.
  324.     Otherwise, it returns a pgqueryobject that can be accessed via the
  325.     getresult method or printed.
  326.   pgqueryobject methods
  327.   ---------------------
  328.     2.2.1.1. getresult - gets the values returned by the query
  329.     -------------------------------------------------------------
  330.     Syntax: getresult()
  331.     Parameters: none
  332.     Return type:
  333.       list          - result values
  334.     Exceptions raised:
  335.       SyntaxError   - too many parameters
  336.       pg.error      - invalid previous result
  337.     Description:
  338.       This method returns the list of the values returned by the query.
  339.       More information about this result may be get using listfields,
  340.       fieldname and fiednum methods.
  341.     2.2.1.2. dictresult - like getresult but returns list of dictionaries
  342.     ---------------------------------------------------------------------
  343.     Syntax: dictresult()
  344.     Parameters: none
  345.     Return type:
  346.       list          - result values as a dictionary
  347.     Exceptions raised:
  348.       SyntaxError   - too many parameters
  349.       pg.error      - invalid previous result
  350.     Description:
  351.       This method returns the list of the values returned by the query
  352.       with each tuple returned as a dictionary with the field names
  353.       used as the dictionary index.
  354.     2.2.1.3. listfields - lists the fields names of the previous query result
  355.     -----------------------------------------------------------------------
  356.     Syntax: listfields()
  357.     Parameters: none
  358.     Return type:
  359.       list          - fields names
  360.     Exceptions raised:
  361.       SyntaxError   - too many parameters
  362.       pg.error      - invalid previous result, or invalid connection
  363.     Description:
  364.       This method returns the list of names of the fields defined for the
  365.       query result. The fields are in the same order as the result values.
  366.   
  367.     2.2.1.4. fieldname, fieldnum - field name-number conversion
  368.     ---------------------------------------------------------
  369.     Syntax: fieldname(i)
  370.     Parameters:
  371.       i              - field number (integer)
  372.     Return type:
  373.       string         - field name
  374.     Exceptions raised:
  375.       TypeError      - bad parameter type, or too many parameters
  376.       ValueError     - invalid field number
  377.       pg.error       - invalid previous result, or invalid connection
  378.     Description:
  379.       This method allows to find a field name from its rank number. It can be 
  380.       useful for displaying a result. The fields are in the same order than the
  381.       result values.
  382.     Syntax: fieldnum(name)
  383.     Parameters:
  384.       name           - field name (string)
  385.     Return type:
  386.       integer        - field number
  387.     Exceptions raised:
  388.       TypeError      - bad parameter type, or too many parameters
  389.       ValueError     - unknown field name
  390.       pg.error       - invalid previous result, or invalid connection
  391.     Description:
  392.       This method returns a field number from its name.  It can be used to
  393.       build a function that converts result list strings to their correct
  394.       type, using a hardcoded table definition.  The number returned is the
  395.       field rank in the result values list.
  396.     2.2.1.5 ntuples - return number of tuples in query object
  397.     ---------------------------------------------------------
  398.     Syntax: ntuples()
  399.     Parameters: None
  400.     Return type: integer
  401.     Description:
  402.       This method returns the number of tuples found in a query.
  403.   2.2.2. reset - resets the connection
  404.   ------------------------------------
  405.   Syntax: reset()
  406.   Parameters: None
  407.   Return type: None
  408.   Exceptions raised:
  409.     TypeError     -  too many (any) arguments
  410.   Description:
  411.     This method resets the current database.
  412.   2.2.3. close - close the database connection
  413.   --------------------------------------------
  414.   Syntax: close()
  415.   Parameters: none
  416.   Return type: None
  417.   Exceptions raised:
  418.     TypeError     -  too many (any) arguments
  419.   Description:
  420.     This method closes the database connection.  The connection will
  421.     be closed in any case when the connection is deleted but this
  422.     allows you to explicitly close it.  It is mainly here to allow
  423.     the DB-SIG API wrapper to implement a close function.
  424.   2.2.4. fileno - returns the socket used to connect to the database
  425.   ------------------------------------------------------------------
  426.   Syntax: fileno()
  427.   Parameters: none
  428.     Exceptions raised:
  429.     TypeError     -  too many (any) arguments
  430.   Description:
  431.     This method returns the underlying socket id used to connect
  432.     to the database.  This is useful for use in select calls, etc.
  433.     Note:  This function depends on having a recent version of the
  434.     database.  See "-DNO_PQSOCKET" described above.
  435.   2.2.5. getnotify - gets the last notify from the server
  436.   -------------------------------------------------------
  437.   Syntax: getnotify()
  438.   Parameters: none
  439.   Return type:
  440.     tuple, None    - last notify from server
  441.   Exceptions raised:
  442.     SyntaxError    - too many parameters
  443.     pg.error       - invalid connection
  444.   Description:
  445.     This methods try to get a notify from the server (from the SQL statement 
  446.     NOTIFY). If the server returns no notify, the methods returns None. 
  447.     Otherwise, it returns a tuple (couple) (relname, pid), where relname is the
  448.     name of the notify and pid the process id of the connection that triggered 
  449.     the notify.  Remember to do a listen query first otherwise getnotify
  450.     will always return None.
  451.   2.2.6. inserttable - insert a list into a table
  452.   -----------------------------------------------
  453.   Syntax: inserttable(table, values)
  454.   Parameters:
  455.     table          - the table name (string)
  456.     values         - list of rows values (list)
  457.   Return type:
  458.     None
  459.   Exception raised:
  460.     pg.error       - invalid connection
  461.     TypeError      - bad argument type, or too many arguments
  462.   Description:
  463.     This method allow to quickly insert large blocks of data in a table: it
  464.     inserts the whole values list into the given table. The list is a list of
  465.     tuples/lists that define the values for each inserted row. The rows values
  466.     may contain string, integer, long or double (real) values. 
  467.     BE VERY CAREFUL: this method doesn't typecheck the fields according to the
  468.     table definition; it just look whether or not it knows how to handle such
  469.     types.
  470.   2.2.7. putline - writes a line to the server socket [DA]
  471.   --------------------------------------------------------
  472.   Syntax: putline(line)
  473.   Parameters:
  474.     line           - line to be written (string)
  475.   Return type:
  476.     None
  477.   Exceptions raised:
  478.     pg.error       - invalid connection
  479.     TypeError      - bad parameter type, or too many parameters
  480.   Description: 
  481.     This method allows to directly write a string to the server socket.
  482.   2.2.8. getline - gets a line from server socket [DA]
  483.   ----------------------------------------------------
  484.   Syntax: getline()
  485.   Parameters: none
  486.   Return type:
  487.     string         - the line read
  488.   Exceptions raised:
  489.     pg.error       - invalid connection
  490.     SyntaxError    - too many parameters
  491.   Description:
  492.     This method allows to directly read a string from the server socket.
  493.   2.2.9. endcopy - synchronizes client and server [DA]
  494.   ----------------------------------------------------
  495.   Syntax: endcopy()
  496.   Parameters: none
  497.   Return type:
  498.     None
  499.   Exceptions raised:
  500.     pg.error       - invalid connection
  501.     SyntaxError    - too many parameters
  502.   Description:
  503.     The use of direct access methods may desynchonize client and server. This
  504.     method ensure that client and server will be synchronized.
  505.   2.2.10. locreate - creates of large object in the database [LO]
  506.   ---------------------------------------------------------------
  507.   Syntax: locreate(mode)
  508.   Parameters:
  509.     mode           - large object create mode
  510.   Return type:
  511.     pglarge        - object handling the postgres large object
  512.   Exceptions raised:
  513.     pg.error       - invalid connection, or creation error
  514.     TypeError      - bad parameter type, or too many parameters
  515.   Description:
  516.     This method creates a large object in the database. The mode can be defined
  517.     by OR-ing the constants defined in the pg module (INV_READ, INV_WRITE and
  518.     INV_ARCHIVE). Please refer to PostgreSQL user manual for a description of
  519.     the mode values.
  520.   2.2.11. getlo - builds a large object from given oid [LO]
  521.   ---------------------------------------------------------
  522.   Syntax: getlo(oid)
  523.   Parameters:
  524.     oid            - oid of the existing large object (integer)
  525.   Return type:
  526.     pglarge        - object handling the postgres large object
  527.   Exceptions raised:
  528.     pg.error       - invalid connection
  529.     TypeError      - bad parameter type, or too many parameters
  530.     ValueError     - bad oid value (0 is invalid_oid)
  531.   Description:
  532.     This method allows to reuse a formerly created large object through the 
  533.     pglarge interface, providing the user have its oid.
  534.   2.2.12. loimport - import a file to a postgres large object [LO]
  535.   ----------------------------------------------------------------
  536.   Syntax: loimport(name)
  537.   Parameters:
  538.     name           - the name of the file to be imported (string)
  539.   Return type:
  540.     pglarge        - object handling the postgres large object
  541.   Exceptions raised:
  542.     pg.error       - invalid connection, or error during file import
  543.     TypeError      - bad argument type, or too many arguments
  544.   Description: 
  545.     This methods allows to create large objects in a very simple way. You just 
  546.     give the name of a file containing the data to be use.
  547.   2.2.13. pgobject attributes
  548.   -----------------------------
  549.   Every pgobject defines a set of read-only attributes that describe the 
  550. connection and its status. These attributes are:
  551.   host             - the hostname of the server (string)
  552.   port             - the port of the server (integer)
  553.   db               - the selected database (string)
  554.   options          - the connection options (string)
  555.   tty              - the connection debug terminal (string)
  556.   user             - the username on the database system (string)
  557.   status           - the status of the connection (integer: 1 - OK, 0 - BAD)
  558.   error            - the last warning/error message from the server (string)
  559. 2.3. pglarge description
  560. --------------------------
  561.   This object handles all the request concerning a postgres large object. It 
  562. embeds and hides all the 'recurrent' variables (object oid and connection), 
  563. exactly in the same way pgobjects do, thus only keeping significant 
  564. parameters in function calls. It keeps a reference to the pgobject used for
  565. its creation, sending requests though with its parameters. Any modification but
  566. dereferencing the pgobject will thus affect the pglarge object. 
  567. Dereferencing the initial pgobject is not a problem since Python won't 
  568. deallocate it before the large object dereference it.
  569.   All functions return a generic error message on call error, whatever the 
  570. exact error was. The 'error' attribute of the object allow to get the exact 
  571. error message.
  572.   2.3.1. open - opens a large object
  573.   ----------------------------------
  574.   Syntax: open(mode)
  575.   Parameters:
  576.     mode           - open mode definition (integer)
  577.   Return type:
  578.     None
  579.   Exceptions raised:
  580.     pg.error       - invalid connection
  581.     TypeError      - bad parameter type, or too many parameters
  582.     IOError        - already opened object, or open error
  583.   Description:
  584.     This method opens a large object for reading/writing, in the same way than
  585.     the UNIX open() function. The mode value can be obtained by OR-ing the 
  586.     constants defined in the pgmodule (INV_READ, INV_WRITE).
  587.   2.3.2. close - closes a large object
  588.   ------------------------------------
  589.   Syntax: close()
  590.   Parameters: none
  591.   Return type:
  592.     None
  593.   Exceptions raised:
  594.     pg.error       - invalid connection
  595.     SyntaxError    - too many parameters
  596.     IOError        - object is not opened, or close error
  597.   Description:
  598.     This method closes a previously opened large object, in the same way than 
  599.     the UNIX close() function.
  600.   2.3.4. read, write, tell, seek, unlink - file like large object handling
  601.   ------------------------------------------------------------------------
  602.   Syntax: read(size)
  603.   Parameters:
  604.     size           - maximal size of the buffer to be read
  605.   Return type:
  606.     sized string   - the read buffer
  607.   Exceptions raised:
  608.     pg.error       - invalid connection or invalid object
  609.     TypeError      - bad parameter type, or too many parameters
  610.     IOError        - object is not opened, or read error
  611.   Description:
  612.     This function allows to read data from a large object, starting at current
  613.     position.
  614.   Syntax: write(string)
  615.   Parameters:
  616.     (sized) string - buffer to be written
  617.   Return type:
  618.     None
  619.   Exceptions raised:
  620.     pg.error       - invalid connection or invalid object
  621.     TypeError      - bad parameter type, or too many parameters
  622.     IOError        - object is not opened, or write error
  623.   Description:
  624.     This function allows to write data to a large object, starting at current 
  625.     position.
  626.   Syntax: seek(offset, whence)
  627.   Parameters:
  628.     offset          - position offset
  629.     whence          - positional parameter
  630.   Return type:
  631.     integer         - new position in object
  632.   Exception raised:
  633.     pg.error        - invalid connection or invalid object
  634.     TypeError       - bad parameter type, or too many parameters
  635.     IOError         - object is not opened, or seek error
  636.   Description:
  637.     This method allows to move the position cursor in the large object. The 
  638.     whence parameter can be obtained by OR-ing the constants defined in the 
  639.     pg module (SEEK_SET, SEEK_CUR, SEEK_END).
  640.   Syntax: tell()
  641.   Parameters: none
  642.   Return type:
  643.     integer         - current position in large object
  644.   Exception raised:
  645.     pg.error        - invalid connection or invalid object
  646.     SyntaxError     - too many parameters
  647.     IOError         - object is not opened, or seek error
  648.   Description:
  649.     This method allows to get the current position in the large object.
  650.   Syntax: unlink()
  651.   Parameter: none
  652.   Return type:
  653.     None
  654.   Exception raised:
  655.     pg.error        - invalid connection or invalid object
  656.     SyntaxError     - too many parameters
  657.     IOError         - object is not closed, or unlink error
  658.   Description:
  659.     This methods unlinks (deletes) the postgres large object.
  660.   2.3.5. size - gives the large object size
  661.   -----------------------------------------
  662.   Syntax: size()
  663.   Parameters: none
  664.   Return type:
  665.     integer         - large object size
  666.   Exceptions raised:
  667.     pg.error        - invalid connection or invalid object
  668.     SyntaxError     - too many parameters
  669.     IOError         - object is not opened, or seek/tell error
  670.   Description:
  671.     This (composite) method allows to get the size of a large object. Currently
  672.     the large object needs to be opened. It was implemented because this 
  673.     function is very useful for a WWW interfaced database.
  674.   2.3.6. export - saves a large object to a file
  675.   ----------------------------------------------
  676.   Syntax: export(name)
  677.   Parameters:
  678.     name            - file to be created
  679.   Return type:
  680.     None
  681.   Exception raised:
  682.     pg.error        - invalid connection or invalid object
  683.     TypeError       - bad parameter type, or too many parameters
  684.     IOError         - object is not closed, or export error
  685.   Description:
  686.     This methods allows to dump the content of a large object in a very simple
  687.     way. The exported file is created on the host of the program, not the 
  688.     server host.
  689.   2.3.7. Object attributes
  690.   ------------------------
  691.   pglarge objects define a read-only set of attributes that allow to get some
  692. information about it. These attributes are:
  693.   oid                - the oid associated with the object
  694.   pgcnx              - the pgobject associated with the object
  695.   error              - the last warning/error message of the connection
  696. BE CAREFUL:  in multithreaded environments, 'error' may be modified by another
  697. thread using the same pgobject. Remember these object are shared, not 
  698. duplicated. You should provide some locking to be able if you want to check 
  699. this.
  700.   The oid attribute is very interesting because it allow you reuse the oid 
  701. later, creating the pglarge object with a pgobject getlo() method call.
  702. 3. The pg wrapper
  703. ================
  704. The previous functions are wrapped in a module called pg.  The module
  705. has a class called DB.  The above functions are also included in the
  706. name space so it isn't necessary to import both modules.  The preferred
  707. way to use this module is as follows.
  708. from pg import DB
  709. db = DB(...) # See description of the initialization method below.
  710. The following describes the methods and variables of this class.
  711.  3.1. Initialization
  712.  -------------------
  713.  The DB class is initialized with the same arguments as the connect
  714.  method described in section 2.  It also initializes a few internal
  715.  variables.  The statement 'db = DB()' will open the local database
  716.  with the name of the user just like connect() does.
  717.  3.2. pkey
  718.  ---------
  719.  Syntax:
  720.    pkey(table)
  721.  Parameters:
  722.    table - name of table
  723.  Returns:
  724.    Name of field which is the primary key of the table.
  725.  Description:
  726.    This method returns the primary key of a table.  Note that this raises
  727.    an exception if the table doesn't have a primary key.
  728.  3.3. get_databases - get list of databases in the system
  729.  --------------------------------------------------------
  730.  Syntax: get_databases()
  731.  Parameters: none
  732.  Returns: list of databases in the system
  733.  Description:
  734.    Although you can do this with a simple select, it is added here for
  735.    convenience
  736.  3.4. get_tables - get list of tables in connected database
  737.  ----------------------------------------------------------
  738.  Syntax: get_tables() 
  739.  Parameters: none
  740.  Returns: list of tables in connected database
  741.  3.5. get_attnames
  742.  -----------------
  743.  Syntax: 
  744.    get_attnames(table)       
  745.  Parameters: 
  746.    table - name of table
  747.  Returns:
  748.    List of attribute names
  749.  Description:
  750.    Given the name of a table, digs out the list of attribute names.
  751.  3.6. get - get a tuple from a database table
  752.  --------------------------------------------
  753.  Syntax: 
  754.    get(table, arg, [keyname])
  755.  Parameters:
  756.    table - name of table
  757.    arg - either a dictionary or the value to be looked up
  758.    keyname - name of field to use as key (optional)
  759.  Returns:
  760.    A dictionary mapping attribute names to row values.
  761.  Description:
  762.    This method is the basic mechanism to get a single row.  It assumes
  763.    that the key specifies a unique row.  If keyname is not specified
  764.    then the primary key for the table is used.  If arg is a dictionary
  765.    then the value for the key is taken from it and it is modified to
  766.    include the new values, replacing existing values where necessary.
  767.    The oid is also put into the dictionary but in order to allow the
  768.    caller to work with multiple tables, the attribute name is munged
  769.    to make it unique.  It consists of the string "oid_" followed by
  770.    the name of the table.
  771.  3.7. insert - insert a tuple into a database table
  772.  --------------------------------------------------
  773.  Syntax:
  774.    insert(table, a)
  775.  Parameters:
  776.    table - name of table
  777.    a - a dictionary of values
  778.  Returns:
  779.    The OID of the newly inserted row.
  780.  Description:
  781.    This method inserts values into the table specified filling in the
  782.    values from the dictionary.  It then reloads the dictionary with the
  783.    values from the database.  This causes the dictionary to be updated
  784.    with values that are modified by rules, triggers, etc.
  785.  3.8. update
  786.  -----------
  787.  Syntax:
  788.    update(table, a)             
  789.  Parameters:
  790.    table - name of table
  791.    a - a dictionary of values
  792.  Returns:
  793.    A dictionary with the new row
  794.  Description:
  795.    Similar to insert but updates an existing row.  The update is based
  796.    on the OID value as munged by get.  The array returned is the
  797.    one sent modified to reflect any changes caused by the update due
  798.    to triggers, rules, defaults, etc.
  799.  3.9. clear
  800.  ----------
  801.  Syntax:
  802.    clear(table, [a])
  803.  Parameters:
  804.    table - name of table
  805.    a - a dictionary of values
  806.  Returns:
  807.    A dictionary with an empty row
  808.  Description:
  809.    This method clears all the attributes to values determined by the types.
  810.    Numeric types are set to 0, dates are set to 'TODAY' and everything
  811.    else is set to the empty string.  If the array argument is present,
  812.    it is used as the array and any entries matching attribute names
  813.    are cleared with everything else left unchanged.
  814.  3.8. delete
  815.  -----------
  816.  Syntax:
  817.    delete(table, a)
  818.  Parameters:
  819.    table - name of table
  820.    a - a dictionary of values
  821.  Returns:
  822.    None
  823.  Description:
  824.    This method deletes the row from a table.  It deletes based on the OID
  825.    as munged as described above.
  826. 4. Future directions
  827. ====================
  828. The large object and direct access functions need much more attention.
  829. I want to add a DB-SIG API wrapper around the underlying module.  This
  830. will be in 3.0.