Re: [postmodern-devel] Selecting schema with dao-class

2010-12-11 Thread Slobodan Milnović
On Sat, Dec 11, 2010 at 12:17, Marijn Haverbeke wrote: >> But it seems (:dot 'scheme-name 'table-name) format is supported only >> in queries? How can I select an schema in database? > > The table-name has to be a string, and is not evaluated. You could > just do (:table-name "schema_name.table_na

Re: [postmodern-devel] Selecting schema with dao-class

2010-12-11 Thread Marijn Haverbeke
> But it seems (:dot 'scheme-name 'table-name) format is supported only > in queries? How can I select an schema in database? The table-name has to be a string, and is not evaluated. You could just do (:table-name "schema_name.table_name"). Or use #.(sql (:dot 'foo 'bar)). ___