mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-14 01:56:36 +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',
|
mysqlquery in '..\..\source\mysqlquery.pas',
|
||||||
mysqlquerythread in '..\..\source\mysqlquerythread.pas',
|
mysqlquerythread in '..\..\source\mysqlquerythread.pas',
|
||||||
mysqlconn in '..\..\source\mysqlconn.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},
|
column_selection in '..\..\source\column_selection.pas' {ColumnSelectionForm},
|
||||||
data_sorting in '..\..\source\data_sorting.pas' {DataSortingForm},
|
data_sorting in '..\..\source\data_sorting.pas' {DataSortingForm},
|
||||||
runsqlfile in '..\..\source\runsqlfile.pas' {RunSQLFileForm},
|
runsqlfile in '..\..\source\runsqlfile.pas' {RunSQLFileForm},
|
||||||
|
@ -30,7 +30,7 @@ uses
|
|||||||
mysqlquery in '..\..\source\mysqlquery.pas',
|
mysqlquery in '..\..\source\mysqlquery.pas',
|
||||||
mysqlquerythread in '..\..\source\mysqlquerythread.pas',
|
mysqlquerythread in '..\..\source\mysqlquerythread.pas',
|
||||||
mysqlconn in '..\..\source\mysqlconn.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},
|
column_selection in '..\..\source\column_selection.pas' {ColumnSelectionForm},
|
||||||
data_sorting in '..\..\source\data_sorting.pas' {DataSortingForm},
|
data_sorting in '..\..\source\data_sorting.pas' {DataSortingForm},
|
||||||
runsqlfile in '..\..\source\runsqlfile.pas' {RunSQLFileForm},
|
runsqlfile in '..\..\source\runsqlfile.pas' {RunSQLFileForm},
|
||||||
|
@ -111,7 +111,7 @@
|
|||||||
<DCCReference Include="..\..\source\main.pas">
|
<DCCReference Include="..\..\source\main.pas">
|
||||||
<Form>MainForm</Form>
|
<Form>MainForm</Form>
|
||||||
</DCCReference>
|
</DCCReference>
|
||||||
<DCCReference Include="..\..\source\mysql.pas" />
|
<DCCReference Include="..\..\source\mysql_structures.pas" />
|
||||||
<DCCReference Include="..\..\source\mysqlconn.pas" />
|
<DCCReference Include="..\..\source\mysqlconn.pas" />
|
||||||
<DCCReference Include="..\..\source\mysqlquery.pas" />
|
<DCCReference Include="..\..\source\mysqlquery.pas" />
|
||||||
<DCCReference Include="..\..\source\mysqlquerythread.pas" />
|
<DCCReference Include="..\..\source\mysqlquerythread.pas" />
|
||||||
|
@ -629,7 +629,7 @@ implementation
|
|||||||
uses
|
uses
|
||||||
Main, createtable, fieldeditor,
|
Main, createtable, fieldeditor,
|
||||||
optimizetables, copytable, sqlhelp, printlist,
|
optimizetables, copytable, sqlhelp, printlist,
|
||||||
column_selection, data_sorting, runsqlfile, mysql,
|
column_selection, data_sorting, runsqlfile, mysql_structures,
|
||||||
Registry;
|
Registry;
|
||||||
|
|
||||||
|
|
||||||
|
@ -100,7 +100,7 @@ type
|
|||||||
implementation
|
implementation
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Main, Childwin, helpers, mysql;
|
Main, Childwin, helpers, mysql_structures;
|
||||||
|
|
||||||
var
|
var
|
||||||
fields : array of TMysqlField;
|
fields : array of TMysqlField;
|
||||||
|
@ -95,7 +95,7 @@ type
|
|||||||
implementation
|
implementation
|
||||||
|
|
||||||
uses
|
uses
|
||||||
helpers, childwin, Main, mysql, db;
|
helpers, childwin, Main, mysql_structures, db;
|
||||||
|
|
||||||
var
|
var
|
||||||
klist : Array of TMysqlIndex;
|
klist : Array of TMysqlIndex;
|
||||||
|
@ -253,7 +253,7 @@ uses
|
|||||||
insertfiles,
|
insertfiles,
|
||||||
Helpers,
|
Helpers,
|
||||||
Threading,
|
Threading,
|
||||||
mysql;
|
mysql_structures;
|
||||||
|
|
||||||
{$R *.DFM}
|
{$R *.DFM}
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
unit mysql;
|
unit mysql_structures;
|
||||||
|
|
||||||
// -------------------------------------
|
// -------------------------------------
|
||||||
// MySQL Constants, Variables and Types
|
// MySQL Constants, Variables and Types
|
Reference in New Issue
Block a user