Hi,
I'm trying to find any documentation about selecting database schema with dao-class, for example something like this:
(defclass my-class () ((some-column :column t :accessor some-column :initarg some-column) ..... itd)) (:metaclass postmodern:dao-class) (:table-name (:dot 'scheme-name 'table-name)) (:keys some-column))
But it seems (:dot 'scheme-name 'table-name) format is supported only in queries? How can I select an schema in database?