|
|
MySQL
MySQL
MySQL is an easy to use and low level Database user interface. MySQL is commonly useful as:
Customer Database
Customer records
Dynamic information
Small Query Database
and More..
MySQL is accessed by calling it using code that looks something like this:
Perl and PHP
$dbh = DBI->connect("DBI:mysql:user_database:localhost","user_database","PASSWORD");
$dbh=mysql_connect ("localhost", "user_database", "PASSWORD") or die ('I cannot connect to the database.');
mysql_select_db ("user_database");
|
|
|