Re: I'm very confused. - Mailing list pgsql-novice

From Brant Fitzsimmons
Subject Re: I'm very confused.
Date
Msg-id 45ADD921.3030800@bfcomputerconsulting.com
Whole thread Raw
In response to Re: I'm very confused.  ("Jasbinder Singh Bali" <jsbali@gmail.com>)
Responses Re: I'm very confused.  (Sean Davis <sdavis2@mail.nih.gov>)
List pgsql-novice
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

Jasbinder Singh Bali wrote:
> Please attach a snippet of your python script and lets see what are
>  you doing there. That might make things easy. Jas

Here is the entire test script:

#!/usr/bin/python

# import pgdb module
import pgdb

# connect to the db
db = pgdb.connect(host="localhost", database="test", user="postgres",
password="**********")

# instantiate cursor
cursor = db.cursor()

# insert 10 records
for x in range(10):
    cursor.execute("INSERT INTO users (username, firstname, lastname,
email, age) VALUES ('brant', 'Brant', 'Fitzsimmons',
'brant@bfcomputerconsulting.com', 31)")

# retrieve the data
cursor.execute("SELECT * FROM users")
result = cursor.fetchall()

# print data to the screen
for line in result:
    print line
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.3 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iD8DBQFFrdkhDpzwx2t8E5gRAiPpAJ0QHGmawHqiZWy2NKTUbWncrpWWGgCdF3oS
IjwEPfhuuvIthx4U8MsoyHA=
=lvc7
-----END PGP SIGNATURE-----

pgsql-novice by date:

Previous
From: Brant Fitzsimmons
Date:
Subject: Re: I'm very confused.
Next
From: Sean Davis
Date:
Subject: Re: I'm very confused.