psycopg help

Поиск
Список
Период
Сортировка
От Scott Frankel
Тема psycopg help
Дата
Msg-id 92511043-1D97-11D9-AEEC-000A95A7B782@pacbell.net
обсуждение исходный текст
Ответы Re: psycopg help  (Pierre-Frédéric Caillaud<lists@boutiquenumerique.com>)
Список pgsql-general
First, apologies in advance for this somewhat OT post ...

I'm looking for a source of information on using the psycopg
interface to postgresql.  A mailing list would be ideal.  I've
poked at their wiki, but not found what I'm looking for.

Also, new to both postrgresql & psycopg, my questions appear
too basic for the doc/examples they provide with their installation.
i.e.:

- What's the appropriate syntax for specifying a primary key?

- What is the data type "text?"  And how does it differ from
   CHAR(len), &c.?

My very simple table creation test (based on their "first.py"
example is failing ...  Here's what I'm trying.  Non-pythonated
syntax works in pgsql:

no go:
    curs.execute("""CREATE TABLE key_test (
    key_col CHAR(9) PRIMARY KEY,
    nother_col CHAR(256))""")

pure joy:
    cs_test=# CREATE TABLE key_test (
    cs_test(# key_col CHAR(9) PRIMARY KEY,
    cs_test(# nother_col CHAR(256)
    cs_test(# );

Thanks!
Scott


В списке pgsql-general по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: creating audit tables
Следующее
От: Neil Berkman
Дата:
Сообщение: any way to remove a password?