Sha256: 8f3d39c61f4379f75017c8f4aaf40a8ae0cd28840ad0de7ab6dc4a8be9c348af
Contents?: true
Size: 715 Bytes
Versions: 10
Compression:
Stored size: 715 Bytes
Contents
package com.rho.db; public interface IDBStorage { public abstract void open(String strPath, String strSqlScript)throws DBException; public abstract void close()throws DBException; public abstract IDBResult executeSQL(String strStatement, Object[] values, boolean bReportNonUnique)throws DBException; public abstract IDBResult createResult(); public abstract void deleteAllFiles(String strPath)throws Exception; public abstract void startTransaction()throws DBException; public abstract void commit()throws DBException; public abstract void rollback()throws DBException; public abstract void setDbCallback(IDBCallback callback); public abstract String[] getAllTableNames()throws DBException; }
Version data entries
10 entries across 10 versions & 1 rubygems