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

数据库系统

开发平台:

Unix_Linux

  1. Announce: Release of PyGreSQL version 2.4
  2. ===============================================
  3. PyGreSQL v2.4 has been released.
  4. It is available at: ftp://ftp.druid.net/pub/distrib/PyGreSQL.tgz.  If
  5. you are on NetBSD, look in the packages directory under databases.  If
  6. it isn't there yet, it should be there shortly.  You can also pick up the
  7. package files from ftp://ftp.druid.net/pub/distrib/pygresql.pkg.tgz.
  8. There is also a package in the FreeBSD ports collection but as I write
  9. this it is at version 2.1.  I will try to get that updated as well.
  10. PostgreSQL is a database system derived from Postgres4.2. It conforms
  11. to (most of) ANSI SQL and offers many interesting capabilities (C
  12. dynamic linking for functions or type definition, etc.). This package
  13. is copyright by the Regents of the University of California, and is
  14. freely distributable.
  15. Python is an interpreted programming language. It is object oriented,
  16. simple to use (light syntax, simple and straightforward statements), and
  17. has many extensions for building GUIs, interfacing with WWW, etc.  An
  18. intelligent web  browser (HotJava like) is currently under development
  19. (November 1995), and this should open programmers many doors. Python is
  20. copyrighted by Stichting S Mathematisch Centrum, Amsterdam, The
  21. Netherlands, and is freely distributable.
  22. PyGreSQL is a python module that interfaces to a PostgreSQL database. It
  23. embeds the PostgreSQL query library to allow easy use of the powerful
  24. PostgreSQL features from a Python script.
  25. I wanted to have DB-SIG API support in the next release but there are
  26. enough fixes and improvements to make one more release before starting
  27. on that.  The next version will be 3.0 and have the DB-SIG API support.
  28. Note that I said this for 2.4 but some required changes from others have
  29. been slow in coming (I'm not complaining, people do have lives) and
  30. there were enough fixes that I didn't want to keep them from a release.
  31. PyGreSQL 2.3 was developed and tested on a NetBSD 1.3_BETA system.  It
  32. is based on the PyGres95 code written by Pascal Andre,
  33. andre@chimay.via.ecp.fr.  I changed the version to 2.0 and updated the
  34. code for Python 1.5 and PostgreSQL 6.2.1.  While I was at it I upgraded
  35. the code to use full ANSI style prototypes and changed the order of
  36. arguments to connect.  Later versions are fixes and enhancements to that.
  37. Important changes from PyGreSQL 2.3 to PyGreSQL 2.4:
  38.   - Insert returns None if the user doesn't have select permissions
  39.     on the table.  It can (and does) happen that one has insert but
  40.     not select permissions on a table.
  41.   - Added ntuples() method to query object (brit@druid.net)
  42.   - Corrected a bug related to getresult() and the money type
  43.   - Corrected a but related to negative money amounts
  44.   - Allow update based on primary key if munged oid not available and
  45.     table has a primary key
  46.   - Add many __doc__ strings. (andre@via.ecp.fr)
  47. Important changes from PyGreSQL 2.2 to PyGreSQL 2.3:
  48.   - connect.host returns "localhost" when connected to Unix socket
  49.     (torppa@tuhnu.cutery.fi)
  50.   - Use PyArg_ParseTupleAndKeywords in connect() (torppa@tuhnu.cutery.fi)
  51.   - fixes and cleanups (torppa@tuhnu.cutery.fi)
  52.   - Fixed memory leak in dictresult() (terekhov@emc.com)
  53.   - Deprecated pgext.py - functionality now in pg.py
  54.   - More cleanups to the tutorial
  55.   - Added fileno() method - terekhov@emc.com (Mikhail Terekhov)
  56.   - added money type to quoting function
  57.   - Compiles cleanly with more warnings turned on
  58.   - Returns PostgreSQL error message on error
  59.   - Init accepts keywords (Jarkko Torppa)
  60.   - Convenience functions can be overridden (Jarkko Torppa)
  61.   - added close() method
  62. Important changes from PyGreSQL 2.1 to PyGreSQL 2.2:
  63.   - Added user and password support thanks to Ng Pheng Siong <ngps@post1.com>
  64.   - Insert queries return the inserted oid
  65.   - Add new pg wrapper (C module renamed to _pg)
  66.   - Wrapped database connection in a class.
  67.   - Cleaned up some of the tutorial.  (More work needed.)
  68.   - Added version and __version__.  Thanks to thilo@eevolute.com for
  69.     the suggestion.
  70. Important changes from PyGreSQL 2.0 to PyGreSQL 2.1:
  71.   - return fields as proper Python objects for field type
  72.   - Cleaned up pgext.py
  73.   - Added dictresult method
  74. Important changes from Pygres95 1.0b to PyGreSQL 2.0:
  75.   - Updated code for PostgreSQL 6.2.1 and Python 1.5.
  76.   - Reformatted code and converted to ANSI .
  77.   - Changed name to PyGreSQL (from PyGres95.)
  78.   - Changed order of arguments to connect function.
  79.   - Created new type pgqueryobject and moved certain methods to it.
  80.   - Added a print function for pgqueryobject
  81.   - Various code changes - mostly stylistic.
  82. For more information about each package, please have a look to their
  83. web pages:
  84.   - Python :     http://www.python.org/
  85.   - PostgreSQL : http://www.PostgreSQL.org/
  86.   - PyGreSQL :   http://www.druid.net/pygresql/
  87. D'Arcy J.M. Cain
  88. darcy@druid.net