Re: [sqlite] Re: [Linux + PHP] Recommended way to access SQLite?

2007-12-14 Thread Scott Baker
Kees Nuyt wrote:
>> So the options are:
>> 1. use the old SQLite2 sqlite_() functions (or some class that turns this 
>> into OO)
>> 2. PDO to use the SQLite3 linked-in library
>> 3. PDO to access the SQLite3 DLL
>>
>> ... with 2 being the recommended choice.
> 
> yes,
> - 2 for speed and reliability,
> - 3 if one needs the latest SQLite

I highly recommend PDO for any and all PHP database access that
needs doing. It's very full featured, fast, and easy to work with.
It's not worth learning the proprietary commands for PHP has for
each DBMS.

-- 
Scott Baker - Canby Telcom
RHCE - System Administrator - 503.266.8253

-
To unsubscribe, send email to [EMAIL PROTECTED]
-



Re: [sqlite] Re: [Linux + PHP] Recommended way to access SQLite?

2007-12-14 Thread Kees Nuyt
On Fri, 14 Dec 2007 03:15:17 +0100, Gilles Ganault
<[EMAIL PROTECTED]> wrote:

>On Mon, 10 Dec 2007 16:35:48 +0100, Kees Nuyt  <[EMAIL PROTECTED]> wrote:
> >So I activated php_pdo_sqlite_external instead and copied
> >sqlite3.dll v3.5.3 to %serverroot%/bin .
>
>Thanks for the infos.
>
>So the options are:
>1. use the old SQLite2 sqlite_() functions (or some class that turns this 
>into OO)
>2. PDO to use the SQLite3 linked-in library
>3. PDO to access the SQLite3 DLL
>
>... with 2 being the recommended choice.

yes,
- 2 for speed and reliability,
- 3 if one needs the latest SQLite
-- 
  (  Kees Nuyt
  )
c[_]

-
To unsubscribe, send email to [EMAIL PROTECTED]
-



[sqlite] Re: [Linux + PHP] Recommended way to access SQLite?

2007-12-13 Thread Gilles Ganault

On Mon, 10 Dec 2007 16:35:48 +0100, Kees Nuyt  <[EMAIL PROTECTED]> wrote:
>So I activated php_pdo_sqlite_external instead and copied
>sqlite3.dll v3.5.3 to %serverroot%/bin .

Thanks for the infos.

So the options are:
1. use the old SQLite2 sqlite_() functions (or some class that turns this 
into OO)

2. PDO to use the SQLite3 linked-in library
3. PDO to access the SQLite3 DLL

... with 2 being the recommended choice.


-
To unsubscribe, send email to [EMAIL PROTECTED]
-