Reputation: 2020
Is there any way to use sqlite3 with CI? I've previously used the sqlite3 pdo drivers, which had to manually be installed to the /system/database/drivers
folder, but I was hoping there's another way to do it without altering the /system
folder (which is generally a bad idea because you'll lose your changes when you update CI, which I'm going through right now)
Upvotes: 0
Views: 768
Reputation: 2903
No. You can't implement a core change to a database driver. There's no way around modifying /system.
Upvotes: 1