mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-08-18 01:29:21 +02:00
+ Added empty TMySQLconnection.UnPrepareStatement
git-svn-id: trunk@1680 -
This commit is contained in:
parent
8b3c634573
commit
cfe83fe520
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user