-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmulateConnections.java_bak
50 lines (33 loc) · 1.07 KB
/
EmulateConnections.java_bak
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import java.sql.DriverManager;
import java.sql.Connection;
import java.sql.SQLException;
public class EmulateConnections {
public static void main(String[] argv) {
System.out.println("-------- Teradata Database "
+ "JDBC Connection Testing ------------");
try {
Class.forName("com.teradata.jdbc.TeraDriver");
} catch (ClassNotFoundException e) {
System.out.println("Where is your Teradata Database JDBC Driver? "
+ "Include in your library path!");
e.printStackTrace();
return;
}
System.out.println("Teradata Database JDBC Driver Registered!");
Connection connection = null;
try {
connection = DriverManager.getConnection(
"jdbc:teradata://localhost", "dbc",
"dbc");
} catch (SQLException e) {
System.out.println("Connection Failed! Check output console");
e.printStackTrace();
return;
}
if (connection != null) {
System.out.println("You made it, take control your database now!");
} else {
System.out.println("Failed to make connection!");
}
}
}