Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PHP simple text database with SQL syntax [closed]

I am looking for a simple text flat database that can work with the SQL-like instructions SELCT, INPUT, UPDATE, DELETE. There is a database that fully satisfies me, but it is for Perl - http://metacpan.org/pod/Sprite I need something like that, but PHP class. Thank you in advance!

like image 208
Ned Avatar asked Jan 26 '11 17:01

Ned


People also ask

Can PHP use SQL database?

PHP Connect to MySQL. PHP 5 and later can work with a MySQL database using: MySQLi extension (the "i" stands for improved) PDO (PHP Data Objects)


1 Answers

Use SQLite. It has a PHP class too here:
http://www.phpclasses.org/package/2107-PHP-SQLite-database-access-wrapper.html

like image 130
shamittomar Avatar answered Oct 06 '22 22:10

shamittomar