Jump to content

[Solved] Please Approve My Web


myskillz

Recommended Posts

i have tried testing the access of the database but i still can't, the DriverManager has a problem could u unable it? im using these following codes

 

 

<%@page import="java.sql.*" %>

<%

String mysql_database = "myskill_mmmmm";

String mysql_username = "myskill_lllll";

String mysql_password = "bbbbb";

Class.forName("com.mysql.jdbc.Driver");

Connection connection = DriverManager.getConnection(

"jdbc:mysqli://127.0.0.1/" + mysql_database,

mysql_username,

mysql_password

);

Statement statement = connection.createStatement();

ResultSet result = statement.executeQuery("SELECT * FROM users");

while (result.next()) {

%>

<%= result.getString("up_name") %>: <%= result.getString("up_category") %><br/>

<% } %>

 

the problem is the driver when i tried to remove this

--------------------------------

Class.forName("com.mysql.jdbc.Driver");

-------------------------

the problem re appear , plz help

Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • Create New...