kz.greetgo.db.Jdbc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of greetgo.db Show documentation
Show all versions of greetgo.db Show documentation
DB utils using in greetgo!
The newest version!
package kz.greetgo.db;
/**
* Getting access to DB using JDBC protocol.
*/
public interface Jdbc {
/**
* DB access evaluating method
*
* @param connectionCallback it is realize code to access to DB
* @param returning type
* @return returning value returned by connectionCallback
*/
T execute(ConnectionCallback connectionCallback);
}