MySqli Class

Hi,

Can anyone suggest me a good open source class which uses functions such as Insert, update using MySqli ?

Thanks

I agree 100% with the182guy, creating your own small extension would be a lot faster and more efficient then using a 3rd party script. Have a look at the following page for an easy solution to extending the MySQLi class PHP: mysqli::__construct - Manual

Why do you need a wrapper? MySQLi is easy enough to use. If you need specific added functions then why not just extend MySQLi yourself?

Thanks for your reply,

Basically, i am looking for wrapper class for MySqli.

Does anyone here has used such kind of class ?

Please Suggest.

Thanks

Are you looking for an ORM such as Doctrine perhaps? Your question is confusing because the inbuilt mysqli class is fully capable of executing SQL statments of any type for you, though I’ll echo Anthony’s suggestion to use PDO instead of it since PDO is less database specific.

PHP’s PDO

You don’t need any 3rd party classes as such because MySQLi in PHP is a class, see the following link.

PHP: Mysqli - Manual