John schrieb: > Therefore do you think it's better to force 'public' if no schema is > provided? > I'm thinking that it's either public or you need to pass the schema. To my > knowledge it's not possible to create a table without a schema. So > defaulting the schema to public allows the developers to just use table names > when creating bizobjs.
That works anyway since the default search path is 'public' so they are always visible. Usually schemas are only added after public to the search path, then they also stay visible. Only if somebody deliberately removes public from the search path or moves it somewhere to the end, then you see a difference, and then it's probably intended. -- Christoph _______________________________________________ Post Messages to: [email protected] Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-dev Searchable Archives: http://leafe.com/archives/search/dabo-dev This message: http://leafe.com/archives/byMID/[email protected]
