Re: [PHP-DEV] Loading SQLite extensions on PDO

2023-01-20 Thread Dan Ackroyd
Hi Juris, On Fri, 20 Jan 2023 at 14:26, Juris Evertovskis wrote: > > Hey, internals! > > As many before me, I have come accross a need to load a SQLite extension. > > - The community does not want a new driver-specific `loadExtension` method > on the PDO class (there are some historical driver-s

[PHP-DEV] Loading SQLite extensions on PDO

2023-01-20 Thread Juris Evertovskis
Hey, internals! As many before me, I have come accross a need to load a SQLite extension. While it is supported on the SQLite3 interface, popular frameworks (namely Laravel) use solely PDO and loading extensions is not available on PDO. I've looked into the history of this issue and it seems tha