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

数据库系统

开发平台:

Unix_Linux

  1. Thanks to thilo@eevolute.com for this README and the RPM
  2. INSTALLING PyGreSQL on Redhat Linux 5.1 or 5.2
  3. ==============================================
  4. Things are pretty easy on Redhat Linux.  You can either get a precompiled
  5. RPM package from
  6.         ftp://www.eevolute.com/pub/python/
  7. or try in compile and install it yourself:
  8. bash$ make redhat       # this just compiles the module as a shared object
  9. cc -fpic -shared -o _pg.so -I/usr/include/python1.5 pgmodule.c -lpq
  10. bash$ python            # you can test it from your local directory
  11. Python 1.5.1 (#1, May  6 1998, 01:48:27)  [GCC 2.7.2.3] on linux-i386
  12. Copyright 1991-1995 Stichting Mathematisch Centrum, Amsterdam
  13. >>> import _pg
  14. >>> db = _pg.connect('thilo', 'localhost')
  15. >>> db.query("INSERT INTO test VALUES ('ping', 'pong')")
  16. 18304
  17. >>> db.query("SELECT * FROM test")
  18. eins|zwei
  19. ----+----
  20. ping|pong
  21. (1 row)
  22. bash$ su                # Yow! Seems to work - now install it properly
  23. bash# cp _pg.so /usr/lib/python1.5/lib-dynload 
  24. done!