Open Art4 opened 8 years ago
The current DBUtil, and most of the query builder, generates MySQL type ANSI SQL. Which isn't compatible with most other platforms.
I've started working on this with the goal to release full multi-platform support with 1.8.
Didn't get around to it before releasing 1.8 (which was needed because of PHP7 compatibility).
But there is now a schema class which is used by DBUtil, which can be overloaded per driver type, so it is possible to implement this. I'll see if I can get around to doing this later.
I have created and configurate a SQLite database connection and want to run the migrations.
If I execute the migration with
env FUEL_ENV=test php oil refine migrate:current
I got this error:
If I excecuted the query directly in sqlite3 without the charset:
and the table was created. Something seems to be wrong with the charset.