SQLite extension --> SQLiteDatabase

Issue #99 wontfix
Former user created an issue

Originally reported on Google Code with ID 99 ``` What steps will reproduce the problem? 1. Create a database 2. 3.

What is the expected output? What do you see instead? When I create a new database on my ANDROID (ksweb), the SQLite extension is : PDO. When I create a new database on my PC (easyPHP), the SQLite extension is : SQLiteDatabase How can I use SQLiteDatabase and not PDO on my Tablet ?

What version of the product are you using? On what operating system? EASYPHP on WINDOWS XP KSWEB on ANDROID

Thanks Please provide any additional information below.

```

Reported by `contact@eregroupe.com` on 2012-04-24 14:10:59

Comments (2)

  1. Christopher Kramer

    ``` Why would you want to use SQLiteDatabase if PDO is available?

    Just for clarification: SQLiteDatabase is PHP's SQLite extension for old SQLite databases (version 2). SQLiteDatabase3 is the new version for SQLite databases version 3. And PDO is an interface for both versions 8along with many other databases).

    Normally, PDO is fine in any case when it is installed.

    You might use "FORCETYPE" constant to force some extension. But I do not recommend this in your case.

    Please clarify why you do not want to use PDO. ```

    Reported by `crazy4chrissi` on 2012-05-30 17:15:00

  2. Christopher Kramer

    ``` The reporter did not explain why he would want SQLiteDatase if PDO is available, so I see no point in this issue. ```

    Reported by `crazy4chrissi` on 2012-10-06 22:46:35 - Status changed: `WontFix`

  3. Log in to comment