change
This commit is contained in:
parent
7cbbc0733e
commit
bc94bec5c3
|
@ -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),
|
||||
|
|
Loading…
Reference in New Issue