Answer the question
In order to leave comments, you need to log in
SQLite. Inverting the view schema.table
I am working on Php MySQL. There was a desire to replace MySQL with SQLite for tests.
There are a lot of queries in the project where the schema is put down, for example SELECT * FROM `schema`.`table`
When building such a query in SQLite, I get the error "General error: 1 unknown database schema."
Is it possible somehow to create a multi-schema SQLite adapter?
If not, can you recommend an embeddable base supporting schemas
Answer the question
In order to leave comments, you need to log in
Attachable databases can be used instead of schemas.
attach database my.sqlite as myschema;
select * from myschema.t1;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question