Need help on MYSQL setup error
Hi I have a problem with MySQL database. I created a MySQL DB, after I added a user to the DB it was created.. but it shows a chunk of msg which look like some error to me. Could someone tell me what does it means?Those in ***** is my DB name and username.
---------------------------------------------------------------------------
Connection Strings
Perl $dbh = DBI->connect("DBI:mysql:*****:localhost","*****","<PASSWORD HERE>");
PHP $dbh=mysql_connect ("localhost", "*****", "<PASSWORD HERE>") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("*****");
JDBC (may not be available) <%@ page import="java.sql.*" %>
Connection connection = null;
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
connection = DriverManager.getConnection(
"jdbc:mysql://localhost/*****?user=*****&password=<PASSWORD HERE>");
------------------------------------------------------------------------------