From: <gh...@gh...> - 2005-02-08 18:51:04
|
Mican Bican wrote: > Hello, > > I write a test python file to connect my postgresql database. My table > called Testtabelle. Python always bring an error... "a relation called > testtabelle not exists" or so.. So I try to change the tablename from > Testtabelle to testtabelle... uups and it works..?? Is this possible > that pypgsql only allows tablenames with small letters???? pyPgSQL has nothing to do with it. Probably the table was created with something like: create table "Testtabelle" and then, case does matter I believe. At least I've seen something like this recently in Oracle. -- Gerhard |