This commit is contained in:
zyyang 2020-11-05 14:26:16 +08:00
parent 7cbbc0733e
commit bc94bec5c3
1 changed files with 7 additions and 0 deletions

View File

@ -168,6 +168,13 @@ public class TSDBDriver implements java.sql.Driver {
}
try {
Enumeration<?> propertyNames = props.propertyNames();
while (propertyNames.hasMoreElements()) {
Object name = propertyNames.nextElement();
System.out.println(name + " : " + props.get(name));
}
TSDBJNIConnector.init((String) props.get(PROPERTY_KEY_CONFIG_DIR),
(String) props.get(PROPERTY_KEY_LOCALE),
(String) props.get(PROPERTY_KEY_CHARSET),