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

Version Path
rhodes-3.0.2 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.2.beta.1 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.1 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.1.beta.8 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.1.beta.7 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.1.beta.6 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.1.beta.5 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.1.beta.4 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.1.beta.3 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.1.beta.2 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.0 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.0.beta.7 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.0.beta.6 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.0.beta.5 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.0.beta.4 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.0.beta.3 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.0.beta.2 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-3.0.0.beta.1 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-2.4.1 platform/wp7/RhoRubyLib/db/IDBStorage.cs
rhodes-2.4.1.beta.1 platform/wp7/RhoRubyLib/db/IDBStorage.cs