PyGreSQL 5.0.3 released

2016-12-11 Thread D'Arcy Cain
Release 5.0.3 of PyGreSQL. It is available at: http://pygresql.org/files/PyGreSQL-5.0.3.tar.gz. If you are running NetBSD, look in the packages directory under databases. There is also a package in the FreeBSD ports collection. Please refer to the changelog.txt file for things that have

Release of PyGreSQL version 4.2

2016-01-23 Thread D'Arcy J.M. Cain
The PyGreSQL team is please to announce release 4.2 of PyGreSQL. It is available at: http://pygresql.org/files/PyGreSQL-4.2.tgz. If you are running NetBSD, look in the packages directory under databases for py-postgresql. There should also be a package in the FreeBSD ports collection. Please

Re: PyGresql 4.1.1 for python2.7

2013-06-14 Thread j . mapping
On Sunday, February 3, 2013 4:14:34 AM UTC-7, alexandra wrote: > Using dependency walker revealed that the following are missing from > libpq: > > PQescapeLiteral > > PQescapeIdentifier > > These are only defined in postgresql 9. > > Docu

Re: PyGresql 4.1.1 for python2.7

2013-02-03 Thread alexandra
Using dependency walker revealed that the following are missing from libpq: PQescapeLiteral PQescapeIdentifier These are only defined in postgresql 9. Documentation states that PyGresql 4.1.1 is compatible with PostgreSQL 8.3 or higher and I'm using 8.4.

PyGresql 4.1.1 for python2.7

2013-01-31 Thread alexandra
Hello, I'm trying to upgrade to python2.7. Installed PyGresql 4.1.1 for python 2.7. When running "import pg" command I get the following error: from _pg import * ImportError: DLL load failed: The operating system cannot run %1. I

New version of PyGreSQL 4.1.1 - bug fixes

2013-01-08 Thread D'Arcy J.M. Cain
- Release of PyGreSQL version 4.1.1 - A few problems showed up with the 4.1 release so we are releasing a quick bugfix version. It is available at: http://pygresql.org/files/PyGreSQL-4.1.1.tgz. If you are running NetBSD, look in

Re: PyGreSQL 4.1 released

2013-01-06 Thread D'Arcy J.M. Cain
On Sat, 5 Jan 2013 08:44:17 -0500 "D'Arcy J.M. Cain" wrote: > We will probably get version 4.2 released shortly and then branch 5.x > and start working on Python 3 support. In fact, we found a few buglets and will be releasing 4.1.1 on Tuesday. -- D'Arcy J.M. Cain | Democracy is three

Re: PyGreSQL 4.1 released

2013-01-05 Thread D'Arcy J.M. Cain
On Sat, 5 Jan 2013 13:23:55 +0100 Michael Poeltl wrote: > no python3 support yet? > can you tell us when pygresql will be ready for python3? Hard to say when (we all have day jobs) but it is planned for version 5.0. You can track our milestones at http://trac.vex.net:8000/pgtracker W

Re: PyGreSQL 4.1 released

2013-01-05 Thread Michael Poeltl
no python3 support yet? can you tell us when pygresql will be ready for python3? thx Michael * D'Arcy J.M. Cain [2013-01-03 15:05]: > --- > Release of PyGreSQL version 4.1 > --- > > It has been a long time coming b

Re: PyGreSQL 4.1 released

2013-01-03 Thread Walter Hurry
ntages oiver Psycopg2? > 0 > Well, it has two interfaces, the DB-API 2.0 and the "Classic" one. The > classic one is basically the one PyGreSQL started life as before we had > a standard interface. We kept it as it has some advantages over the > portable one but offer both.

Re: PyGreSQL 4.1 released

2013-01-03 Thread Modulok
> --- > Release of PyGreSQL version 4.1 > --- > > It has been a long time coming but PyGreSQL v4.1 has been released. > > It is available at: http://pygresql.org/files/PyGreSQL-4.1.tgz. > > If you are running N

Re: PyGreSQL 4.1 released

2013-01-03 Thread D'Arcy J.M. Cain
. The classic one is basically the one PyGreSQL started life as before we had a standard interface. We kept it as it has some advantages over the portable one but offer both. As for other advantages, I prefer to hear those from people not involved with either project. -- D'Arcy J.M. Cain

Re: PyGreSQL 4.1 released

2013-01-03 Thread Walter Hurry
On Thu, 03 Jan 2013 09:04:16 -0500, D'Arcy J.M. Cain wrote: > --- > Release of PyGreSQL version 4.1 --- > > It has been a long time coming but PyGreSQL v4.1 has been released. > > It is available at: http://pygresql

PyGreSQL 4.1 released

2013-01-03 Thread D'Arcy J.M. Cain
--- Release of PyGreSQL version 4.1 --- It has been a long time coming but PyGreSQL v4.1 has been released. It is available at: http://pygresql.org/files/PyGreSQL-4.1.tgz. If you are running NetBSD, look in the packages directory under

Re: Pygresql, and query meta informations

2009-08-15 Thread Tim Roberts
durumdara wrote: > >Pygresql, DB-API. > >I search for a solution to get meta information about last query, >because I must export these infos to Delphi. > >Delphi have TDataSet, and it have meta structure that must be defined >before I create it. >For char/varchar field

Pygresql, and query meta informations

2009-08-14 Thread durumdara
Hi! Pygresql, DB-API. I search for a solution to get meta information about last query, because I must export these infos to Delphi. Delphi have TDataSet, and it have meta structure that must be defined before I create it. For char/varchar fields I must define their sizes! Pygresql is not

Re: Problem in installing PyGreSQL

2009-08-10 Thread Thangappan.M
Here I attached the setup.py and setup.cfg file.This is for your reference. I have changed the exception line. Even though I got the following error while running the python setup.py build running build running build_py running build_ext error: No such file or directory ===

Re: Problem in installing PyGreSQL

2009-08-07 Thread Scott David Daniels
Dennis Lee Bieber wrote: On Thu, 6 Aug 2009 16:00:15 +0530, "Thangappan.M" declaimed the following in gmane.comp.python.general: File "./setup.py", line 219, in finalize_options except (Warning, w): NameError: global name 'w' is not defined What would be the solution? Otherwise can you t

Re: Problem in installing PyGreSQL

2009-08-06 Thread Thangappan.M
, Dennis Lee Bieber wrote: > On Tue, 4 Aug 2009 09:55:47 -0400, "D'Arcy J.M. Cain" > declaimed the following in gmane.comp.python.general: > > > > > By the way, you don't have to be super user to install PyGreSQL. You > > just need SU if you want to ins

Re: Problem in installing PyGreSQL

2009-08-04 Thread Дамјан Георгиевски
>> > By the way, you don't have to be super user to install PyGreSQL. >> > You just need SU if you want to install it system wide. PyGreSQL >> > doesn't require any special privileges to run. >> >> Right, but the packages install system-wide.

Re: Problem in installing PyGreSQL

2009-08-04 Thread D'Arcy J.M. Cain
On Tue, 4 Aug 2009 10:02:23 -0400 Benjamin Kaplan wrote: > > By the way, you don't have to be super user to install PyGreSQL.  You > > just need SU if you want to install it system wide.  PyGreSQL doesn't > > require any special privileges to run. > > Right, bu

Re: Problem in installing PyGreSQL

2009-08-04 Thread Benjamin Kaplan
em >> level packages. That's what the comment about not being a super user >> meant. > > By the way, you don't have to be super user to install PyGreSQL.  You > just need SU if you want to install it system wide.  PyGreSQL doesn't > require any special privil

Re: Problem in installing PyGreSQL

2009-08-04 Thread D'Arcy J.M. Cain
ser > meant. By the way, you don't have to be super user to install PyGreSQL. You just need SU if you want to install it system wide. PyGreSQL doesn't require any special privileges to run. -- D'Arcy J.M. Cain | Democracy is three wolves http://www.druid.net/darcy/

Re: Problem in installing PyGreSQL

2009-08-04 Thread D'Arcy J.M. Cain
On Tue, 4 Aug 2009 09:03:55 -0400 Benjamin Kaplan wrote: > Doesn't matter here. Debians use DEBs (DEBian packages), not RPMs (for > the Red Hat Package Manager). Either way, the OP can't install system > level packages. That's what the comment about not being a super user > meant. Urk! I thought

Re: Problem in Installing PyGreSQL

2009-08-04 Thread Philip Semanchuk
On Aug 4, 2009, at 8:25 AM, Thangappan.M wrote: Dear all, While installing PyGreSQl module in my machine I got the error as pg_config command not found. I am not a super user. how can I install this pg_config tool. Thangappan, pg_config is part of PostgreSQL. It reports various pieces

Re: Problem in installing PyGreSQL

2009-08-04 Thread Benjamin Kaplan
On Tue, Aug 4, 2009 at 8:48 AM, D'Arcy J.M. Cain wrote: > On Tue, 04 Aug 2009 00:42:25 -0400 > David Lyon wrote: >> > Then I tried to download the module.But I am not able to download it. >> >> Did none of the links here work? >> >> http://www.pygresql.org/readme.html#where-to-get > > The RPM seem

Re: Problem in installing PyGreSQL

2009-08-04 Thread D'Arcy J.M. Cain
On Tue, 04 Aug 2009 00:42:25 -0400 David Lyon wrote: > > Then I tried to download the module.But I am not able to download it. > > Did none of the links here work? > > http://www.pygresql.org/readme.html#where-to-get The RPM seems to be missing. I am currently trying to find one. I don't run

Problem in Installing PyGreSQL

2009-08-04 Thread Thangappan.M
Dear all, While installing PyGreSQl module in my machine I got the error as pg_config command not found. I am not a super user. how can I install this pg_config tool. -- Regards, Thangappan.M -- http://mail.python.org/mailman/listinfo/python-list

Re: Problem in installing PyGreSQL

2009-08-03 Thread David Lyon
On Tue, 4 Aug 2009 09:15:47 +0530, "Thangappan.M" wrote: > I want to access the database related stuffs in python.So I found the > PyGreSQL module in net. > Then I tried to download the module.But I am not able to download it. Did none of the links here work? http://www.pygre

Re: Problem in installing PyGreSQL

2009-08-03 Thread Philip Semanchuk
On Aug 3, 2009, at 11:45 PM, Thangappan.M wrote: Dear all, I want to access the database related stuffs in python.So I found the PyGreSQL module in net. Then I tried to download the module.But I am not able to download it. I am not a super user. I am using Linux debian machine Python version

Problem in installing PyGreSQL

2009-08-03 Thread Thangappan.M
Dear all, I want to access the database related stuffs in python.So I found the PyGreSQL module in net. Then I tried to download the module.But I am not able to download it. I am not a super user. I am using Linux debian machine Python version is 2.4.4 -- Regards, Thangappan.M -- http

Release of PyGreSQL 4.0

2009-01-01 Thread D'Arcy J.M. Cain
We are please to announce the release of PyGreSQL 4.0. his is a major release and you should check it carefully before using in existing applications. There may be some incompatibilities. PyGreSQL is a Python module that interfaces to a PostgreSQL database. It embeds the PostgreSQL query

Re: PyGreSQL installation

2008-05-19 Thread D'Arcy J.M. Cain
On Mon, 19 May 2008 18:00:30 +0200 <[EMAIL PROTECTED]> wrote: > Hi there, > > I'm trying to install PyGreSQL for python 2.4. I assume that you got the installer from http://www.PyGreSQL.org/. If so, please join the PyGreSQL list (see above URL) and explain the problem there

Re: pygresql

2007-11-04 Thread Erik Jones
On Nov 4, 2007, at 9:45 AM, JD wrote: > Hi there. > > I'm trying to use python with postgresql. I decided to use psycopg to > interact with the postgresql server. When installing psycopg it > appeared that I needed mxDateTime. So I decided to install the mxbase > package. > > I received the follo

Re: pygresql

2007-11-04 Thread rustom
On Nov 4, 8:45 pm, JD <[EMAIL PROTECTED]> wrote: > Hi there. > > I'm trying to use python with postgresql. I decided to use psycopg to > interact with the postgresql server. When installing psycopg it > appeared that I needed mxDateTime. So I decided to install the mxbase > package. > > I received

Re: pygresql

2007-11-04 Thread JD
Apologies for essentially talking to myself out loud! I've switched back to pygresql. I think a lot of my problems were caused by not having installed postgresql-server-dev-8.2 which contains a lot of header files etc. I'm sure this was part of the problem with the psycopg modu

Re: pygresql

2007-11-04 Thread JD
Btw apologies for naming the post 'pygresql'! That was the module I was attempting to use before. -- http://mail.python.org/mailman/listinfo/python-list

pygresql

2007-11-04 Thread JD
Hi there. I'm trying to use python with postgresql. I decided to use psycopg to interact with the postgresql server. When installing psycopg it appeared that I needed mxDateTime. So I decided to install the mxbase package. I received the following error message (the interesting bit seems to be a

Re: psycopg2 or pygresql?

2007-09-19 Thread Steve Holden
exhuma.twn wrote: [...] > > Apparently I am deaf dumb and blind :( Sorry. I grepped several > times through the PEP for various other reasons, and this little bit > escaped me. > You forgot "stupid" ;-) > Thanks for being nice guys and answering anyhow. Much appreciated. > A pleasure. bee

Re: psycopg2 or pygresql?

2007-09-19 Thread exhuma.twn
> the query *with* a header-label. For now I hava a method on the widget > > which takes a query, *and* a list of labels. > > > I can live with that though. Although it itches me. > > > Would pygresql solve my dilemma? Or would you rather say: "Don't use > >

Re: psycopg2 or pygresql?

2007-09-19 Thread Steve Holden
t) that takes a SQL query and displays the results. And I > would like to have the columns ordered the same way as I specified in > the query *with* a header-label. For now I hava a method on the widget > which takes a query, *and* a list of labels. > > I can live with that thou

Re: psycopg2 or pygresql?

2007-09-19 Thread jay graves
On Sep 19, 10:06 am, "exhuma.twn" <[EMAIL PROTECTED]> wrote: > And before someone says: "Use the DictCursor-factory to access column > names". Yes I can do that. But a dict does not guarantee the same > order of keys as the columns were specified in the query. But you can iterate over the cursor.d

psycopg2 or pygresql?

2007-09-19 Thread exhuma.twn
can live with that though. Although it itches me. Would pygresql solve my dilemma? Or would you rather say: "Don't use pygresql!" ;) -- http://mail.python.org/mailman/listinfo/python-list

Re: PyGreSQL Install

2007-01-05 Thread goodepic
Awesome! I forgot that when I did switched to root I lost my PATH, where I'd put usr/local/bin ahead of /usr/bin, so "python" went to 2.5 instead of 2.3. Using python2.5 worked perfectly. Thanks!! -- http://mail.python.org/mailman/listinfo/python-list

Re: PyGreSQL Install

2007-01-05 Thread Thomas Ploch
goodepic schrieb: > I successfully installed postgresql and pygresql from source on my > MacBook 2ghz Intel core duo running os x 10.4.8. However, pygresql > installed under the defualt python 2.3 installation, while I've been > upgrading and working in 2.5, and have invested to

PyGreSQL Install

2007-01-05 Thread goodepic
I successfully installed postgresql and pygresql from source on my MacBook 2ghz Intel core duo running os x 10.4.8. However, pygresql installed under the defualt python 2.3 installation, while I've been upgrading and working in 2.5, and have invested too much time to go back to 2.3. I defin

Re: your opinion about psycopg vs pygresql

2006-12-21 Thread Maxim Sloyko
ment I don't even have a clue how they > differ and on what reason, why does PostgreSQL seem to favour pygresql > and Pythoneers psycopg? > > Thanks in advance. Well, my info can be a little out of date, since I researched this problem more than a year ago. AFAIK, psycopg still lacks

Re: your opinion about psycopg vs pygresql

2006-12-20 Thread johnf
hat db exists). > > Ok so I installed PostGreSQL and pygresql since it looked like that this > is endorsed by PG, I had some trouble with the DB-API2 (complains about > there is already a connection to template1, even when I closed and > deleted the connector) so I solved it by us

your opinion about psycopg vs pygresql

2006-12-20 Thread Martin P. Hellwig
Hi all, I'm playing a bit with PostgreSQL, in which I've set me the target to create a python script which with user input creates a new user role and a database with that owner (connecting to template1 since I know that at least that db exists). Ok so I installed PostGreSQL an

PyGreSQL, DLL search path, IDLE versus python command line

2006-08-01 Thread h112211
Hi all, I'm using the Windows version of Python 2.4.3 and everything worked okay until I installed PyGreSQL. Well, in fact the installation went fine, but when I try to run my script from IDLE I get: Traceback (most recent call last): File "\main.py", line 3, in -toplevel-

Re: pygresql - bytea

2006-05-07 Thread Christoph Zwerschke
Jan Danielsson wrote: >I'm trying to use pygresql to insert binary data (type: bytea) into a > column (using postgresql, obviously). > ... >Does _anyone_ have a working example? A simple insertion, and a > simple select is all I'm looking for. You should better

pygresql - bytea

2006-04-26 Thread Jan Danielsson
Hello all, I'm trying to use pygresql to insert binary data (type: bytea) into a column (using postgresql, obviously). To make a long story short: I can't get it to work. Not even by cutting and pasting the very few examples I have found on the 'net. Does _anyone_

Re: installing PygreSQL and psychopg2 modules (a newbie question)

2005-11-03 Thread Steve Holden
Zlatko Matić wrote: > Hello. > I was trying to install PygreSQL and psychopg2 in order to use python as > front-end for PostgreSQL, on WIndows XP. > When I tried to install by calling setup.py from command prompt ("setup.py > install"), in both cases I had the same e

Re: installing PygreSQL and psychopg2 modules (a newbie question)

2005-11-03 Thread Robert Boyd
On 11/2/05, Zlatko Matić <[EMAIL PROTECTED]> wrote: I was trying to install PygreSQL and psychopg2 in order to use python as front-end for PostgreSQL, on WIndows XP. When I tried to install by calling setup.py from command prompt ("setup.py install"), in both case

Re: installing PygreSQL and psychopg2 modules (a newbie question)

2005-11-03 Thread Tom Brown
On Wednesday 02 November 2005 14:10, Zlatko Matić wrote: > Hello. > I was trying to install PygreSQL and psychopg2 in order to use python > as front-end for PostgreSQL, on WIndows XP. When I tried to install > by calling setup.py from command prompt ("setup.py install"), in

installing PygreSQL and psychopg2 modules (a newbie question)

2005-11-03 Thread Zlatko Matić
Hello. I was trying to install PygreSQL and psychopg2 in order to use python as front-end for PostgreSQL, on WIndows XP. When I tried to install by calling setup.py from command prompt ("setup.py install"), in both cases I had the same error:   "error: Python was built with

Pygresql classic vs DB-API interface

2005-09-19 Thread Steve Bergman
I am relatively new to python and am developing an application using mod_python/pygresql/postgresql. Being attracted to the idea of database portability, I started out using the DB-API 2.0 compliant pgdb module. However, I am finding it to be pretty clunky compared to the classic pg interface

PyGreSQL binary for Windows

2005-03-26 Thread Ellinghaus, Lance
Title: PyGreSQL binary for Windows Has anyone built PyGreSQL for windows 2000 that would be willing to send me the binary version? I do not have a windows compiler and need to run it. Thank you, lance Lance Ellinghaus -- http://mail.python.org/mailman/listinfo/python-list