Hi,
I'm using "attach database <database file> as coll'". Then I can use this alias for create tables: CREATE TABLE coll.<table name>. But when try with SELECT/INSERT/UPDATE:
q.SQL.Text := 'SELECT 1 FROM coll.coll_paths LIMIT 1';
q.Open;
... then I get error "EDatabaseError near "." : syntax error " . Copy paste into sqlitebrowser or sqliteman is working fine without syntax error. Even "select * from main.<some table>" raise same exception since "main" should always exists.
Regards