[PyGreSQL] PyGreSQL Digest, Vol 46, Issue 1
Joseph Armbruster
josepharmbruster at gmail.com
Sun Apr 8 20:22:45 EDT 2007
All,
I downloaded the pygresql source snapshot and read the following comment in
the README:
"Note that as of March 1 2001 the development of PyGreSQL has been moved
directly into the PostgreSQL development tree and is subject to the
PostgreSQL copyright except where contradicted by the above copyrights in
which case the above copyrights apply."
Hence, I ventured off to the postgresql cvs repo and was unable to locate
pgmodule.c !?
Is this a stale comment?
Joe
On 4/8/07, pygresql-request at vex.net <pygresql-request at vex.net> wrote:
>
> Send PyGreSQL mailing list submissions to
> pygresql at Vex.Net
>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://mailman.vex.net/mailman/listinfo/pygresql
> or, via email, send a message with subject or body 'help' to
> pygresql-request at Vex.Net
>
> You can reach the person managing the list at
> pygresql-owner at Vex.Net
>
> When replying, please edit your Subject line so it is more specific
> than "Re: Contents of PyGreSQL digest..."
>
>
> Today's Topics:
>
> 1. Re: PyGreSQL Digest, Vol 45, Issue 3 (Joseph Armbruster)
>
>
> ----------------------------------------------------------------------
>
> Message: 1
> Date: Sun, 8 Apr 2007 11:35:03 -0400
> From: "Joseph Armbruster" <josepharmbruster at gmail.com>
> Subject: Re: [PyGreSQL] PyGreSQL Digest, Vol 45, Issue 3
> To: pygresql at vex.net
> Message-ID:
> <938f42d70704080835y4943efe8ydae589cb1ed2db8d at mail.gmail.com>
> Content-Type: text/plain; charset="iso-8859-1"
>
> All,
>
> If you google for pygresql examples, not much comes up.. so I figured i'd
> make a contribution. I have started to put up some PyGreSQL code snippets
> on my site. I will be adding more throughout the week. Let me know what
> you think. I will also be putting up some psychopg
>
> http://www.joevial.com/wiki/Snippets/Python/PyGreSQL
>
> Joe
>
> http://www.joevial.com/wiki/Snippets/Python/PyGreSQL
>
> On 3/28/07, pygresql-request at vex.net <pygresql-request at vex.net> wrote:
> >
> > Send PyGreSQL mailing list submissions to
> > pygresql at Vex.Net
> >
> > To subscribe or unsubscribe via the World Wide Web, visit
> > http://mailman.vex.net/mailman/listinfo/pygresql
> > or, via email, send a message with subject or body 'help' to
> > pygresql-request at Vex.Net
> >
> > You can reach the person managing the list at
> > pygresql-owner at Vex.Net
> >
> > When replying, please edit your Subject line so it is more specific
> > than "Re: Contents of PyGreSQL digest..."
> >
> >
> > Today's Topics:
> >
> > 1. createdb from pygresql (Richard Mendes)
> > 2. Re: createdb from pygresql (D'Arcy J.M. Cain)
> > 3. Re: createdb from pygresql (Christoph Zwerschke)
> >
> >
> > ----------------------------------------------------------------------
> >
> > Message: 1
> > Date: Wed, 28 Mar 2007 14:49:53 +0200
> > From: "Richard Mendes" <mendes150 at gmail.com>
> > Subject: [PyGreSQL] createdb from pygresql
> > To: pygresql at Vex.Net
> > Message-ID:
> > <b23810810703280549g50245164o52554fafb40a20a3 at mail.gmail.com>
> > Content-Type: text/plain; charset=ISO-8859-1; format=flowed
> >
> > Hello All,
> >
> > I'm working on a project where we have to create multiple db's from a
> > script and by using pygresql we fill these db's.
> >
> > The problem we experiencing is that the command line creation of a
> > database without a password runs on unix but on windows it seems as if
> > a password is obligated. To prevent to create databases threw the
> > command line i was wondering if there is a method to create a db with
> > username and password in pygresql. This should give us the solution we
> > we're looking for.
> >
> > any help would be greatly appreciated,
> >
> > thanks in advance,
> >
> > richard
> >
> >
> > ------------------------------
> >
> > Message: 2
> > Date: Wed, 28 Mar 2007 09:03:15 -0400
> > From: "D'Arcy J.M. Cain" <darcy at PyGreSQL.org>
> > Subject: Re: [PyGreSQL] createdb from pygresql
> > To: PyGreSQL Development <pygresql at Vex.Net>
> > Message-ID: <20070328090315.8129ae77.darcy at PyGreSQL.org>
> > Content-Type: text/plain; charset=US-ASCII
> >
> > On Wed, 28 Mar 2007 14:49:53 +0200
> > "Richard Mendes" <mendes150 at gmail.com> wrote:
> > > The problem we experiencing is that the command line creation of a
> > > database without a password runs on unix but on windows it seems as if
> > > a password is obligated. To prevent to create databases threw the
> > > command line i was wondering if there is a method to create a db with
> > > username and password in pygresql. This should give us the solution we
> > > we're looking for.
> >
> > Not strictly a PyGreSQL question but you can use the query method to
> > send database creation queries directly to the backend. You can use
> > template1 as the database you connect to to do this.
> >
> > Check out the "CREATE DATABASE" and "CREATE USER" commands in
> > PostgreSQL.
> >
> > --
> > D'Arcy J.M. Cain
> > PyGreSQL Development Group
> > http://www.PyGreSQL.org
> >
> >
> > ------------------------------
> >
> > Message: 3
> > Date: Wed, 28 Mar 2007 15:25:22 +0200
> > From: Christoph Zwerschke <cito at online.de>
> > Subject: Re: [PyGreSQL] createdb from pygresql
> > To: PyGreSQL Development <pygresql at Vex.Net>
> > Message-ID: <460A6CC2.5030008 at online.de>
> > Content-Type: text/plain; charset=ISO-8859-1
> >
> > Richard Mendes wrote:
> > > The problem we experiencing is that the command line creation of a
> > > database without a password runs on unix but on windows it seems as if
> > > a password is obligated. To prevent to create databases threw the
> > > command line i was wondering if there is a method to create a db with
> > > username and password in pygresql. This should give us the solution we
> > > we're looking for.
> >
> > The only thing is that you must be logged in as a database user with
> > sufficient privileges to create a database, for instance as the postgres
> > user. Under Unix, if you are the postgres OS user, then you usually can
> > automatically login as the postgres DB user on the console. Under
> > Windows, this will probably also work if you login as the postgres user
> > or start psql as the postgres user with "runas".
> >
> > See also:
> > http://www.postgresql.org/docs/8.2/interactive/manage-ag-createdb.html
> >
> > -- Chris
> >
> >
> > ------------------------------
> >
> > _______________________________________________
> > PyGreSQL mailing list
> > PyGreSQL at Vex.Net
> > http://mailman.vex.net/mailman/listinfo/pygresql
> >
> >
> > End of PyGreSQL Digest, Vol 45, Issue 3
> > ***************************************
> >
> -------------- next part --------------
> An HTML attachment was scrubbed...
> URL:
> http://mailman.vex.net/pipermail/pygresql/attachments/20070408/e8f7e69a/attachment.html
>
> ------------------------------
>
> _______________________________________________
> PyGreSQL mailing list
> PyGreSQL at Vex.Net
> http://mailman.vex.net/mailman/listinfo/pygresql
>
>
> End of PyGreSQL Digest, Vol 46, Issue 1
> ***************************************
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://mailman.vex.net/pipermail/pygresql/attachments/20070408/3d33e548/attachment.htm
More information about the PyGreSQL
mailing list