olevariant接口
olevariant接口
/// <author>cxg 2020-8-8</author> /// olevariant接口 unit olevIntf; interface uses SysUtils; type IOlevIntf = interface function qrySql(const accountNo, sql: string): OleVariant; function save(const accountNo, tableName: string; delta: OleVariant; const noSaveFields: string = ''): Boolean; function executeSql(const accountNo, sql: string): Boolean; function spOpen(const accountNo, spName: string; inParams: OleVariant): OleVariant; function spExec(const accountNo, spName: string; inParams: OleVariant): Boolean; end; implementation end.
本文来自博客园,作者:{咏南中间件},转载请注明原文链接:https://www.cnblogs.com/hnxxcxg/p/13457643.html