aboutsummaryrefslogtreecommitdiff
path: root/databases/py-postgresql
Commit message (Collapse)AuthorAgeFilesLines
* - Get Rid MD5 supportMartin Wilke2011-03-201-1/+0
| | | | Notes: svn path=/head/; revision=271346
* - Update to 1.0.2Sunpoet Po-Chuan Hsieh2010-10-063-4/+8
| | | | | | | | | PR: ports/150773 Submitted by: Volodymyr Kostyrko <c.kworr at gmail.com> (maintainer) Approved by: pgollucci (mentor) Notes: svn path=/head/; revision=262490
* Update to version 1.0.1Josh Paetzel2010-07-043-21/+126
| | | | | | | | | | PR: ports/148148 Submitted by: Volodymyr Kostyrko <c.kworr@gmail.com> Approved by: itetcu@ (mentor) implicit Feature safe: yes Notes: svn path=/head/; revision=257364
* - Update to 0.9.3Li-Wen Hsu2010-01-312-4/+4
| | | | | | | | PR: ports/142473 Submitted by: Volodymyr Kostyrko <c.kworr AT gmail.com> (maintainer) Notes: svn path=/head/; revision=248934
* Pure PythonPav Lucistnik2009-12-184-0/+310
All code, at first, is written in pure Python so that py-postgresql will work anywhere that you can install Python 3. Optimizations in C are made where needed, but are always optional. Prepared Statements Using the PG-API interface, protocol-level prepared statements may be created and used multiple times. db.prepare(sql)(*args) COPY Support Use the convenient COPY interface to directly copy data from one connection to another. No intermediate files or tricks are necessary. Arrays and Composite Typescw Arrays and composites are fully supported. Queries requesting them will returns objects that provide access to the elements within. "pg_python" Quick Console Get a Python console with a connection to PostgreSQL for quick tests and simple scripts. WWW: http://python.projects.postgresql.org/ PR: ports/137782 Submitted by: Volodymyr Kostyrko <c.kworr@gmail.com> Notes: svn path=/head/; revision=246167