mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 10:02:10 +08:00
Rename mysql.pas and it's helper file installer_function_list_generator.php so their purpose is more clearer to newbies.
This commit is contained in:
@ -30,7 +30,7 @@ uses
|
||||
mysqlquery in '..\..\source\mysqlquery.pas',
|
||||
mysqlquerythread in '..\..\source\mysqlquerythread.pas',
|
||||
mysqlconn in '..\..\source\mysqlconn.pas',
|
||||
mysql in '..\..\source\mysql.pas',
|
||||
mysql_structures in '..\..\source\mysql_structures.pas',
|
||||
column_selection in '..\..\source\column_selection.pas' {ColumnSelectionForm},
|
||||
data_sorting in '..\..\source\data_sorting.pas' {DataSortingForm},
|
||||
runsqlfile in '..\..\source\runsqlfile.pas' {RunSQLFileForm},
|
||||
|
@ -30,7 +30,7 @@ uses
|
||||
mysqlquery in '..\..\source\mysqlquery.pas',
|
||||
mysqlquerythread in '..\..\source\mysqlquerythread.pas',
|
||||
mysqlconn in '..\..\source\mysqlconn.pas',
|
||||
mysql in '..\..\source\mysql.pas',
|
||||
mysql_structures in '..\..\source\mysql_structures.pas',
|
||||
column_selection in '..\..\source\column_selection.pas' {ColumnSelectionForm},
|
||||
data_sorting in '..\..\source\data_sorting.pas' {DataSortingForm},
|
||||
runsqlfile in '..\..\source\runsqlfile.pas' {RunSQLFileForm},
|
||||
|
@ -111,7 +111,7 @@
|
||||
<DCCReference Include="..\..\source\main.pas">
|
||||
<Form>MainForm</Form>
|
||||
</DCCReference>
|
||||
<DCCReference Include="..\..\source\mysql.pas" />
|
||||
<DCCReference Include="..\..\source\mysql_structures.pas" />
|
||||
<DCCReference Include="..\..\source\mysqlconn.pas" />
|
||||
<DCCReference Include="..\..\source\mysqlquery.pas" />
|
||||
<DCCReference Include="..\..\source\mysqlquerythread.pas" />
|
||||
|
@ -629,7 +629,7 @@ implementation
|
||||
uses
|
||||
Main, createtable, fieldeditor,
|
||||
optimizetables, copytable, sqlhelp, printlist,
|
||||
column_selection, data_sorting, runsqlfile, mysql,
|
||||
column_selection, data_sorting, runsqlfile, mysql_structures,
|
||||
Registry;
|
||||
|
||||
|
||||
|
@ -100,7 +100,7 @@ type
|
||||
implementation
|
||||
|
||||
uses
|
||||
Main, Childwin, helpers, mysql;
|
||||
Main, Childwin, helpers, mysql_structures;
|
||||
|
||||
var
|
||||
fields : array of TMysqlField;
|
||||
|
@ -95,7 +95,7 @@ type
|
||||
implementation
|
||||
|
||||
uses
|
||||
helpers, childwin, Main, mysql, db;
|
||||
helpers, childwin, Main, mysql_structures, db;
|
||||
|
||||
var
|
||||
klist : Array of TMysqlIndex;
|
||||
|
@ -253,7 +253,7 @@ uses
|
||||
insertfiles,
|
||||
Helpers,
|
||||
Threading,
|
||||
mysql;
|
||||
mysql_structures;
|
||||
|
||||
{$R *.DFM}
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
unit mysql;
|
||||
unit mysql_structures;
|
||||
|
||||
// -------------------------------------
|
||||
// MySQL Constants, Variables and Types
|
Reference in New Issue
Block a user