2 * Copyright (C) 2015 Roland Haeder
4 * This program is free software: you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation, either version 3 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
14 * You should have received a copy of the GNU General Public License
15 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 package org.mxchange.addressbook.database.backend.mysql;
19 import java.io.IOException;
20 import java.sql.Connection;
21 import java.sql.DriverManager;
22 import java.sql.PreparedStatement;
23 import java.sql.ResultSet;
24 import java.sql.SQLException;
25 import java.text.MessageFormat;
26 import java.util.Iterator;
27 import org.mxchange.addressbook.database.backend.BaseDatabaseBackend;
28 import org.mxchange.addressbook.database.backend.DatabaseBackend;
29 import org.mxchange.addressbook.database.storage.Storeable;
30 import org.mxchange.addressbook.exceptions.BadTokenException;
31 import org.mxchange.addressbook.exceptions.UnsupportedDatabaseDriverException;
34 * A backend class for MySQL connections
36 * @author Roland Haeder
38 public class MySqlDatabaseBackend extends BaseDatabaseBackend implements DatabaseBackend {
40 * An instance of a datbase connection
42 private static Connection connection;
45 * Prepared statement for full row count
47 private PreparedStatement totalRowCount;
50 * Constructor with table name
52 * @param tableName Table to access
53 * @throws org.mxchange.addressbook.exceptions.UnsupportedDatabaseDriverException
55 public MySqlDatabaseBackend (final String tableName) throws UnsupportedDatabaseDriverException {
57 this.validateDriver("mysql"); //NOI18N
59 // Now that the driver is there, set the table name
60 this.setTableName(tableName);
64 public void connectToDatabase () throws SQLException {
66 this.getLogger().trace("CALLED!"); //NOI18N
68 // Is the connection already there?
69 if (MySqlDatabaseBackend.connection instanceof Connection) {
71 this.getLogger().debug("Connection is already established."); //NOI18N
77 // Generate connection string
78 String connect = String.format("jdbc:mysql://%s/%s", //NOI18N
79 this.getProperty("database.mysql.host"), //NOI18N
80 this.getProperty("database.mysql.dbname") //NOI18N
84 this.getLogger().debug(MessageFormat.format("Attempting to connect to {0} ...", connect)); //NOI18N
86 // Now get a connection instance back
87 MySqlDatabaseBackend.connection = DriverManager.getConnection(
89 this.getProperty("database.mysql.login"), //NOI18N
90 this.getProperty("database.mysql.password") //NOI18N
93 // Is the connection really up?
94 if (MySqlDatabaseBackend.connection.isClosed()) {
95 // Connection is closed again
96 throw new SQLException("Connection is closed."); //NOI18N
100 this.getLogger().debug("Connection is up, preparing some statements ..."); //NOI18N
102 // Here, the connection is established, so prepare some statements
103 this.totalRowCount = MySqlDatabaseBackend.connection.prepareStatement(String.format("SELECT COUNT(`id`) AS `cnt` FROM `%s` LIMIT 1", this.getTableName())); //NOI18N
106 this.getLogger().trace("EXIT!"); //NOI18N
110 public void doShutdown () {
111 // This should not happen:
112 assert(MySqlDatabaseBackend.connection instanceof Connection) : MessageFormat.format("connection is not valid: {0}", MySqlDatabaseBackend.connection); //NOI18N
115 // Close down database connection
116 MySqlDatabaseBackend.connection.close();
117 } catch (final SQLException ex) {
118 // Something happened during close()
119 this.abortProgramWithException(ex);
124 public int getTotalCount () throws SQLException {
126 this.getLogger().trace(MessageFormat.format("tableName={0} - CALLED!", this.getTableName())); //NOI18N
128 // Nothing counted by default
131 // Prepared statements are cool ...
132 if (this.totalRowCount.execute()) {
133 // Did fully work, so get result set
134 ResultSet set = this.totalRowCount.getResultSet();
137 assert(set.last()) : ": last() failed"; //NOI18N
139 // Get integer from 'cnt' alias (see statement)
140 count = set.getInt("cnt"); //NOI18N
143 this.getLogger().debug(MessageFormat.format("count={0}", count)); //NOI18N
145 // Go back to beginning
149 this.getLogger().warn(MessageFormat.format("COUNT() query didn't return any result on table {0}.", this.getTableName())); //NOI18N
153 this.getLogger().trace(MessageFormat.format("count={0} - EXIT!", count)); //NOI18N
160 * Checks whether at least one row is found with given boolean value.
162 * @param columnName Column to check for boolean value
163 * @param bool Boolean value to check
164 * @return Whether boolean value is found and returns at least one row
167 public boolean isRowFound (final String columnName, final boolean bool) throws SQLException {
168 // Is at least one entry found?
169 if (this.getTotalCount() == 0) {
170 // No entry found at all
173 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
177 public Iterator<? extends Storeable> iterator () throws BadTokenException {
178 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
182 public long length () {
183 throw new UnsupportedOperationException("Not implemented for this backend."); //NOI18N
187 public void rewind () {
188 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.
192 public void store (final Storeable object) throws IOException {
193 throw new UnsupportedOperationException("Not supported yet."); //To change body of generated methods, choose Tools | Templates.