Skip navigation links
B C D E G H I J M P Q R S T U V 

B

bulkInsert(String, String, List<Map<String, Object>>) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
bulkInsert(String, String, List<Map<String, Object>>) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
INSERT INTO DEVICE (DID, TYPE, ONLINE) VALUES ('aaa', 'xxx', 1), ('bbb', 'xxx', 1);
bulkUpsert(String, String, String, List<Map<String, Object>>) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
bulkUpsert(String, String, String, List<Map<String, Object>>) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
INSERT INTO DEVICE (DID, TYPE, ONLINE) VALUES ('aaa', 'xxx', 1), ('bbb', 'xxx', 1) ON DUPLICATE KEY UPDATE DID=VALUES(DID), TYPE=VALUES(TYPE), ONLINE=VALUES(ONLINE);

C

close() - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
close() - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec - package cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec
 
cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl - package cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl
 
cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2 - package cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2
 
cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef - package cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef
 
cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl - package cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl
 
cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2 - package cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2
 
cn.geekcity.xiot.support.vertx.database.h2 - package cn.geekcity.xiot.support.vertx.database.h2
 
cn.geekcity.xiot.support.vertx.database.helper - package cn.geekcity.xiot.support.vertx.database.helper
 
cn.geekcity.xiot.support.vertx.database.proxy - package cn.geekcity.xiot.support.vertx.database.proxy
 
cn.geekcity.xiot.support.vertx.database.proxy.impl - package cn.geekcity.xiot.support.vertx.database.proxy.impl
 
cn.geekcity.xiot.support.vertx.database.utils - package cn.geekcity.xiot.support.vertx.database.utils
 
count(String, String) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
count(String, String, String, String[]) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
count(String, String) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
count(String, String, String, String[]) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
create(Vertx, JsonObject) - Static method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
createTables(Vertx, JsonObject, Map<String, String>) - Static method in class cn.geekcity.xiot.support.vertx.database.helper.DatabaseHelper
 

D

database() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2.JdbcConfigurationH2RemoteImpl
 
database() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.JdbcConfigurationMySqlImpl
 
DatabaseHelper - Class in cn.geekcity.xiot.support.vertx.database.helper
 
DatabaseProxy - Interface in cn.geekcity.xiot.support.vertx.database.proxy
 
DatabaseProxyHolder - Class in cn.geekcity.xiot.support.vertx.database.proxy
 
DatabaseProxyJdbcImpl - Class in cn.geekcity.xiot.support.vertx.database.proxy.impl
 
DatabaseProxyJdbcImpl(Vertx, JsonObject) - Constructor for class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
DatabaseValues - Class in cn.geekcity.xiot.support.vertx.database.proxy
 
decode(String[], JsonObject) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2.JdbcConfigurationH2EmbeddedImplCodec
 
decode(String[], JsonObject) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2.JdbcConfigurationH2RemoteImplCodec
 
decode(String, JsonObject) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.JdbcConfigurationH2ImplCodec
 
decode(String, JsonObject) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.JdbcConfigurationMysqlImplCodec
 
decode(JsonObject) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.JdbcConfigurationCodec
 
decode(String, JsonObject) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.JdbcConfigurationCodec
 
DEFAULT_DB_FILE - Static variable in class cn.geekcity.xiot.support.vertx.database.h2.H2embedded
 
delete(String, String) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
delete(String, String, String, String[]) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
delete(String, String) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
DELETE FROM DEVICE
delete(String, String, String, String[]) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
deleteTables(Vertx, JsonObject, Collection<String>) - Static method in class cn.geekcity.xiot.support.vertx.database.helper.DatabaseHelper
 
DRIVER - Static variable in class cn.geekcity.xiot.support.vertx.database.h2.H2embedded
 

E

encode(JdbcConfigurationH2Impl) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2.JdbcConfigurationH2EmbeddedImplCodec
 
encode(JdbcConfigurationH2Impl) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2.JdbcConfigurationH2RemoteImplCodec
 
encode(JdbcConfigurationH2Impl) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.JdbcConfigurationH2ImplCodec
 
encode(JdbcConfigurationMySqlImpl) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.JdbcConfigurationMysqlImplCodec
 
encode(JdbcConfiguration) - Static method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.JdbcConfigurationCodec
 
execSQL(String, String) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
execSQL(String, String) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
exists(String, String) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
exists(String, String) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 

G

get(String) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxyHolder
 
getInstance() - Static method in class cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxyHolder
 
getInteger(Map<String, Object>, String, int) - Static method in class cn.geekcity.xiot.support.vertx.database.proxy.DatabaseValues
 
getJsonArray(Map<String, Object>, String, JsonArray) - Static method in class cn.geekcity.xiot.support.vertx.database.proxy.DatabaseValues
 
getJsonObject(Map<String, Object>, String, JsonObject) - Static method in class cn.geekcity.xiot.support.vertx.database.proxy.DatabaseValues
 
getLocalDateTime(Map<String, Object>, String, LocalDateTime) - Static method in class cn.geekcity.xiot.support.vertx.database.proxy.DatabaseValues
 
getLong(Map<String, Object>, String, long) - Static method in class cn.geekcity.xiot.support.vertx.database.proxy.DatabaseValues
 
getString(Map<String, Object>, String, String) - Static method in class cn.geekcity.xiot.support.vertx.database.proxy.DatabaseValues
 
getType(JsonObject) - Static method in class cn.geekcity.xiot.support.vertx.database.helper.JdbcTypeHelper
 
getType(String) - Static method in class cn.geekcity.xiot.support.vertx.database.helper.JdbcTypeHelper
 

H

H2embedded - Class in cn.geekcity.xiot.support.vertx.database.h2
 
H2embedded() - Constructor for class cn.geekcity.xiot.support.vertx.database.h2.H2embedded
 
host() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2.JdbcConfigurationH2RemoteImpl
 
host() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.JdbcConfigurationMySqlImpl
 

I

initialize() - Static method in class cn.geekcity.xiot.support.vertx.database.h2.H2embedded
 
insert(String, String, Map<String, Object>) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
insert(String, String, Map<String, Object>) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
INSERT INTO DEVICE (DID, TYPE, ONLINE) VALUES ('aaa', 'xxx', 1);

J

JdbcConfiguration - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef
 
JdbcConfiguration(JsonObject) - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.JdbcConfiguration
 
JdbcConfigurationCodec - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec
 
JdbcConfigurationCodec() - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.JdbcConfigurationCodec
 
JdbcConfigurationH2EmbeddedImpl - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2
 
JdbcConfigurationH2EmbeddedImpl(JsonObject, String, String) - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2.JdbcConfigurationH2EmbeddedImpl
 
JdbcConfigurationH2EmbeddedImplCodec - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2
 
JdbcConfigurationH2EmbeddedImplCodec() - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2.JdbcConfigurationH2EmbeddedImplCodec
 
JdbcConfigurationH2Impl - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl
 
JdbcConfigurationH2Impl(JsonObject, String) - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.JdbcConfigurationH2Impl
 
JdbcConfigurationH2ImplCodec - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl
 
JdbcConfigurationH2ImplCodec() - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.JdbcConfigurationH2ImplCodec
 
JdbcConfigurationH2RemoteImpl - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2
 
JdbcConfigurationH2RemoteImpl(JsonObject, String, String, int, String) - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2.JdbcConfigurationH2RemoteImpl
 
JdbcConfigurationH2RemoteImplCodec - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2
 
JdbcConfigurationH2RemoteImplCodec() - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.h2.JdbcConfigurationH2RemoteImplCodec
 
JdbcConfigurationMySqlImpl - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl
 
JdbcConfigurationMySqlImpl(String, int, String, JsonObject) - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.JdbcConfigurationMySqlImpl
 
JdbcConfigurationMysqlImplCodec - Class in cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl
 
JdbcConfigurationMysqlImplCodec() - Constructor for class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.codec.impl.JdbcConfigurationMysqlImplCodec
 
JdbcTypeHelper - Class in cn.geekcity.xiot.support.vertx.database.helper
 
JdbcTypeHelper() - Constructor for class cn.geekcity.xiot.support.vertx.database.helper.JdbcTypeHelper
 
join(CharSequence, String[]) - Static method in class cn.geekcity.xiot.support.vertx.database.utils.StringUtils
 
join(CharSequence, Iterable<? extends CharSequence>) - Static method in class cn.geekcity.xiot.support.vertx.database.utils.StringUtils
 

M

makePlaceholders(int) - Static method in class cn.geekcity.xiot.support.vertx.database.utils.StringUtils
 
mode() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.JdbcConfigurationH2Impl
 

P

path() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2.JdbcConfigurationH2EmbeddedImpl
 
port() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.h2.JdbcConfigurationH2RemoteImpl
 
port() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.JdbcConfigurationMySqlImpl
 
PROTOCOL - Static variable in class cn.geekcity.xiot.support.vertx.database.h2.H2embedded
 
put(String, DatabaseProxy) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxyHolder
 

Q

query(String, String, String[]) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
query(String, String, String[], String, String[]) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
query(String, String, String[]) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
SELECT (DID, TYPE, ONLINE) FROM DEVICE;
query(String, String, String[], String, String[]) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
queryOne(String, String, String[], String, String[]) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
queryOne(String, String, String[], String, String[]) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 

R

rawQuery(String, String, String[]) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
rawQuery(String, String, String[]) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
rawQueryOne(String, String, String[]) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
rawQueryOne(String, String, String[]) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 

S

StringUtils - Class in cn.geekcity.xiot.support.vertx.database.utils
 
StringUtils() - Constructor for class cn.geekcity.xiot.support.vertx.database.utils.StringUtils
 

T

toHexString(int, int) - Static method in class cn.geekcity.xiot.support.vertx.database.utils.StringUtils
 
type() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.JdbcConfigurationH2Impl
 
type() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.impl.JdbcConfigurationMySqlImpl
 
type() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.JdbcConfiguration
 

U

update(String, String, Map<String, Object>) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
update(String, String, Map<String, Object>, String, String[]) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
update(String, String, Map<String, Object>) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
update(String, String, Map<String, Object>, String, String[]) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
 
upsert(String, String, String, Map<String, Object>) - Method in interface cn.geekcity.xiot.support.vertx.database.proxy.DatabaseProxy
 
upsert(String, String, String, Map<String, Object>) - Method in class cn.geekcity.xiot.support.vertx.database.proxy.impl.DatabaseProxyJdbcImpl
INSERT INTO device_summary (did, type, online, accesspoint, bridge, timestamp) VALUES (?, ?, ?, ?, ?, ?) ON DUPLICATE KEY UPDATE type=VALUES(type), online=VALUES(online), accesspoint=VALUES(accesspoint), bridge=VALUES(bridge), timestamp=VALUES(timestamp);

V

value() - Method in class cn.geekcity.xiot.support.vertx.database.configuration.jdbc.typedef.JdbcConfiguration
 
B C D E G H I J M P Q R S T U V 
Skip navigation links