mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00
Rewrite import file dialog: Use a grid for column values, distinct between binary and text files
This commit is contained in:
@ -115,7 +115,7 @@ type
|
||||
function MakeInt( Str: String ) : Int64;
|
||||
function MakeFloat( Str: String ): Extended;
|
||||
function CleanupNumber(Str: String): String;
|
||||
function esc(Text: String; ProcessJokerChars: Boolean=false): String;
|
||||
function esc(Text: String; ProcessJokerChars: Boolean=false; DoQuote: Boolean=True): String;
|
||||
function ScanNulChar(Text: String): Boolean;
|
||||
function ScanLineBreaks(Text: String): TLineBreaks;
|
||||
function RemoveNulChars(Text: String): String;
|
||||
@ -657,9 +657,9 @@ begin
|
||||
end;
|
||||
|
||||
|
||||
function esc(Text: String; ProcessJokerChars: Boolean=false): String;
|
||||
function esc(Text: String; ProcessJokerChars: Boolean=false; DoQuote: Boolean=True): String;
|
||||
begin
|
||||
Result := MainForm.ActiveConnection.EscapeString(Text, ProcessJokerChars);
|
||||
Result := MainForm.ActiveConnection.EscapeString(Text, ProcessJokerChars, DoQuote);
|
||||
end;
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user