mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-26 11:17:57 +08:00
Fix part 1 of bug #307 export to directory did not create files for each table if "Table structure" was unchecked. Instead the data was found in the header file afterwards.
This commit is contained in:
@ -808,11 +808,13 @@ begin
|
|||||||
StrProgress := 'Table ' + inttostr(tablecounter) + '/' + inttostr(tcount) + ': ' + checkListTables.Items[i];
|
StrProgress := 'Table ' + inttostr(tablecounter) + '/' + inttostr(tcount) + ': ' + checkListTables.Items[i];
|
||||||
lblProgress.caption := StrProgress;
|
lblProgress.caption := StrProgress;
|
||||||
|
|
||||||
|
if tofile then
|
||||||
|
f := InitFileStream(checkListTables.Items[i], f);
|
||||||
|
|
||||||
if exporttables then
|
if exporttables then
|
||||||
begin
|
begin
|
||||||
if tofile then
|
if tofile then
|
||||||
begin
|
begin
|
||||||
f := InitFileStream(checkListTables.Items[i], f);
|
|
||||||
if f = nil then
|
if f = nil then
|
||||||
begin
|
begin
|
||||||
Screen.Cursor := crDefault;
|
Screen.Cursor := crDefault;
|
||||||
|
Reference in New Issue
Block a user