ADOSAMP.IDL
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:4k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // ADOSamp.idl : IDL source for ADOSamp.dll
  2. //
  3. import "oaidl.idl";
  4. // This file will be processed by the MIDL tool to
  5. // produce the type library (ADOSamp.tlb) and marshalling code.
  6. enum DataTypeEnum
  7. {
  8.     adEmpty = 0,
  9.     adTinyInt = 16,
  10.     adSmallInt = 2,
  11.     adInteger = 3,
  12.     adBigInt = 20,
  13.     adUnsignedTinyInt = 17,
  14.     adUnsignedSmallInt = 18,
  15.     adUnsignedInt = 19,
  16.     adUnsignedBigInt = 21,
  17.     adSingle = 4,
  18.     adDouble = 5,
  19.     adCurrency = 6,
  20.     adDecimal = 14,
  21.     adNumeric = 131,
  22.     adBoolean = 11,
  23.     adError = 10,
  24.     adUserDefined = 132,
  25.     adVariant = 12,
  26.     adIDispatch = 9,
  27.     adIUnknown = 13,
  28.     adGUID = 72,
  29.     adDate = 7,
  30.     adDBDate = 133,
  31.     adDBTime = 134,
  32.     adDBTimeStamp = 135,
  33.     adBSTR = 8,
  34.     adChar = 129,
  35.     adVarChar = 200,
  36.     adLongVarChar = 201,
  37.     adWChar = 130,
  38.     adVarWChar = 202,
  39.     adLongVarWChar = 203,
  40.     adBinary = 128,
  41.     adVarBinary = 204,
  42.     adLongVarBinary = 205
  43. };
  44. enum ParameterDirectionEnum
  45. {
  46.     adParamUnknown = 0,
  47.     adParamInput = 1,
  48.     adParamOutput = 2,
  49.     adParamInputOutput = 3,
  50.     adParamReturnValue = 4
  51. };
  52.     [
  53.         object,
  54.         uuid(7A319993-48C0-11D0-AE70-00C04FD7D06E),
  55.         dual,
  56.         helpstring("IADOTier Interface"),
  57.         pointer_default(unique)
  58.     ]
  59.     interface IADOTier : IDispatch
  60.     {
  61.         [id(1), helpstring("method Open")] HRESULT Open([in] BSTR source, [in] BSTR user, [in] BSTR pwd);
  62.         [id(3), helpstring("method OpenRecordset")] HRESULT OpenRecordset([in] VARIANT query);
  63.         [id(4), helpstring("method CloseRecordset")] HRESULT CloseRecordset(void);
  64.         [id(5), helpstring("method ExecuteConnection")] HRESULT ExecuteConnection([in] BSTR query, [in] VARIANT_BOOL bChangeRec);
  65.         [id(6), helpstring("method ExecuteCommand")] HRESULT ExecuteCommand([in] VARIANT_BOOL bStoredProcedure, [in] VARIANT_BOOL bChangeRec);
  66.         [propget, id(7), helpstring("property CommandText")] HRESULT CommandText([out, retval] BSTR *newVal);
  67.         [propput, id(7), helpstring("property CommandText")] HRESULT CommandText([in] BSTR newVal);
  68.         [id(8), helpstring("method AppendParameter")] HRESULT AppendParameter([in] enum DataTypeEnum type, [in] VARIANT value, [in] enum ParameterDirectionEnum where, [in] long size);
  69.         [id(9), helpstring("method Update")] HRESULT Update();
  70.         [id(10), helpstring("method Delete")] HRESULT Delete();
  71.         [propget, id(11), helpstring("property Field")] HRESULT Field([in] VARIANT idx, [out, retval] VARIANT *newVal);
  72.         [propput, id(11), helpstring("property Field")] HRESULT Field([in] VARIANT idx, [in] VARIANT newVal);
  73.         [propget, id(12), helpstring("property FieldCount")] HRESULT FieldCount([out, retval] long *newVal);
  74.         [id(13), helpstring("method Close")] HRESULT Close();
  75.         [id(14), helpstring("method First")] HRESULT First();
  76.         [id(15), helpstring("method Next")] HRESULT Next();
  77.         [id(16), helpstring("method Last")] HRESULT Last();
  78.         [id(17), helpstring("method Prev")] HRESULT Prev();
  79.         [propget, id(18), helpstring("property EOF")] HRESULT EOF([out, retval] VARIANT_BOOL *newVal);
  80.         [propget, id(19), helpstring("property BOF")] HRESULT BOF([out, retval] VARIANT_BOOL *newVal);
  81.         [id(20), helpstring("method ParamQuery")] HRESULT ParamQuery([in] BSTR query, [in] long idx1, [in] BSTR idx2, [in] BSTR idx3);
  82.         [id(21), helpstring("method CallStoredProc")] HRESULT CallStoredProc([in] long idx1, [in] BSTR idx2, [in] BSTR idx3);
  83.         [propput, id(22), helpstring("property StoredProc")] HRESULT StoredProc([in] BSTR newVal);
  84.         [id(23), helpstring("method ChangeParameter")] HRESULT ChangeParameter([in] long idx, [in] enum DataTypeEnum type, [in] VARIANT value, [in] enum ParameterDirectionEnum where, [in] long size);
  85.         [id(24), helpstring("method Requery")] HRESULT Requery();
  86.         [id(25), helpstring("method ADORelease")] HRESULT ADORelease();
  87.         [propget, id(26), helpstring("property Empty")] HRESULT Empty([out, retval] VARIANT_BOOL* bEmpty);
  88.     };
  89. [
  90.     uuid(7A319991-48C0-11D0-AE70-00C04FD7D06E),
  91.     version(1.0),
  92.     helpstring("ADOSamp 1.0 Type Library")
  93. ]
  94. library ADOSAMPLib
  95. {
  96.     importlib("stdole32.tlb");
  97.     [
  98.         uuid(7A319997-48C0-11D0-AE70-00C04FD7D06E),
  99.         helpstring("ADOTier Class")
  100.     ]
  101.     coclass CADOTier
  102.     {
  103.         [default] interface IADOTier;
  104.     };
  105. };