Uses of Interface
com.mrivanplays.sqlhelper.connection.SQLConnectionFactory
-
Packages that use SQLConnectionFactory Package Description com.mrivanplays.sqlhelper com.mrivanplays.sqlhelper.connection.implementation com.mrivanplays.sqlhelper.statement -
-
Uses of SQLConnectionFactory in com.mrivanplays.sqlhelper
Methods in com.mrivanplays.sqlhelper that return SQLConnectionFactory Modifier and Type Method Description SQLConnectionFactory
SQLHelper. getConnectionFactory()
Returns theSQLConnectionFactory
, which corresponds to the specifiedConnectionType
Methods in com.mrivanplays.sqlhelper with parameters of type SQLConnectionFactory Modifier and Type Method Description void
SQLHelper. registerConnectionFactory(ConnectionType connectionType, SQLConnectionFactory connectionFactory)
Registers a new connection factory -
Uses of SQLConnectionFactory in com.mrivanplays.sqlhelper.connection.implementation
Classes in com.mrivanplays.sqlhelper.connection.implementation that implement SQLConnectionFactory Modifier and Type Class Description class
HikariConnectionFactory
class
MariaDBConnectionFactory
class
MySQLConnectionFactory
class
PostgreSQLConnectionFactory
-
Uses of SQLConnectionFactory in com.mrivanplays.sqlhelper.statement
Constructors in com.mrivanplays.sqlhelper.statement with parameters of type SQLConnectionFactory Constructor Description AlterStatement(SQLConnectionFactory connectionFactory, Executor async)
CreateStatement(SQLConnectionFactory connectionFactory, Executor async)
DeleteStatement(SQLConnectionFactory connectionFactory, Executor async)
DropStatement(SQLConnectionFactory connectionFactory, Executor async)
InsertStatement(SQLConnectionFactory connectionFactory, Executor async)
SelectStatement(SQLConnectionFactory connectionFactory, Executor async)
TruncateStatement(SQLConnectionFactory connectionFactory, Executor async)
UpdateStatement(SQLConnectionFactory connectionFactory, Executor async)
-