Class Database
java.lang.Object
fr.multimc.api.commons.data.sources.database.Database
- All Implemented Interfaces:
IDataSource
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionconnect()
Initialize the connection object with a new connection to the databaseClose the connection with the databaseexecuteQuery
(String query, QueryType queryType) Execute a given queryisTableExist
(String tableName) Check if a given table exists in the databaseReset the connection object and reconnect it to the database
-
Constructor Details
-
Database
public Database(String ip, int port, String userName, String password, String databaseName, Logger logger) Database constructor for MYSQL- Parameters:
ip
- Database IPport
- Database portuserName
- Database usernamepassword
- Database passworddatabaseName
- Database namelogger
- Plugin logger
-
Database
Database constructor for SQLITE- Parameters:
databaseFile
- Database filelogger
- Plugin logger
-
-
Method Details
-
connect
Initialize the connection object with a new connection to the database- Returns:
- Custom SQLState, can be SUCCESS or SQLERROR
-
reconnect
Reset the connection object and reconnect it to the database- Returns:
- Custom SQLState, can be SUCCESS or SQLERROR
-
disconnect
Close the connection with the database- Returns:
- Custom SQLState, can be SUCCESS or SQLERROR
-
executeQuery
Execute a given query- Parameters:
query
- SQL Query to executequeryType
- QueryType of the query (SELECT or UPDATE)- Returns:
- QueryResult object that contain a SQLState and a ResultSet if the query is a SELECT
-
isTableExist
Check if a given table exists in the database- Parameters:
tableName
- Target table name- Returns:
- Custom SQLState, can be TABLE_EXIST, TABLE_NOT_EXIST or SQLERROR
-
getDatabaseType
-
getDataSourceType
- Specified by:
getDataSourceType
in interfaceIDataSource
-