Re: [PHP-DEV] DB specific PDO subclasses questions.

2023-05-05 Thread Dan Ackroyd
On Tue, 7 Jun 2022 at 15:25, Philip Hofstetter wrote: > > On 6 Jun 2022 at 21:15:12, Dan Ackroyd wrote: >> >> 2. Other than the SQLite blobOpen functionality, does anyone know of >> any other functionality that is exposed by SQLite or Postgres that >> isn't currently exposed through the magic PDO

Re: [PHP-DEV] DB specific PDO subclasses questions.

2022-06-07 Thread Michał Marcin Brzuchalski
Hi Dan, pon., 6 cze 2022 o 21:15 Dan Ackroyd napisał(a): > Hi, > > I'm looking at making an RFC for subclassing PDO to expose database > specific methods in a less magic way, aka implementing what was > discussed here: https://externals.io/message/100773#100813 > > I have two questions for peopl

Re: [PHP-DEV] DB specific PDO subclasses questions.

2022-06-07 Thread Philip Hofstetter
Hi, On 6 Jun 2022 at 21:15:12, Dan Ackroyd wrote: > > 2. Other than the SQLite blobOpen functionality, does anyone know of > any other functionality that is exposed by SQLite or Postgres that > isn't currently exposed through the magic PDO methods? > a wrapper around PQescapeIdentifier in lib

Re: [PHP-DEV] DB specific PDO subclasses questions.

2022-06-06 Thread Dan Ackroyd
On Mon, 6 Jun 2022 at 22:10, Benjamin Morel wrote: > > Hi, what about the ability to load an extension on SQLite? > https://bugs.php.net/bug.php?id=64810 > Basically the equivalent of SQLite3::loadExtension() Thanks, that's exactly the type of thing that should be looked at being added. > [2014

Re: [PHP-DEV] DB specific PDO subclasses questions.

2022-06-06 Thread Benjamin Morel
On Mon, 6 Jun 2022 at 21:15, Dan Ackroyd wrote: 2. Other than the SQLite blobOpen functionality, does anyone know of > any other functionality that is exposed by SQLite or Postgres that > isn't currently exposed through the magic PDO methods? > Hi, what about the ability to load an extension on