|
Description: This class is a mySQL database access wrapper
It provides methods for interracting with a mySQL database easily and securely
Some of the features include
- method that is an alias of PHP's native mysql_query() function with the main differences being that, if passed in a special way, parameters will be automatically escaped and that errors will be reported to the built-in debugger - the query() method
- shorthand methods for running queries that perform COUNT(), MAX() or SUM() queries - dcount(), dmax() and dsum() methods
- shorthand method for fast retrieval of data in individual rows or even specific items in individual rows - the dlookup() method
- method that is an alias of the PHP's native mysql_real_escape_string( ) function with the main difference being that this one will check if magic_quotes are on or not and escape (or not) accordingly - the escape_string() method
check homepage for more...
|