com.nikialeksey.jood.Db Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jood Show documentation
Show all versions of jood Show documentation
Java object oriented database library
package com.nikialeksey.jood;
import com.nikialeksey.jood.sql.Sql;
public interface Db {
QueryResult read(Sql sql) throws JdException;
void write(Sql sql) throws JdException;
QueryResult writeReturnGenerated(Sql sql) throws JdException;
void run(Transaction transaction) throws JdException;
}