Note: When chosing a release you are better off using the tags appended with MySQL8 as these are more likely to work with other versions of MySQL (all the way down to 5.1) There has been numerous fixes in this branch and there is some preliminary support for MySQL8 servers as long as the server is using mysql_native_password instead of Sha2Caching.
This is (as far as we are aware) the first and only native MySQL connector for Android. It connects directly to your database instead of relying on some sort of web service to act as a middleware between Android and the MySQL Server.
Using a webservice is still the recommended way of connecting to your database as it ensures only clients that are supposed to are connecting to your database and avoids the requirement of needing to expose your MySQL server to the Internet.
However, if you want, or have a need to connect directly to your database, then this is the library you need. This is a fairly basic MySQL connector compared to the official connectors that are available on other platforms. Therefore, below is a list of the known limitations of the library:
- Doesn't support compression, if the MySQL server reports that it supports compression, the connector will turn it off
- Doesn't support prepared statements
- Only supports UTF8 or Latin 1 encodings
- If authentication is required, then only mysql_native_password is supported
The library has been tested on the following MySQL Servers
- 5.1.72
- 5.5.59
- 5.6.39
- 5.7.22
We've so far only tested on the the highest minor version of each MySQL major version. You'll notice that this doesn't include MySQL 8.0. This is due to MySQL 8 changing the default authentication mechanism, this is something we plan on adding in the future. We haven't yet tested with MariaDB however, the equivalent MeriaDB and MySQL version should be compatible and therefore should work in the same way.
Adding the library to your project couldn't be simpler. Add the following to your apps build.gradle
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.BoardiesITSolutions:Android-MySQL-Connector:TAG'
}
The TAG
above will be the tagged version number of the library.
Due to the way Android works, using the library is a little different compared to using the official connector on other platforms. This is due to to Android completely restricting any network activity on the main thread. Obviously you shouldn't do any network activity on the main thread on any platform, but most platforms don't stop you if you want to, however, Android will throw an exception if any network activity is done on the main thread. Therefore for each action you wish to take, such as connecting, switching databases, performing a query, the relevant method or constructor will take an interface which will get called once the action has completed which you can then handle.
To connect to a MySQL server you first need to create the MySQL Connection object. You can do this as follows:
Connection mysqlConnection = new Connection("<Hostname>", "<Username>", "<Password>", <Port>, "<Database>", new IConnectionInterface()
In the above example, is an optional parameter. By setting this, when the connection is established, the database name will be the default database used. The IConnectionInterface parameter handles connection specific events, such as successfully connected or exception handlers.
For example, when creating a new IConnectionInterface, you will need to provide the following methods: actionCompleted This means that the connection was successfully established and authenticated and the connection is ready for use
handleInvalidSQLException You shouldn't really ever get this, but you might if you are connecting to a MySQL server that either is configured slightly differently as to what has bee tested or isn't compatible with the connector, and has caused the connector to receive a network packet from the MySQL server that the connector wasn't expecting.
handleMySQLException This will happen if a generic MySQL exception occurs within the connector
handleIOException This is used if an internal socket error occurs within the connector, for example, if server aborted the connection but the library didn't realise and tried to perform an operation on the MySQL socket which is now closed
handleMySQLConnException This will be an exception related to a connection error, such as authentication failure
handleException This is a generic exception handler if any of the above doesn't match the exception
That's it, you have successfully connected, now we can execute some queries. Remember though, keep your connection object available in your class as this will be required in order to run queries on the DB.
You can change the default database to use in your established MySQL Connection. To do this, do not execute a standard USE DATABASE query as it won't work.
You need to use your connection object and call the method switchDatabase(db, new IConnectionInterface())
.
db
being a String of your database name, and again, pass in the IConnectionInterface. If it switched successfully
you will receive a call back to the actionCompleted method.
First of all you need to create a statement object from your connection object. You can do this using the following code snippet
Statement statement = connection.createStatement();
Then in order to execute your statement you then do the following
statement.execute(query, new IConnectionInterface());
query
is your statement that you want to execute such as an INSERT or UPDATE statement. Again the second
parameter is the IConnectionInterface and if the statement execute successfully, then actionCompleted will be called.
The execute query function allows you to execute a query such as SELECT or DESCRIBE, basically any query which return a result set. Same with executing a statement, you need to create the statement object from your connection object. This can be done using the following code snippet:
Statement statement = connection.createStatement();
Then you need to call the executeQuery withn your statement object, but this time passing in a new IResultInterface as shown below:
statement.executeQuery(query, new IResultInterface());
The IResultInterface is pretty similar to the IConnectionInterface, you'll have the same exception handlers, the main difference that if the query executes successfully, you'll receive executionComplete which will have a parameter to the result set.
When you execute a query such as SELECT or DESCRIBE, you will get a call back which will provide a result set object. This result set object contains all the information about what was returned such as the columns and the rows.
To get the total number of rows you can call resultset.getNumRows();
.
The column definitions are stored in a List<ColumnDefinition>
. You can get this using the following code snipper:
List<ColumnDefinition> columns = result.getFields();
You can then loop over the list to get ColumnDefinition for each column returned in the result set. Within the column definition class, you can use the following methods: getDatabase The database name where the column was retrieved from
getTable The table name where the column was retrieved from
getColumnName The name of the column
getColumnType
Returns an enum of type ColumnType
isPrimaryKey Returns a boolean as to whether or not the column is a primary key
You can iterate through each row, you first need to create an empty MySQLRow
variable that can be used
to be set within a while loop to get each row. You can call getNextRow()
on the result set to get a MySQLRow.
Once there are no rows left, null is returned. The following code snippet provides an example:
MySQLRow row;
while ((row = result.getNextRow()) != null)
{
//Read the row contents here
}
Once you have your MySQLRow you can then call the following methods to return the value of the field. Each of the following methods, take a String parameter which is the column name that should be retrieved.
- getString(String column)
- getInt(String column)
- getFloat(String column)
- getDouble(String column)
- getBlob(String column) (Returns a byte[] array)
When sending dynamic paraters in your MySQL query, the string should be escaped to avoid SQL injection attacks. This can be done by using the following code snippet:
String var = connection.escape_string(variable);
Currently the connection object can't be passed between Android activities, so if you do need to create a new Activity and perform database action, you should close the DB connection in your current activity, pass the connection details to your new activity, and then create a new connection object in your new activity.
Also, to avoid leaving the DB connection open for no reason, in your activities onPause and onDestroy methods you should close the DB connection and then create a new instance to restablish the connection in the onCreate and/or onResume
You can close the DB by calling connection.close()
.
Below you will find some examples on some of the common actions you might do with the MySQL Connector.
Each of the below examples creates a Connection object called mysqlConnection. This can be done using the following:
Connection mysqlConnection = new Connection("localhost", "root",
"letmein", 3306, "my_database", new IConnectionInterface()
{
@Override
public void actionCompleted()
{
//You are now connected to the database
}
@Override
public void handleInvalidSQLPacketException(InvalidSQLPacketException e)
{
//Handle the error
}
@Override
public void handleMySQLException(MySQLException e)
{
//Handle the error
}
@Override
public void handleIOException(IOException e)
{
//Handle the error
}
@Override
public void handleMySQLConnException(MySQLConnException e)
{
//Handle the error
}
@Override
public void handleException(Exception e)
{
//Handle the error
}
});
//The below line isn't required, however, the MySQL action, whether connecting or executing a statement
//(basically anything that uses the this connection object) does its action in a thread, so the call
//back you receive will still be in its thread. If you are performing a GUI operation in your callback you need to
//switch the main thread. You can either do this yourself when required, or pass true as the first parameter
//so that when you receive the call back it is already switched to the main thread
mysqlConnection.returnCallbackToMainThread(true, MainActivity.this);
When you need to change the default database, (if a default database is set you do not need to prepend the database with the table name). You cannot use the the statement USE new_database
, you have to use the method switchDatabase
within the connection object as follows:
mysqlConnection.switchDatabase("your_db_name", new IConnectionInterface() {
@Override
public void actionCompleted() {
//Database switched successfully
}
@Override
public void handleInvalidSQLPacketException(InvalidSQLPacketException e) {
errorHandler.handleInvalidSQLPacketException(e);
}
@Override
public void handleMySQLException(MySQLException e) {
errorHandler.handleMySQLException(e);
}
@Override
public void handleIOException(IOException e) {
errorHandler.handleIOException(e);
}
@Override
public void handleMySQLConnException(MySQLConnException e) {
errorHandler.handleMySQLConnException(e);
}
@Override
public void handleException(Exception e) {
errorHandler.handleGeneralException(e);
}
});
Executing statement (SQL statements that do not return a result set, e.g. INSERT, UPDATE, DELETE, TRUNCATE, CREATE, DROP ALTER)
Statement statement = mysqlConnection.createStatement();
statement.execute("CREATE DATABASE my_new_db", new IConnectionInterface()
{
@Override
public void actionCompleted()
{
//action completed successfully
}
@Override
public void handleInvalidSQLPacketException(InvalidSQLPacketException e)
{
errorHandler.handleInvalidSQLPacketException(e);
}
@Override
public void handleMySQLException(MySQLException e)
{
errorHandler.handleMySQLException(e);
}
@Override
public void handleIOException(IOException e)
{
errorHandler.handleIOException(e);
}
@Override
public void handleMySQLConnException(MySQLConnException e)
{
errorHandler.handleMySQLConnException(e);
}
@Override
public void handleException(Exception e)
{
errorHandler.handleGeneralException(e);
}
});
Performing a query to return a result set is pretty much the same as above, the only difference is that instead of passing an IConnectionInterface
, you instead pass an IResultInterface()
and the executionComplete
method provides you with a ResultSet
object
Statement statement = mysqlConnection.createStatement();
statement.executeQuery("SELECT * FROM my_table", new IResultInterface()
{
@Override
public void executionComplete(ResultSet resultSet)
{
addHistoryRecord(new QueryHistory(QueryHistory.Status.OK, txtQuery.getText().toString(), "Fetched " + resultSet.getNumRows() + " Row(s)", statement.getQueryTimeInMilliseconds()));
processResultset(resultSet);
}
@Override
public void handleInvalidSQLPacketException(InvalidSQLPacketException e)
{
Log.e("DBViewFragment", e.toString());
addHistoryRecord(new QueryHistory(QueryHistory.Status.ERROR, txtQuery.getText().toString(), e.toString(), statement.getQueryTimeInMilliseconds()));
errorHandler.handleInvalidSQLPacketException(e);
}
@Override
public void handleMySQLException(MySQLException e)
{
Log.e("DBViewFragement", e.toString());
addHistoryRecord(new QueryHistory(QueryHistory.Status.ERROR, txtQuery.getText().toString(), e.toString(), statement.getQueryTimeInMilliseconds()));
errorHandler.handleMySQLException(e);
}
@Override
public void handleIOException(IOException e)
{
Log.e("DBViewFragement",e.toString());
addHistoryRecord(new QueryHistory(QueryHistory.Status.ERROR, txtQuery.getText().toString(), e.toString(), statement.getQueryTimeInMilliseconds()));
errorHandler.handleIOException(e);
}
@Override
public void handleMySQLConnException(MySQLConnException e)
{
Log.e("DBViewFragement", e.toString());
addHistoryRecord(new QueryHistory(QueryHistory.Status.ERROR, txtQuery.getText().toString(), e.toString(), statement.getQueryTimeInMilliseconds()));
errorHandler.handleMySQLConnException(e);
}
@Override
public void handleException(Exception e)
{
Log.e("DBViewFragement", e.toString());
addHistoryRecord(new QueryHistory(QueryHistory.Status.ERROR, txtQuery.getText().toString(), e.toString(), statement.getQueryTimeInMilliseconds()));
errorHandler.handleGeneralException(e);
}
});
If you have added the library and the gradle sync works successfully but you are getting errors like cannot resolve symbol
make sure that the imports at the top of the class file have been referenced.
This can be done in one of two ways:
- Put the cursor somewhere in the area of code which is showing red and hit Ctrl + Alt + Enter. Android Studio will provide tips on how to fix - one of them being to import the class. Select import and the error should go away.
- You can add the following two lines:
import com.BoardiesITSolutions.AndroidMySQLConnector.*;
import com.BoardiesITSolutions.AndroidMySQLConnector.Exceptions.*;
which will import all available classes from the library. However, this tends to be bad practice as only what's needed from the library by your class should be imported. You can get round this by adding the two lines above, then when your class is finished, you can then do Ctrl + Alt + O which will organise your imports into what ones are required instead of a wildcard import.
If you see this error then connect to your DB via command line and run the following query:
SHOW SESSION STATUS LIKE 'Ssl_version';
If it shows TLSv1 then this won't be supported by the Android MySQL Connector library. TLS 1.0 is a deprecated version of TLS and Java and/or Android no longer supports this TLS version.
If MySQL supports it, you can add tls_version=TLSv1.1
or tls_version=TLSv1.2
(Check your mysql version documentation to determine the supported TLS) to your /etc/main.cf
file and restart MySQL. This needs to be added under the mysqld
section of the config file.
If you are using Amazon RDS then you will need to use at least MySQL 5.7.16. Previous version of Amazon RDS for MySQL only support TLS 1.0 so the library won't be able to connect.