Reliable, Affordable Web Hosting Services

Web Hosting by India's Top Listed Web Hosting Company. Our Web Hosting Plans are featured by PHP, ASP.NET3.5, MS SQL Server 2005/2008
Our Web Hosting Plans are featured by PHP, ASP.NET3.5, MS SQL Server 2005/2008

Frequently Asked Question

FAQ / JSP Hosting

Connecting to mysql using JSP

Connecting to mysql

We can connect to mysql using JDBC.

You can use the following code to connect to mysql in Jsp/Java

<%@ page import="java.sql.*" %>
Connection connection = null;
Class.forName("org.gjt.mm.mysql.Driver").newInstance();
connection = DriverManager.getConnection("jdbc:mysql://localhost/?user=&password=");