Chili.Opf3 Send comments on this topic.
SqlStorageBase Class
See Also  Members  
Chili.Opf3.Storages Namespace : SqlStorageBase Class




Abstract base class that implements the functionality to access SQL storages.

Object Model



Syntax

Visual Basic (Declaration) 
Public MustInherit Class SqlStorageBase 
   Inherits StorageBase
   Implements IStorageITransactionStorage 
Visual Basic (Usage)Copy Code
Dim instance As SqlStorageBase
C# 
public abstract class SqlStorageBase : StorageBase, IStorageITransactionStorage  
Managed Extensions for C++ 
public __gc abstract class SqlStorageBase : public StorageBase, IStorageITransactionStorage  
C++/CLI 
public ref class SqlStorageBase abstract : public StorageBase, IStorageITransactionStorage  

Example

For examples how to implement your own storage see: MsSqlStorage, OracleStorage or any other storage that comes with the framework.

Remarks

This class implements a abstract base class to access any kind of SQL storage. It provides the main functionality and some methods that have to be overriden in derived classes.

Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
      Chili.Opf3.Storages.StorageBase
         Chili.Opf3.Storages.SqlStorageBase
            Chili.Opf3.Storages.Oracle.OracleStorage
            Chili.Opf3.Storages.OleDb.OleDbStorage
            Chili.Opf3.Storages.MsSql.MsSqlStorage

Requirements

Namespace: Chili.Opf3.Storages

Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

Assembly: Chili.Opf3 (in Chili.Opf3.dll)

See Also