pgsqldb.py
上传用户:blenddy
上传日期:2007-01-07
资源大小:6495k
文件大小:1k
源码类别:

数据库系统

开发平台:

Unix_Linux

  1. # pgsqldb.py
  2. # Written by D'Arcy J.M. Cain
  3. # This library implements the DB-SIG API
  4. # It includes the pg module and builds on it
  5. from _pg import *
  6. import string
  7. class _cursor:
  8. """For cursor object"""
  9. def __init__(self, conn):
  10. self.conn = conn
  11. self.cursor = None
  12. self.arraysize = 1
  13. self.description = None
  14. self.name = string.split(`self`)[3][:-1]
  15. def close(self):
  16. if self.conn == None: raise self.conn.error, "Cursor has been closed"
  17. if self.cursor == None: raise self.conn.error, "No cursor created"
  18. self.conn.query('CLOSE %s' % self.name)
  19. self.conn = None
  20. def __del__(self):
  21. if self.cursor != None and self.conn != None:
  22. self.conn.query('CLOSE %s' % self.name)
  23. class pgsqldb:
  24. """This class wraps the pg connection type in a DB-SIG API interface"""
  25. def __init__(self, *args, **kw):
  26. self.db = apply(connect, args, kw)
  27. # Create convience methods, in a way that is still overridable.
  28. for e in ('query', 'reset', 'close', 'getnotify', 'inserttable',
  29. 'putline', 'getline', 'endcopy',
  30. 'host', 'port', 'db', 'options',
  31. 'tty', 'error', 'status', 'user',
  32. 'locreate', 'getlo', 'loimport'):
  33. if not hasattr(self,e) and hasattr(self.db,e):
  34. exec 'self.%s = self.db.%s' % ( e, e )