This commit is contained in:
zyyang 2021-01-05 15:03:55 +08:00
parent 92a7bd4601
commit fa6bf4d3e7
1 changed files with 4 additions and 4 deletions

View File

@ -16,7 +16,7 @@ public class JDBCDemo {
host = args[++i]; host = args[++i];
if ("-driverType".equalsIgnoreCase(args[i]) && i < args.length - 1) { if ("-driverType".equalsIgnoreCase(args[i]) && i < args.length - 1) {
driverType = args[++i]; driverType = args[++i];
if (!"jni".equalsIgnoreCase(driverType) || !"restful".equalsIgnoreCase(driverType)) if (!"jni".equalsIgnoreCase(driverType) && !"restful".equalsIgnoreCase(driverType))
printHelp(); printHelp();
} }
} }
@ -40,10 +40,10 @@ public class JDBCDemo {
private void init() { private void init() {
// get connection // get connection
try { try {
if (driverType.equals("jni")) { if (driverType.equals("restful")) {
Class.forName("com.taosdata.jdbc.TSDBDriver");
} else {
Class.forName("com.taosdata.jdbc.rs.RestfulDriver"); Class.forName("com.taosdata.jdbc.rs.RestfulDriver");
} else {
Class.forName("com.taosdata.jdbc.TSDBDriver");
} }
Properties properties = new Properties(); Properties properties = new Properties();
properties.setProperty("host", host); properties.setProperty("host", host);