Update databases/rocksdb to version 3.11.2
[dports.git] / databases / py-postgresql / pkg-descr
1 Pure Python
2 All code, at first, is written in pure Python so that py-postgresql will work
3 anywhere that you can install Python 3. Optimizations in C are made where
4 needed, but are always optional.
5
6 Prepared Statements
7 Using the PG-API interface, protocol-level prepared statements may be created
8 and used multiple times. db.prepare(sql)(*args)
9
10 COPY Support
11 Use the convenient COPY interface to directly copy data from one connection to
12 another. No intermediate files or tricks are necessary.
13
14 Arrays and Composite Typescw
15 Arrays and composites are fully supported. Queries requesting them will returns
16 objects that provide access to the elements within.
17
18 "pg_python" Quick Console
19 Get a Python console with a connection to PostgreSQL for quick tests and simple
20 scripts.
21
22 WWW: http://python.projects.postgresql.org/