浏览代码

+ Added empty TMySQLconnection.UnPrepareStatement

git-svn-id: trunk@1680 -
joost 20 年之前
父节点
当前提交
cfe83fe520
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      fcl/db/sqldb/mysql/mysql4conn.pas

+ 6 - 0
fcl/db/sqldb/mysql/mysql4conn.pas

@@ -55,6 +55,7 @@ Type
     Function AllocateTransactionHandle : TSQLHandle; override;
 
     procedure PrepareStatement(cursor: TSQLCursor;ATransaction : TSQLTransaction;buf : string; AParams : TParams); override;
+    procedure UnPrepareStatement(cursor:TSQLCursor); override;
     procedure FreeFldBuffers(cursor : TSQLCursor); override;
     procedure Execute(cursor: TSQLCursor;atransaction:tSQLtransaction;AParams : TParams); override;
     procedure AddFieldDefs(cursor: TSQLCursor; FieldDefs : TfieldDefs); override;
@@ -233,6 +234,11 @@ begin
     end
 end;
 
+procedure TMySQLConnection.UnPrepareStatement(cursor: TSQLCursor);
+begin
+  // not necessary
+end;
+
 procedure TMySQLConnection.FreeFldBuffers(cursor: TSQLCursor);
 
 Var