Alex Greif wrote:
Hi,In my postgreSQL DB all tables are in a specific schema. The ddl looks liek this: create schema WIMF; create table WIMF.USER ... is there a possibility to tell SQLObject to create all tables in my WIMF schema, and while runtime to make all CRUD operations in this schema? I suppos it is a config issue, but have not found it yet.
You could issue SET search_path = WIMF, pg_catalog; after the connection is created. Cliff

