]> git.mxchange.org Git - jcore.git/blob - src/org/mxchange/jcore/database/backend/DatabaseBackend.java
9f0dbef5514c6b34088034aa310e92d53b86015f
[jcore.git] / src / org / mxchange / jcore / database / backend / DatabaseBackend.java
1 /*
2  * Copyright (C) 2015 Roland Haeder
3  *
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.
8  *
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.
13  *
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/>.
16  */
17 package org.mxchange.jcore.database.backend;
18
19 import java.io.IOException;
20 import java.sql.SQLException;
21 import org.mxchange.jcore.FrameworkInterface;
22 import org.mxchange.jcore.criteria.searchable.SearchableCritera;
23 import org.mxchange.jcore.database.result.Result;
24 import org.mxchange.jcore.database.storage.Storeable;
25
26 /**
27  * A generic interface for database frontends
28  *
29  * @author Roland Haeder
30  */
31 public interface DatabaseBackend extends FrameworkInterface {
32
33         /**
34          * Tries a connection to the database
35          * 
36          * @throws java.sql.SQLException If the connection attempt fails
37          */
38         public void connectToDatabase () throws SQLException;
39
40         /**
41          * Run a "SELECT" statement with given criteria and always return a Result
42          * instance. The result instance then provides methods to iterate over all
43          * found entries.
44          *
45          * @param critera Search critera
46          * @return A result instance
47          */
48         public Result<? extends Storeable> doSelectByCriteria (final SearchableCritera critera);
49
50         /**
51          * Shuts down this backend
52          *
53          * @throws java.sql.SQLException If any SQL error occurs
54          * @throws java.io.IOException If any IO error occurs
55          */
56         public void doShutdown () throws SQLException, IOException;
57 }