change again

This commit is contained in:
zyyang 2020-11-04 14:23:42 +08:00
parent 8a1c2b240a
commit e7bb764bd3
1 changed files with 17 additions and 13 deletions

View File

@ -1,6 +1,5 @@
package com.taosdata.jdbc;
import org.junit.Before;
import org.junit.BeforeClass;
import org.junit.Test;
@ -30,22 +29,27 @@ public class TSDBDriverTest {
@BeforeClass
public static void before() {
String osName = System.getProperty("os.name").toLowerCase();
String libPath = null;
switch (osName) {
case "linux":
libPath = "/usr/lib/libtaos.so";
break;
case "windows":
libPath = "C:\\TDengine\\driver\\taos.dll";
break;
default:
}
if (libPath == null)
if (!osName.equals("linux") && !osName.equals("windows")) {
islibLoaded = false;
return;
}
// String libPath = null;
// switch (osName) {
// case "linux":
// libPath = "/usr/lib/libtaos.so";
// break;
// case "windows":
// libPath = "C:\\TDengine\\driver\\taos.dll";
// break;
// default:
// }
// if (libPath == null)
// return;
try {
System.loadLibrary(libPath);
System.loadLibrary("taos");
islibLoaded = true;
} catch (UnsatisfiedLinkError error) {
System.out.println("load tdengine lib failed.");
islibLoaded = false;
}
}