[sqlalchemy] InvalidRequestError: Unknown PG numeric type: 1043

2011-05-16 Thread Craig Swank
Hello, I am declaratively defining a table and am having trouble with adding a float column. I get this error: InvalidRequestError: Unknown PG numeric type: 1043 when I add a column with either: from sqlalchemy.dialects.postgresql import NUMERIC or from sqlalchemy import Float and the

[sqlalchemy] Re: InvalidRequestError: Unknown PG numeric type: 1043

2011-05-16 Thread Craig Swank
, Craig Swank wrote: Hello, I am declaratively defining a table and am having trouble with adding a float column.  I get this error: InvalidRequestError: Unknown PG numeric type: 1043 when I add a column with either: from sqlalchemy.dialects.postgresql import NUMERIC or from

[sqlalchemy] processing.Process and sqlalchemy

2008-05-15 Thread Craig Swank
Hello, I am playing around with loading data into a database using subclasses of processing.Process so that data files can be sent to a server. I would like to have the server fire off a process that takes care of parsing the data file and loading the data into a data. When I run some tests