Hi
Somebody has a example connection with Oracle or SqlServer ?
Where can I download Drivers to SqlServer and Oracle ?
thank you in advance
Printable View
Hi
Somebody has a example connection with Oracle or SqlServer ?
Where can I download Drivers to SqlServer and Oracle ?
thank you in advance
This isn't quite what you're looking for (it's mysql), but it might help you get to where you're going.
cudabean
Code:import java.sql.*;
try {
Connection conn = DriverManager.getConnection("jdbc:mysql://localhost/" + DBName +
"?user=" + DBUser + "&password=" + DBPassword);
}
catch (SQLException e) {
System.out.println("SQLException: " + e.getMessage());
System.out.println("SQLState: " + e.getSQLState());
System.out.println("VendorError: " + e.getErrorCode());
}