public class TSDBDriver extends AbstractDriver
The DriverManager will try to load as many drivers as it can find and then for any given connection request, it will ask each driver in turn to try to connect to the target URL.
It is strongly recommended that each Driver class should be small and stand alone so that the Driver class can be loaded and queried without bringing in vast quantities of supporting code.
When a Driver class is loaded, it should create an instance of itself and register it with the DriverManager. This means that a user can load and register a driver by doing Class.forName("foo.bah.Driver")
| 限定符和类型 | 字段和说明 |
|---|---|
static String |
PROPERTY_KEY_BATCH_ERROR_IGNORE
continue process commands in executeBatch
|
static String |
PROPERTY_KEY_BATCH_LOAD
fetch data from native function in a batch model
|
static String |
PROPERTY_KEY_CHARSET
Key for the char encoding used by the TSDB client in properties instance
|
static String |
PROPERTY_KEY_CONFIG_DIR
Key for the configuration file directory of TSDB client in properties instance
|
static String |
PROPERTY_KEY_DBNAME
Key used to retrieve the database value from the properties instance passed
to the driver.
|
static String |
PROPERTY_KEY_HOST
Key used to retrieve the host value from the properties instance passed to
the driver.
|
static String |
PROPERTY_KEY_LOCALE
Key for the locale used by the TSDB client in properties instance
|
static String |
PROPERTY_KEY_PASSWORD
Key used to retrieve the password value from the properties instance passed
to the driver.
|
static String |
PROPERTY_KEY_PORT
Key used to retrieve the port number value from the properties instance
passed to the driver.
|
static String |
PROPERTY_KEY_PRODUCT_NAME
PRODUCT_NAME
|
static String |
PROPERTY_KEY_TIME_ZONE
Key for the timezone used by the TSDB client in properties instance
|
static String |
PROPERTY_KEY_TIMESTAMP_FORMAT
timestamp format for JDBC-RESTful,should one of the options: string or timestamp or utc
|
static String |
PROPERTY_KEY_USER
Key used to retrieve the user value from the properties instance passed to
the driver.
|
| 构造器和说明 |
|---|
TSDBDriver() |
| 限定符和类型 | 方法和说明 |
|---|---|
boolean |
acceptsURL(String url) |
Connection |
connect(String url,
Properties info) |
int |
getMajorVersion() |
int |
getMinorVersion() |
Logger |
getParentLogger() |
DriverPropertyInfo[] |
getPropertyInfo(String url,
Properties info) |
boolean |
jdbcCompliant() |
Properties |
parseURL(String url,
Properties defaults)
example: jdbc:TAOS://127.0.0.1:0/db?
|
getPropertyInfopublic static final String PROPERTY_KEY_PRODUCT_NAME
public static final String PROPERTY_KEY_HOST
public static final String PROPERTY_KEY_PORT
public static final String PROPERTY_KEY_DBNAME
public static final String PROPERTY_KEY_USER
public static final String PROPERTY_KEY_PASSWORD
public static final String PROPERTY_KEY_CONFIG_DIR
public static final String PROPERTY_KEY_TIME_ZONE
public static final String PROPERTY_KEY_LOCALE
public static final String PROPERTY_KEY_CHARSET
public static final String PROPERTY_KEY_BATCH_LOAD
public static final String PROPERTY_KEY_TIMESTAMP_FORMAT
public Connection connect(String url, Properties info) throws SQLException
SQLExceptionpublic boolean acceptsURL(String url) throws SQLException
url - the URL of the databasetrue if this driver understands the given URL;
false otherwiseSQLException - if a database access error occurs or the url is nullpublic DriverPropertyInfo[] getPropertyInfo(String url, Properties info) throws SQLException
SQLExceptionpublic Properties parseURL(String url, Properties defaults)
parseURL 在类中 AbstractDriverpublic int getMajorVersion()
public int getMinorVersion()
public boolean jdbcCompliant()
public Logger getParentLogger()
Copyright © 2021. All rights reserved.