mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 19:20:17 +08:00
Parse result of SHOW CREATE PROCEDURE, instead of querying information_schema.ROUTINES, which seems broken as escaped quotes appear non-escaped here, on a 5.1.22 server. Fixes issue #1713.
This commit is contained in:
@ -158,7 +158,7 @@ type
|
||||
|
||||
{$I const.inc}
|
||||
|
||||
function implodestr(seperator: String; a: TStringList) :String;
|
||||
function implodestr(seperator: String; a: TStrings) :String;
|
||||
function explode(separator, a: String) :TStringList;
|
||||
procedure ExplodeQuotedList(Text: String; var List: TStringList);
|
||||
procedure ensureValidIdentifier(name: String);
|
||||
@ -300,7 +300,7 @@ end;
|
||||
@param a TStringList Containing strings
|
||||
@return string
|
||||
}
|
||||
function implodestr(seperator: String; a: TStringList) :String;
|
||||
function implodestr(seperator: String; a: TStrings) :String;
|
||||
var
|
||||
i : Integer;
|
||||
begin
|
||||
|
Reference in New Issue
Block a user