|
Posted by Jeremy on 09/08/06 16:45
Frits van Leeuwen wrote:
> Hello,
>
> Is it posible to create and use a DB without MYSQL or SQL?
> My provider doesn't give me the posebillety to use MYSQL or SQL.
> Also I can't use ODBC.
>
> Frits
>
>
You can use SQLite. It's a database library that stores its data in any
file. If you use PDO, it's even a pretty seamless transition from
another database, as long as you're not relying on advanced features.
Here's the catch: it lacks strong type checking, foreign keys (although
these can be emulated with triggers for the most part) and some other
advanced database features.
More info:
<http://www.sqlite.org> - Website of SQLite
<http://www.php.net/sqlite> - PHP docs on SQLite functions
<http://www.php.net/pdo> - PHP docs on PDO (which has inbuilt SQLite
support)
Jeremy
Navigation:
[Reply to this message]
|