simplecorbaserver.idl

来自「《Delphi开发人员指南》配书原码」· IDL 代码 · 共 27 行

IDL
27
字号
module SimpleCorbaServer
{
  interface IQueryServer;

  
  interface IQueryServer
  {
    boolean Login(in wstring Db, in wstring User, in wstring Password);
    wstring Get_SQL();
    void Set_SQL(in wstring Value);
    void Next();
    void Prev();
    void First();
    void Last();
    long Get_FieldCount();
    any Data();
    boolean Get_EOF();
    boolean Get_BOF();
    boolean Execute();
  };
  
  interface QueryServerFactory
  {
    IQueryServer CreateInstance(in string InstanceName);
  };

}; 

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?