Christoph Zwerschke

Results 68 issues of Christoph Zwerschke

In version 5.2 we integrated support for asynchronous command processing which has been contributed on the mailing list by Patrick TJ McPhee a while ago (see #19). However, this feature...

help wanted
testing

PyGreSQL existed as a dialect in SQLAlchemy, but should now go into a separate repository. See https://github.com/sqlalchemy/sqlalchemy/issues/5189

help wanted

See https://www.postgresql.org/docs/devel/datatype-net-types.html and https://www.psycopg.org/docs/extras.html#networking-data-types

The [PostgreSQL Wiki](https://wiki.postgresql.org/) has a page "[Driver Development](http://wiki.postgresql.org/wiki/Driver_development)" that might contain information interesting for us that we have not yet considered. We should go through the page and check if...

Add notes about how PyGreSQL can be used in Django in the documentation. If still needed, mention workaround for Python 2 (see discussion in mailing liste 2018-04-27).

In #39 we added a method `fieldinfo()` to the query in the classic module, which takes an optional field name or number. If nothing is specified, the field info for...

When releasing the binaries for Windows on PyPI, consider bundlling them with the appropriate libpq.dll. Maybe get some ideas from how psycopg2 is doing it [here](https://www.psycopg.org/docs/install.html#psycopg-vs-psycopg-binary).

enhancement

See earlier discussions in #47 and #61. Several methods of PyGreSQL, such as `copy_*()` or `inserttable()`, expect table names as parameters, and these are escaped internally. This causes a problem...

The idea here is to divorce the classic API from the C module and make it a wrapper around the DB-API module. If done carefully then the classic interface can...

The pgmodule.c file has been split into 7 parts in version 5.1, but is still a single compilation unit. We may want to add proper header files for each part...