wyqydsyq
wyqydsyq

Reputation: 2020

sqlite3 in CodeIgniter?

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

Answers (1)

muncherelli
muncherelli

Reputation: 2903

No. You can't implement a core change to a database driver. There's no way around modifying /system.

Upvotes: 1

Related Questions