Sha256: 937ae6895c5e1813d5cdf5bfdce962d568aaaf4fea0987f1e3929de010135775
Contents?: true
Size: 787 Bytes
Versions: 23
Compression:
Stored size: 787 Bytes
Contents
using System; using rho.common; namespace rho.db { public interface IDBStorage { void open(String strPath, String strSqlScript, String strEncryptionInfo); void close(); IDBResult executeSQL(String strStatement, Object[] values, boolean bReportNonUnique, boolean bNoCopy); void executeBatchSQL(String strStatement); IDBResult createResult(); void deleteAllFiles(String strPath); void startTransaction(); void commit(); void rollback(); void onBeforeCommit(); void setDbCallback(IDBCallback callback); String[] getAllTableNames(); boolean isTableExists(String strName); boolean isDbFileExists(String strPath); void createTriggers(); } }
Version data entries
23 entries across 23 versions & 1 rubygems