Uses of Class
com.mrivanplays.sqlhelper.ConnectionType
-
Packages that use ConnectionType Package Description com.mrivanplays.sqlhelper -
-
Uses of ConnectionType in com.mrivanplays.sqlhelper
Fields in com.mrivanplays.sqlhelper declared as ConnectionType Modifier and Type Field Description static ConnectionType
ConnectionType. MARIADB
Connection type: MariaDB ; for connecting to mariadb servers.static ConnectionType
ConnectionType. MYSQL
Connection type: MySQL ; for connecting to mysql servers.static ConnectionType
ConnectionType. POSTGRESQL
Connection type: PostgreSQL ; for connecting to postgresql servers.Methods in com.mrivanplays.sqlhelper that return ConnectionType Modifier and Type Method Description static ConnectionType[]
ConnectionType. defaultValues()
Returns the default values as an array.ConnectionType
ConnectionConfig. getConnectionType()
Returns the connection type, which we're gonna attempt to connect with.Methods in com.mrivanplays.sqlhelper that return types with arguments of type ConnectionType Modifier and Type Method Description Set<ConnectionType>
SQLHelper. getKnownConnectionTypes()
Returns an unmodifiableSet
, containing all knownConnectionTypes
Methods in com.mrivanplays.sqlhelper with parameters of type ConnectionType Modifier and Type Method Description boolean
SQLHelper. isRegistered(ConnectionType connectionType)
Returns whenever the specifiedConnectionType
is already registered.void
SQLHelper. registerConnectionFactory(ConnectionType connectionType, SQLConnectionFactory connectionFactory)
Registers a new connection factoryvoid
ConnectionConfig. setConnectionType(ConnectionType connectionType)
Sets a new connection typeConstructors in com.mrivanplays.sqlhelper with parameters of type ConnectionType Constructor Description ConnectionConfig(ConnectionType connectionType, String ip, int port, String databaseName, String username, String password)
-