This commit is contained in:
zyyang 2021-01-05 14:58:11 +08:00
parent 2406b9d609
commit 92a7bd4601
1 changed files with 18 additions and 4 deletions

View File

@ -5,6 +5,7 @@ import java.util.Properties;
public class JDBCDemo {
private static String host;
private static String driverType;
private static final String dbName = "test";
private static final String tbName = "weather";
private Connection connection;
@ -13,11 +14,15 @@ public class JDBCDemo {
for (int i = 0; i < args.length; i++) {
if ("-host".equalsIgnoreCase(args[i]) && i < args.length - 1)
host = args[++i];
if ("-driverType".equalsIgnoreCase(args[i]) && i < args.length - 1) {
driverType = args[++i];
if (!"jni".equalsIgnoreCase(driverType) || !"restful".equalsIgnoreCase(driverType))
printHelp();
}
}
if (host == null) {
System.out.println("Usage: java -jar JdbcDemo.jar -host <hostname>");
return;
if (host == null || driverType == null) {
printHelp();
}
JDBCDemo demo = new JDBCDemo();
@ -35,7 +40,11 @@ public class JDBCDemo {
private void init() {
// get connection
try {
if (driverType.equals("jni")) {
Class.forName("com.taosdata.jdbc.TSDBDriver");
} else {
Class.forName("com.taosdata.jdbc.rs.RestfulDriver");
}
Properties properties = new Properties();
properties.setProperty("host", host);
properties.setProperty("charset", "UTF-8");
@ -131,5 +140,10 @@ public class JDBCDemo {
exuete(sql);
}
private static void printHelp() {
System.out.println("Usage: java -jar JdbcDemo.jar -host <hostname> -driverType <jni|restful>");
System.exit(0);
}
}