00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #ifndef _UESQL_DATA_SOURCE__
00026 #define _UESQL_DATA_SOURCE__
00027
00028 #include <cstdlib>
00029 #include <mpcl/text/string.hh>
00030
00031
00033 namespace uesqlc
00034 {
00035
00040 template <typename TInstance, typename TSize = std::size_t>
00041 class IDataSource
00042 {
00043
00044 public:
00045
00047 typedef
00048 TSize
00049 size_type;
00050
00051
00052 public:
00053
00054
00055
00056
00057
00062 virtual void closeCursor (const mpcl::text::TString& rkyCURSOR_NAME) = 0;
00063
00069 virtual size_type declareCursor (const mpcl::text::TString& rkyCURSOR_NAME) = 0;
00070
00077 virtual void fetchNext ( const mpcl::text::TString& rkyCURSOR_NAME ,
00078 TInstance& rtINSTANCE ) = 0;
00079
00087 virtual void fetchAbsolute ( const mpcl::text::TString& rkyCURSOR_NAME ,
00088 TInstance& rtINSTANCE ,
00089 size_type zINDEX ) = 0;
00090
00095 virtual void openCursor (const mpcl::text::TString& rkyCURSOR_NAME) = 0;
00096
00098 virtual void setErrorException (void) = 0;
00099
00100 };
00101
00102 }
00103
00104
00105 #endif // not _UESQL_DATA_SOURCE__