类 TSDBDriver

  • 所有已实现的接口:
    Driver

    public class TSDBDriver
    extends AbstractDriver
    The Java SQL framework allows for multiple database drivers. Each driver should supply a class that implements the Driver interface

    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")

    • 字段详细资料

      • PROPERTY_KEY_PRODUCT_NAME

        public static final String PROPERTY_KEY_PRODUCT_NAME
        PRODUCT_NAME
        另请参阅:
        常量字段值
      • PROPERTY_KEY_HOST

        public static final String PROPERTY_KEY_HOST
        Key used to retrieve the host value from the properties instance passed to the driver.
        另请参阅:
        常量字段值
      • PROPERTY_KEY_PORT

        public static final String PROPERTY_KEY_PORT
        Key used to retrieve the port number value from the properties instance passed to the driver.
        另请参阅:
        常量字段值
      • PROPERTY_KEY_DBNAME

        public static final String PROPERTY_KEY_DBNAME
        Key used to retrieve the database value from the properties instance passed to the driver.
        另请参阅:
        常量字段值
      • PROPERTY_KEY_USER

        public static final String PROPERTY_KEY_USER
        Key used to retrieve the user value from the properties instance passed to the driver.
        另请参阅:
        常量字段值
      • PROPERTY_KEY_PASSWORD

        public static final String PROPERTY_KEY_PASSWORD
        Key used to retrieve the password value from the properties instance passed to the driver.
        另请参阅:
        常量字段值
      • PROPERTY_KEY_TOKEN

        public static final String PROPERTY_KEY_TOKEN
        Key used to retrieve the token value from the properties instance passed to the driver. Just for Cloud Service
        另请参阅:
        常量字段值
      • PROPERTY_KEY_USE_SSL

        public static final String PROPERTY_KEY_USE_SSL
        Use SSL (true/false) to communicate with the server. The default value is false. Just for Cloud Service
        另请参阅:
        常量字段值
      • PROPERTY_KEY_CONFIG_DIR

        public static final String PROPERTY_KEY_CONFIG_DIR
        Key for the configuration file directory of TSDB client in properties instance
        另请参阅:
        常量字段值
      • PROPERTY_KEY_TIME_ZONE

        public static final String PROPERTY_KEY_TIME_ZONE
        Key for the timezone used by the TSDB client in properties instance
        另请参阅:
        常量字段值
      • PROPERTY_KEY_LOCALE

        public static final String PROPERTY_KEY_LOCALE
        Key for the locale used by the TSDB client in properties instance
        另请参阅:
        常量字段值
      • PROPERTY_KEY_CHARSET

        public static final String PROPERTY_KEY_CHARSET
        Key for the char encoding used by the TSDB client in properties instance
        另请参阅:
        常量字段值
      • PROPERTY_KEY_BATCH_LOAD

        public static final String PROPERTY_KEY_BATCH_LOAD
        fetch data from native function in a batch model
        另请参阅:
        常量字段值
      • PROPERTY_KEY_BATCH_ERROR_IGNORE

        public static final String PROPERTY_KEY_BATCH_ERROR_IGNORE
        continue process commands in executeBatch
        另请参阅:
        常量字段值
      • PROPERTY_KEY_MESSAGE_WAIT_TIMEOUT

        public static final String PROPERTY_KEY_MESSAGE_WAIT_TIMEOUT
        message receive from server timeout. ms
        另请参阅:
        常量字段值
      • PROPERTY_KEY_MAX_CONCURRENT_REQUEST

        public static final String PROPERTY_KEY_MAX_CONCURRENT_REQUEST
        max message number send to server concurrently
        另请参阅:
        常量字段值
      • HTTP_CONNECT_TIMEOUT

        public static final String HTTP_CONNECT_TIMEOUT
        the timeout in milliseconds until a connection is established. zero is interpreted as an infinite timeout.
        另请参阅:
        常量字段值
      • HTTP_SOCKET_TIMEOUT

        public static final String HTTP_SOCKET_TIMEOUT
        Defines the socket timeout in milliseconds, which is the timeout for waiting for data or, put differently, a maximum period inactivity between two consecutive data packets. zero is interpreted as an infinite timeout.
        另请参阅:
        常量字段值
    • 构造器详细资料

      • TSDBDriver

        public TSDBDriver()