Yesterday I wrote a how-to on doing MSSQL DataService in PHP. It was just about installing necessary PDO drivers and setting the following configurations about your Database.
// database configurations $config = array( "db" => "mssql", "username" => DB_USERNAME "password" => DB_PASSWORD "dbname" => DB_NAME, "dbhost" => DB_SERVER_NAME );
But when it comes to SQLite you don’t have such thing called database server, name, username or password. It is just a file in your computer. In this kind of situation you can directly use the PDO DSN (standards for Data Source Name) string to configure your database.
// giving my sqlite database file information $config = array( "dsn" => "sqlite2:mydbfile.db");
So this is all specific to SQLite. For the rest of the code, you don’t need to worry about the underlying database you use. Please read the blog about the PHP DataServices 2 Minutes Introduction for short guide on PHP data services in general.
Pingback: PHP Data Services with PostgreSQL | Dimuthu's Blog