mirror of
https://github.com/HeidiSQL/HeidiSQL.git
synced 2025-08-06 18:24:26 +08:00

* Instead, use separate SHOW commands for tables, functions, procedures and triggers * Catch this chance to move these methods from main unit to mysql_connection, so they're accessible in a more generic way * Additionally, introduce new classes TDBObject and TDBObjectList which provide a more generic way than TMySQLQuery to access these database objects. Fixes issue #1529
8832 lines
299 KiB
ObjectPascal
8832 lines
299 KiB
ObjectPascal
unit Main;
|
||
|
||
|
||
// -------------------------------------
|
||
// Main-window
|
||
// -------------------------------------
|
||
|
||
{$I compilers.inc}
|
||
|
||
interface
|
||
|
||
uses
|
||
Windows, SysUtils, Classes, Graphics, Forms, Controls, Menus,
|
||
StdCtrls, Dialogs, Buttons, Messages, ExtCtrls, ComCtrls, StdActns,
|
||
ActnList, ImgList, ShellApi, ToolWin, Clipbrd,
|
||
SynMemo, synedit, SynEditTypes,
|
||
sqlhelp, VirtualTrees,
|
||
DateUtils, PngImageList, TableTools, View, Usermanager,
|
||
SelectDBObject, Widestrings, ShlObj, SynEditMiscClasses, SynEditSearch,
|
||
SynCompletionProposal, SynEditHighlighter, SynHighlighterSQL,
|
||
TntStdCtrls, Tabs, SynUnicode, EditVar, helpers,
|
||
createdatabase, table_editor, SynRegExpr,
|
||
WideStrUtils, ExtActns, CommCtrl, routine_editor, trigger_editor, options,
|
||
Contnrs, PngSpeedButton, connections, SynEditKeyCmds,
|
||
mysql_connection, mysql_api, insertfiles, TntComCtrls;
|
||
|
||
|
||
type
|
||
TQueryTab = class(TObject)
|
||
Number: Integer;
|
||
CloseButton: TPngSpeedButton;
|
||
pnlMemo: TPanel;
|
||
pnlHelpers: TPanel;
|
||
lboxHelpers: TTntListBox;
|
||
HelperListSelectedItems: Array[0..3] of Array of Integer;
|
||
tabsetHelpers: TTabSet;
|
||
Memo: TSynMemo;
|
||
MemoFilename: String;
|
||
MemoLineBreaks: TLineBreaks;
|
||
spltHelpers: TSplitter;
|
||
spltQuery: TSplitter;
|
||
LabelResultInfo: TLabel;
|
||
Grid: TVirtualStringTree;
|
||
TabSheet: TTntTabSheet;
|
||
GridResult: TGridResult;
|
||
FilterText: WideString;
|
||
end;
|
||
|
||
TMainForm = class(TForm)
|
||
MainMenu1: TMainMenu;
|
||
File1: TMenuItem;
|
||
FileNewItem: TMenuItem;
|
||
Help1: TMenuItem;
|
||
N1: TMenuItem;
|
||
FileExitItem: TMenuItem;
|
||
menuAbout: TMenuItem;
|
||
Edit1: TMenuItem;
|
||
CopyItem: TMenuItem;
|
||
PasteItem: TMenuItem;
|
||
StatusBar: TStatusBar;
|
||
ActionList1: TActionList;
|
||
actCopy: TAction;
|
||
actPaste: TAction;
|
||
actNewWindow: TAction;
|
||
actExitApplication: TAction;
|
||
Extra1: TMenuItem;
|
||
FlushUserPrivileges1: TMenuItem;
|
||
MenuCopyCSV: TMenuItem;
|
||
MenuExport: TMenuItem;
|
||
N5: TMenuItem;
|
||
MenuImportTextFile: TMenuItem;
|
||
Flush1: TMenuItem;
|
||
MenuFlushLogs: TMenuItem;
|
||
MenuFlushHosts: TMenuItem;
|
||
MenuFlushTables: TMenuItem;
|
||
MenuFlushTableswithreadlock: TMenuItem;
|
||
MenuFlushStatus: TMenuItem;
|
||
N6: TMenuItem;
|
||
MenuUserManager: TMenuItem;
|
||
MenuPreferences: TMenuItem;
|
||
N7a: TMenuItem;
|
||
menuReadme: TMenuItem;
|
||
actUserManager: TAction;
|
||
actAboutBox: TAction;
|
||
actMaintenance: TAction;
|
||
menuMaintenance: TMenuItem;
|
||
ImExport1: TMenuItem;
|
||
CopyContentsasHTMLTable1: TMenuItem;
|
||
actCopyAsHTML: TAction;
|
||
actCopyAsCSV: TAction;
|
||
menuWebsite: TMenuItem;
|
||
N9: TMenuItem;
|
||
N11: TMenuItem;
|
||
actPrintList: TAction;
|
||
actCopyTable: TAction;
|
||
ControlBar1: TControlBar;
|
||
ToolBarStandard: TToolBar;
|
||
ToolButton9: TToolButton;
|
||
tlbSep1: TToolButton;
|
||
ToolButton5: TToolButton;
|
||
ToolButton6: TToolButton;
|
||
ToolButton12: TToolButton;
|
||
tlbSep2: TToolButton;
|
||
ButtonRefresh: TToolButton;
|
||
ButtonImportTextfile: TToolButton;
|
||
ButtonExport: TToolButton;
|
||
ButtonUserManager: TToolButton;
|
||
ToolBarData: TToolBar;
|
||
actUndo: TEditUndo;
|
||
ToolButton14: TToolButton;
|
||
actExecuteQuery: TAction;
|
||
actExecuteSelection: TAction;
|
||
SaveDialog2: TSaveDialog;
|
||
ExportSettings1: TMenuItem;
|
||
Importsettings1: TMenuItem;
|
||
OpenDialog2: TOpenDialog;
|
||
menuSupportForum: TMenuItem;
|
||
actCopyAsXML: TAction;
|
||
actExportData: TAction;
|
||
Exportdata1: TMenuItem;
|
||
CopyasXMLdata1: TMenuItem;
|
||
actExecuteLine: TAction;
|
||
actHTMLview: TAction;
|
||
actInsertFiles: TAction;
|
||
InsertfilesintoBLOBfields1: TMenuItem;
|
||
actExportTables: TAction;
|
||
actDropObjects: TAction;
|
||
actLoadSQL: TAction;
|
||
ImportSQL1: TMenuItem;
|
||
menuConnections: TPopupMenu;
|
||
menuBugtracker: TMenuItem;
|
||
menuFeaturetracker: TMenuItem;
|
||
menuDownload: TMenuItem;
|
||
btnSQLHelp: TToolButton;
|
||
menuSQLHelp1: TMenuItem;
|
||
N8a: TMenuItem;
|
||
Import1: TMenuItem;
|
||
tlbSep6: TToolButton;
|
||
menuUpdateCheck: TMenuItem;
|
||
PngImageListMain: TPngImageList;
|
||
actCreateView: TAction;
|
||
ToolButton3: TToolButton;
|
||
actDataFirst: TAction;
|
||
actDataLast: TAction;
|
||
actDataInsert: TAction;
|
||
actDataDelete: TAction;
|
||
actDataPostChanges: TAction;
|
||
ToolButton4: TToolButton;
|
||
ToolButton7: TToolButton;
|
||
ToolButton8: TToolButton;
|
||
ToolButton10: TToolButton;
|
||
actCreateTable: TAction;
|
||
actEmptyTables: TAction;
|
||
actCreateDatabase: TAction;
|
||
actSQLhelp: TAction;
|
||
actRefresh: TAction;
|
||
actImportCSV: TAction;
|
||
actCut: TAction;
|
||
Cut1: TMenuItem;
|
||
actExportSettings: TAction;
|
||
actImportSettings: TAction;
|
||
actSelectTreeBackground: TAction;
|
||
actPreferences: TAction;
|
||
actFlushHosts: TAction;
|
||
actFlushLogs: TAction;
|
||
actFlushPrivileges: TAction;
|
||
actFlushTables: TAction;
|
||
actFlushTableswithreadlock: TAction;
|
||
actFlushStatus: TAction;
|
||
actUpdateCheck: TAction;
|
||
actWebMainsite: TAction;
|
||
actWebDownloadpage: TAction;
|
||
actWebForum: TAction;
|
||
actWebBugtracker: TAction;
|
||
actWebFeaturetracker: TAction;
|
||
actReadme: TAction;
|
||
actSaveSQL: TAction;
|
||
actSaveSQLAs: TAction;
|
||
actSaveSQLselection: TAction;
|
||
actSaveSQLSnippet: TAction;
|
||
actSaveSQLSelectionSnippet: TAction;
|
||
actClearQueryEditor: TAction;
|
||
actClearFilterEditor: TAction;
|
||
actApplyFilter: TAction;
|
||
actQueryStopOnErrors: TAction;
|
||
actQueryWordWrap: TAction;
|
||
actQueryFind: TAction;
|
||
actQueryReplace: TAction;
|
||
FindDialogQuery: TFindDialog;
|
||
ReplaceDialogQuery: TReplaceDialog;
|
||
ToolBarQuery: TToolBar;
|
||
btnExecuteQuery: TToolButton;
|
||
btnLoadSQL: TToolButton;
|
||
btnSaveSQL: TToolButton;
|
||
btnSaveSQLSnippet: TToolButton;
|
||
btnQueryFind: TToolButton;
|
||
btnQueryReplace: TToolButton;
|
||
btnStopOnErrors: TToolButton;
|
||
btnQueryWordwrap: TToolButton;
|
||
PopupQueryLoad: TPopupMenu;
|
||
actSetDelimiter: TAction;
|
||
btnSetDelimiter: TToolButton;
|
||
actDataCancelChanges: TAction;
|
||
ToolButton1: TToolButton;
|
||
actRemoveFilter: TAction;
|
||
actCopyAsSQL: TAction;
|
||
CopyAsSQLdata: TMenuItem;
|
||
panelTop: TPanel;
|
||
pnlLeft: TPanel;
|
||
DBtree: TVirtualStringTree;
|
||
comboOnlyDBs: TTntComboBox;
|
||
Splitter1: TSplitter;
|
||
PageControlMain: TTntPageControl;
|
||
tabData: TTntTabSheet;
|
||
tabDatabase: TTntTabSheet;
|
||
splitterTopBottom: TSplitter;
|
||
tabQuery: TTntTabSheet;
|
||
popupDB: TPopupMenu;
|
||
menuRefreshDB: TMenuItem;
|
||
tabHost: TTntTabSheet;
|
||
PageControlHost: TPageControl;
|
||
tabVariables: TTabSheet;
|
||
tabProcessList: TTabSheet;
|
||
ListVariables: TVirtualStringTree;
|
||
ListProcesses: TVirtualStringTree;
|
||
popupHost: TPopupMenu;
|
||
Kill1: TMenuItem;
|
||
ListTables: TVirtualStringTree;
|
||
Refresh1: TMenuItem;
|
||
pnlDataTop: TPanel;
|
||
pnlQueryMemo: TPanel;
|
||
SynSQLSyn1: TSynSQLSyn;
|
||
SynMemoQuery: TSynMemo;
|
||
spltQuery: TSplitter;
|
||
OpenDialog1: TOpenDialog;
|
||
TimerHostUptime: TTimer;
|
||
N5a: TMenuItem;
|
||
popupDataGrid: TPopupMenu;
|
||
Refresh3: TMenuItem;
|
||
popupResultGrid: TPopupMenu;
|
||
Copyrecords1: TMenuItem;
|
||
CopyasCSVData1: TMenuItem;
|
||
N9a: TMenuItem;
|
||
LabelResultinfo: TLabel;
|
||
TimerConnected: TTimer;
|
||
N12: TMenuItem;
|
||
popupSqlLog: TPopupMenu;
|
||
Clear2: TMenuItem;
|
||
Copy1: TMenuItem;
|
||
N15: TMenuItem;
|
||
N17: TMenuItem;
|
||
CopycontentsasHTML1: TMenuItem;
|
||
CopycontentsasHTML2: TMenuItem;
|
||
Copy3: TMenuItem;
|
||
Paste2: TMenuItem;
|
||
N4a: TMenuItem;
|
||
DataGrid: TVirtualStringTree;
|
||
QueryGrid: TVirtualStringTree;
|
||
Copytableas1: TMenuItem;
|
||
Delete1: TMenuItem;
|
||
N6a: TMenuItem;
|
||
QF1: TMenuItem;
|
||
QF2: TMenuItem;
|
||
QuickFilter1: TMenuItem;
|
||
QF3: TMenuItem;
|
||
QF4: TMenuItem;
|
||
N7: TMenuItem;
|
||
DropFilter1: TMenuItem;
|
||
PrintList2: TMenuItem;
|
||
N1a: TMenuItem;
|
||
SynMemoFilter: TSynMemo;
|
||
TimerRefresh: TTimer;
|
||
Saveastextfile1: TMenuItem;
|
||
QF7: TMenuItem;
|
||
QF5: TMenuItem;
|
||
QF6: TMenuItem;
|
||
QF8: TMenuItem;
|
||
QF10: TMenuItem;
|
||
QF11: TMenuItem;
|
||
QF9: TMenuItem;
|
||
QF12: TMenuItem;
|
||
CopyasXMLdata3: TMenuItem;
|
||
CopyasXMLdata2: TMenuItem;
|
||
Exportdata3: TMenuItem;
|
||
Exportdata2: TMenuItem;
|
||
SaveDialogExportData: TSaveDialog;
|
||
N11a: TMenuItem;
|
||
Copy4: TMenuItem;
|
||
N14: TMenuItem;
|
||
DataInsertDateTime: TMenuItem;
|
||
DataTimestamp: TMenuItem;
|
||
DataDateTime: TMenuItem;
|
||
DataTime: TMenuItem;
|
||
DataDate: TMenuItem;
|
||
DataYear: TMenuItem;
|
||
ViewasHTML1: TMenuItem;
|
||
HTMLview1: TMenuItem;
|
||
InsertfilesintoBLOBfields3: TMenuItem;
|
||
N19: TMenuItem;
|
||
setNULL1: TMenuItem;
|
||
menuExporttables: TMenuItem;
|
||
popupDbGridHeader: TPopupMenu;
|
||
SynCompletionProposal: TSynCompletionProposal;
|
||
OpenDialogSQLFile: TOpenDialog;
|
||
SaveDialogSQLFile: TSaveDialog;
|
||
SynEditSearch1: TSynEditSearch;
|
||
tabCommandStats: TTabSheet;
|
||
ListCommandStats: TVirtualStringTree;
|
||
QF13: TMenuItem;
|
||
QF14: TMenuItem;
|
||
QF15: TMenuItem;
|
||
QF16: TMenuItem;
|
||
QF17: TMenuItem;
|
||
QF18: TMenuItem;
|
||
QF19: TMenuItem;
|
||
N21: TMenuItem;
|
||
pnlQueryHelpers: TPanel;
|
||
tabsetQueryHelpers: TTabSet;
|
||
lboxQueryHelpers: TTnTListBox;
|
||
popupQuery: TPopupMenu;
|
||
MenuRun: TMenuItem;
|
||
MenuRunSelection: TMenuItem;
|
||
MenuRunLine: TMenuItem;
|
||
MenuItem1: TMenuItem;
|
||
menucopy: TMenuItem;
|
||
menupaste: TMenuItem;
|
||
menuload: TMenuItem;
|
||
menusave: TMenuItem;
|
||
menuSaveSQL: TMenuItem;
|
||
menuclear: TMenuItem;
|
||
MenuFind: TMenuItem;
|
||
MenuReplace: TMenuItem;
|
||
MenuItem2: TMenuItem;
|
||
lblDataTop: TTNTLabel;
|
||
spltQueryHelpers: TSplitter;
|
||
N22: TMenuItem;
|
||
N23: TMenuItem;
|
||
menuSaveSelectionToFile: TMenuItem;
|
||
menuSaveAsSnippet: TMenuItem;
|
||
menuSaveSelectionAsSnippet: TMenuItem;
|
||
popupQueryHelpers: TPopupMenu;
|
||
menuDeleteSnippet: TMenuItem;
|
||
menuHelp: TMenuItem;
|
||
menuLoadSnippet: TMenuItem;
|
||
menuInsertSnippetAtCursor: TMenuItem;
|
||
menuExplore: TMenuItem;
|
||
menuSQLhelp2: TMenuItem;
|
||
N24: TMenuItem;
|
||
menuSQLhelpData: TMenuItem;
|
||
menuLogToFile: TMenuItem;
|
||
menuOpenLogFolder: TMenuItem;
|
||
tabStatus: TTabSheet;
|
||
ListStatus: TVirtualStringTree;
|
||
Splitter3: TSplitter;
|
||
pnlProcessViewBox: TPanel;
|
||
pnlProcessView: TPanel;
|
||
SynMemoProcessView: TSynMemo;
|
||
pnlFilterVT: TPanel;
|
||
editFilterVT: TTNTEdit;
|
||
lblFilterVT: TLabel;
|
||
lblFilterVTInfo: TLabel;
|
||
menuEditVariable: TMenuItem;
|
||
menuTreeExpandAll: TMenuItem;
|
||
menuTreeCollapseAll: TMenuItem;
|
||
tlbDataButtons: TToolBar;
|
||
tbtnDataSorting: TToolButton;
|
||
tbtnDataColumns: TToolButton;
|
||
tbtnDataFilter: TToolButton;
|
||
pnlFilter: TPanel;
|
||
btnFilterApply: TButton;
|
||
lblTableFilter: TLabel;
|
||
editFilterSearch: TEdit;
|
||
btnFilterClear: TButton;
|
||
popupFilter: TPopupMenu;
|
||
menuFilterCopy: TMenuItem;
|
||
menuFilterPaste: TMenuItem;
|
||
N8: TMenuItem;
|
||
menuFilterApply: TMenuItem;
|
||
menuFilterClear: TMenuItem;
|
||
N20: TMenuItem;
|
||
SynMemoSQLLog: TSynMemo;
|
||
Insert1: TMenuItem;
|
||
Cancelediting1: TMenuItem;
|
||
DataPost1: TMenuItem;
|
||
menuShowSizeColumn: TMenuItem;
|
||
tbtnDataView: TToolButton;
|
||
popupDataView: TPopupMenu;
|
||
menuViewSave: TMenuItem;
|
||
N25: TMenuItem;
|
||
menuViewDefault: TMenuItem;
|
||
CopygriddataasSQL1: TMenuItem;
|
||
CopygriddataasSQL2: TMenuItem;
|
||
menuSelectBGColor: TMenuItem;
|
||
actPreviousTab: TPreviousTab;
|
||
actNextTab: TNextTab;
|
||
Nexttab1: TMenuItem;
|
||
Previoustab1: TMenuItem;
|
||
menuConnectTo: TMenuItem;
|
||
actSelectAll: TAction;
|
||
actSelectAll1: TMenuItem;
|
||
N13: TMenuItem;
|
||
ProgressBarStatus: TProgressBar;
|
||
menuRecentFilters: TMenuItem;
|
||
comboRecentFilters: TTntComboBox;
|
||
lblRecentFilters: TLabel;
|
||
Copy2: TMenuItem;
|
||
N26: TMenuItem;
|
||
actSessionManager: TAction;
|
||
Sessionmanager1: TMenuItem;
|
||
actCreateRoutine: TAction;
|
||
btnExit: TToolButton;
|
||
lblSorryNoData: TLabel;
|
||
menuPrint: TMenuItem;
|
||
menuEditObject: TMenuItem;
|
||
menuCreateObject: TMenuItem;
|
||
menuDeleteObject: TMenuItem;
|
||
menuMaintenance2: TMenuItem;
|
||
menuEmptyTables: TMenuItem;
|
||
actEditObject: TAction;
|
||
menuCreateDB: TMenuItem;
|
||
menuCreateTable: TMenuItem;
|
||
menuCreateTableCopy: TMenuItem;
|
||
menuCreateView: TMenuItem;
|
||
menuCreateRoutine: TMenuItem;
|
||
tabEditor: TTntTabSheet;
|
||
popupRefresh: TPopupMenu;
|
||
menuAutoRefreshSetInterval: TMenuItem;
|
||
menuAutoRefresh: TMenuItem;
|
||
popupMainTabs: TPopupMenu;
|
||
menuNewQueryTab: TMenuItem;
|
||
menuCloseTab: TMenuItem;
|
||
actNewQueryTab: TAction;
|
||
actCloseQueryTab: TAction;
|
||
Newquerytab1: TMenuItem;
|
||
Closetab1: TMenuItem;
|
||
pnlRight: TPanel;
|
||
btnCloseFilterPanel: TPngSpeedButton;
|
||
actFilterPanel: TAction;
|
||
actFindInVT1: TMenuItem;
|
||
TimerFilterVT: TTimer;
|
||
actFindTextOnServer: TAction;
|
||
actFindTextOnServer1: TMenuItem;
|
||
Findtextonserver1: TMenuItem;
|
||
actBulkTableEdit: TAction;
|
||
menuBulkTableEdit: TMenuItem;
|
||
menuQueryHelpersGenerateInsert: TMenuItem;
|
||
menuQueryHelpersGenerateUpdate: TMenuItem;
|
||
menuQueryHelpersGenerateDelete: TMenuItem;
|
||
actCreateTrigger: TAction;
|
||
menuCreateTrigger: TMenuItem;
|
||
menuQueryCut: TMenuItem;
|
||
menuQuerySelectall: TMenuItem;
|
||
procedure refreshMonitorConfig;
|
||
procedure loadWindowConfig;
|
||
procedure saveWindowConfig;
|
||
procedure setDefaultWindowConfig;
|
||
procedure actCreateDBObjectExecute(Sender: TObject);
|
||
procedure menuConnectionsPopup(Sender: TObject);
|
||
procedure actExitApplicationExecute(Sender: TObject);
|
||
procedure DisplayChange(var msg: TMessage); message WM_DISPLAYCHANGE;
|
||
procedure FormClose(Sender: TObject; var Action: TCloseAction);
|
||
procedure FormCreate(Sender: TObject);
|
||
procedure Startup;
|
||
procedure DoAfterConnect;
|
||
procedure DoDisconnect;
|
||
procedure FormResize(Sender: TObject);
|
||
procedure actUserManagerExecute(Sender: TObject);
|
||
procedure actAboutBoxExecute(Sender: TObject);
|
||
procedure actApplyFilterExecute(Sender: TObject);
|
||
procedure actClearEditorExecute(Sender: TObject);
|
||
procedure actTableToolsExecute(Sender: TObject);
|
||
procedure actCopyAsHTMLExecute(Sender: TObject);
|
||
procedure actCopyAsCSVExecute(Sender: TObject);
|
||
procedure actPrintListExecute(Sender: TObject);
|
||
procedure actCopyTableExecute(Sender: TObject);
|
||
procedure showstatus(msg: string=''; panel: Integer=6);
|
||
function mask(str: WideString) : WideString;
|
||
procedure actExecuteQueryExecute(Sender: TObject);
|
||
procedure actExecuteSelectionExecute(Sender: TObject);
|
||
procedure actCopyAsXMLExecute(Sender: TObject);
|
||
procedure actCreateDatabaseExecute(Sender: TObject);
|
||
procedure actDataCancelChangesExecute(Sender: TObject);
|
||
procedure actExportDataExecute(Sender: TObject);
|
||
procedure actExecuteLineExecute(Sender: TObject);
|
||
procedure actHTMLviewExecute(Sender: TObject);
|
||
procedure actInsertFilesExecute(Sender: TObject);
|
||
procedure actDataDeleteExecute(Sender: TObject);
|
||
procedure actDataFirstExecute(Sender: TObject);
|
||
procedure actDataInsertExecute(Sender: TObject);
|
||
procedure actDataLastExecute(Sender: TObject);
|
||
procedure actDataPostChangesExecute(Sender: TObject);
|
||
procedure actDropObjectsExecute(Sender: TObject);
|
||
procedure actEmptyTablesExecute(Sender: TObject);
|
||
procedure actExportSettingsExecute(Sender: TObject);
|
||
procedure actFlushExecute(Sender: TObject);
|
||
procedure actImportCSVExecute(Sender: TObject);
|
||
procedure actImportSettingsExecute(Sender: TObject);
|
||
procedure actLoadSQLExecute(Sender: TObject);
|
||
procedure actNewWindowExecute(Sender: TObject);
|
||
procedure actSessionManagerExecute(Sender: TObject);
|
||
procedure actPreferencesExecute(Sender: TObject);
|
||
procedure actQueryFindExecute(Sender: TObject);
|
||
procedure actQueryReplaceExecute(Sender: TObject);
|
||
procedure actQueryStopOnErrorsExecute(Sender: TObject);
|
||
procedure actQueryWordWrapExecute(Sender: TObject);
|
||
procedure actReadmeExecute(Sender: TObject);
|
||
procedure actRefreshExecute(Sender: TObject);
|
||
procedure actRemoveFilterExecute(Sender: TObject);
|
||
procedure actSaveSQLExecute(Sender: TObject);
|
||
procedure actSaveSQLAsExecute(Sender: TObject);
|
||
procedure actSaveSQLSnippetExecute(Sender: TObject);
|
||
procedure actSetDelimiterExecute(Sender: TObject);
|
||
procedure actSQLhelpExecute(Sender: TObject);
|
||
procedure actUpdateCheckExecute(Sender: TObject);
|
||
procedure actWebbrowse(Sender: TObject);
|
||
procedure FindDialogQueryFind(Sender: TObject);
|
||
procedure ReplaceDialogQueryFind(Sender: TObject);
|
||
procedure ReplaceDialogQueryReplace(Sender: TObject);
|
||
procedure actCopyAsSQLExecute(Sender: TObject);
|
||
procedure actSelectTreeBackgroundExecute(Sender: TObject);
|
||
procedure popupQueryPopup(Sender: TObject);
|
||
procedure lboxQueryHelpersClick(Sender: TObject);
|
||
procedure lboxQueryHelpersDblClick(Sender: TObject);
|
||
procedure tabsetQueryHelpersChange(Sender: TObject; NewTab: Integer;
|
||
var AllowChange: Boolean);
|
||
procedure btnDataClick(Sender: TObject);
|
||
procedure ListTablesChange(Sender: TBaseVirtualTree; Node: PVirtualNode);
|
||
procedure SynCompletionProposalAfterCodeCompletion(Sender: TObject;
|
||
const Value: WideString; Shift: TShiftState; Index: Integer; EndToken: WideChar);
|
||
procedure SynCompletionProposalCodeCompletion(Sender: TObject;
|
||
var Value: WideString; Shift: TShiftState; Index: Integer; EndToken: WideChar);
|
||
procedure SynCompletionProposalExecute(Kind: SynCompletionType;
|
||
Sender: TObject; var CurrentInput: WideString; var x, y: Integer;
|
||
var CanExecute: Boolean);
|
||
procedure PageControlMainChange(Sender: TObject);
|
||
procedure PageControlHostChange(Sender: TObject);
|
||
procedure ValidateControls(Sender: TObject);
|
||
procedure ValidateQueryControls(Sender: TObject);
|
||
procedure RefreshQueryHelpers;
|
||
procedure LoadDatabaseProperties(db: WideString);
|
||
procedure ShowHost;
|
||
procedure ShowDatabase(db: WideString);
|
||
procedure ShowDBProperties(db: WideString);
|
||
function EnsureFullWidth(Grid: TBaseVirtualTree; Column: TColumnIndex; Node: PVirtualNode): Boolean;
|
||
procedure EnsureNodeLoaded(Sender: TBaseVirtualTree; Node: PVirtualNode; WhereClause: WideString);
|
||
procedure EnsureChunkLoaded(Sender: TBaseVirtualTree; Node: PVirtualNode; FullWidth: Boolean = False);
|
||
procedure DiscardNodeData(Sender: TVirtualStringTree; Node: PVirtualNode);
|
||
procedure viewdata(Sender: TObject);
|
||
procedure LogSQL(Msg: WideString; Category: TMySQLLogCategory=lcInfo);
|
||
procedure KillProcess(Sender: TObject);
|
||
procedure ExecSQLClick(Sender: TObject; Selection: Boolean = false;
|
||
CurrentLine: Boolean=false);
|
||
procedure SynMemoQueryStatusChange(Sender: TObject; Changes: TSynStatusChanges);
|
||
procedure TimerHostUptimeTimer(Sender: TObject);
|
||
procedure FormActivate(Sender: TObject);
|
||
procedure ListTablesNewText(Sender: TBaseVirtualTree; Node: PVirtualNode;
|
||
Column: TColumnIndex; NewText: WideString);
|
||
procedure TimerConnectedTimer(Sender: TObject);
|
||
procedure Clear2Click(Sender: TObject);
|
||
procedure QuickFilterClick(Sender: TObject);
|
||
procedure popupResultGridPopup(Sender: TObject);
|
||
procedure AutoRefreshSetInterval(Sender: TObject);
|
||
procedure AutoRefreshToggle(Sender: TObject);
|
||
procedure SynMemoQueryDragOver(Sender, Source: TObject; X, Y: Integer;
|
||
State: TDragState; var Accept: Boolean);
|
||
procedure SynMemoQueryDragDrop(Sender, Source: TObject; X, Y: Integer);
|
||
procedure SynMemoQueryDropFiles(Sender: TObject; X, Y: Integer;
|
||
AFiles: TUnicodeStrings);
|
||
procedure popupHostPopup(Sender: TObject);
|
||
procedure Saveastextfile1Click(Sender: TObject);
|
||
procedure popupDBPopup(Sender: TObject);
|
||
procedure SaveDialogExportDataTypeChange(Sender: TObject);
|
||
procedure popupDataGridPopup(Sender: TObject);
|
||
procedure InsertDate(Sender: TObject);
|
||
procedure setNULL1Click(Sender: TObject);
|
||
procedure MenuTablelistColumnsClick(Sender: TObject);
|
||
procedure QueryLoad( filename: String; ReplaceContent: Boolean = true );
|
||
procedure DataGridChange(Sender: TBaseVirtualTree; Node: PVirtualNode);
|
||
procedure DataGridCreateEditor(Sender: TBaseVirtualTree; Node: PVirtualNode;
|
||
Column: TColumnIndex; out EditLink: IVTEditLink);
|
||
procedure DataGridEditCancelled(Sender: TBaseVirtualTree; Column: TColumnIndex);
|
||
procedure DataGridEdited(Sender: TBaseVirtualTree; Node: PVirtualNode; Column:
|
||
TColumnIndex);
|
||
procedure DataGridEditing(Sender: TBaseVirtualTree; Node: PVirtualNode; Column:
|
||
TColumnIndex; var Allowed: Boolean);
|
||
procedure DataGridFocusChanging(Sender: TBaseVirtualTree; OldNode, NewNode:
|
||
PVirtualNode; OldColumn, NewColumn: TColumnIndex; var Allowed: Boolean);
|
||
procedure GridGetText(Sender: TBaseVirtualTree; Node: PVirtualNode; Column:
|
||
TColumnIndex; TextType: TVSTTextType; var CellText: WideString);
|
||
procedure DataGridHeaderClick(Sender: TVTHeader; HitInfo: TVTHeaderHitInfo);
|
||
procedure GridKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
||
procedure DataGridNewText(Sender: TBaseVirtualTree; Node: PVirtualNode; Column:
|
||
TColumnIndex; NewText: WideString);
|
||
procedure GridPaintText(Sender: TBaseVirtualTree; const TargetCanvas:
|
||
TCanvas; Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType);
|
||
procedure menuDeleteSnippetClick(Sender: TObject);
|
||
procedure menuExploreClick(Sender: TObject);
|
||
procedure menuInsertSnippetAtCursorClick(Sender: TObject);
|
||
procedure menuLoadSnippetClick(Sender: TObject);
|
||
procedure vstGetNodeDataSize(Sender: TBaseVirtualTree; var
|
||
NodeDataSize: Integer);
|
||
procedure vstInitNode(Sender: TBaseVirtualTree; ParentNode, Node:
|
||
PVirtualNode; var InitialStates: TVirtualNodeInitStates);
|
||
procedure vstFreeNode(Sender: TBaseVirtualTree; Node: PVirtualNode);
|
||
procedure vstGetText(Sender: TBaseVirtualTree; Node: PVirtualNode;
|
||
Column: TColumnIndex; TextType: TVSTTextType; var CellText: WideString);
|
||
procedure vstGetImageIndex(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Kind: TVTImageKind; Column: TColumnIndex; var Ghosted:
|
||
Boolean; var ImageIndex: Integer);
|
||
procedure vstHeaderClick(Sender: TVTHeader; HitInfo: TVTHeaderHitInfo);
|
||
procedure vstCompareNodes(Sender: TBaseVirtualTree; Node1, Node2:
|
||
PVirtualNode; Column: TColumnIndex; var Result: Integer);
|
||
procedure vstHeaderDraggedOut(Sender: TVTHeader; Column: TColumnIndex;
|
||
DropPosition: TPoint);
|
||
procedure DBtreeFocusChanged(Sender: TBaseVirtualTree; Node: PVirtualNode;
|
||
Column: TColumnIndex);
|
||
procedure DBtreeDblClick(Sender: TObject);
|
||
procedure DBtreeGetImageIndex(Sender: TBaseVirtualTree; Node: PVirtualNode;
|
||
Kind: TVTImageKind; Column: TColumnIndex; var Ghosted: Boolean; var
|
||
ImageIndex: Integer);
|
||
procedure DBtreeGetNodeDataSize(Sender: TBaseVirtualTree; var NodeDataSize:
|
||
Integer);
|
||
procedure DBtreeGetText(Sender: TBaseVirtualTree; Node: PVirtualNode; Column:
|
||
TColumnIndex; TextType: TVSTTextType; var CellText: WideString);
|
||
procedure DBtreeInitChildren(Sender: TBaseVirtualTree; Node: PVirtualNode; var
|
||
ChildCount: Cardinal);
|
||
procedure DBtreeInitNode(Sender: TBaseVirtualTree; ParentNode, Node:
|
||
PVirtualNode; var InitialStates: TVirtualNodeInitStates);
|
||
procedure DBtreePaintText(Sender: TBaseVirtualTree; const TargetCanvas:
|
||
TCanvas; Node: PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType);
|
||
procedure editFilterSearchChange(Sender: TObject);
|
||
procedure editFilterSearchEnter(Sender: TObject);
|
||
procedure editFilterSearchExit(Sender: TObject);
|
||
procedure menuLogToFileClick(Sender: TObject);
|
||
procedure menuOpenLogFolderClick(Sender: TObject);
|
||
procedure vstGetHint(Sender: TBaseVirtualTree; Node: PVirtualNode;
|
||
Column: TColumnIndex; var LineBreakStyle: TVTTooltipLineBreakStyle; var
|
||
HintText: WideString);
|
||
procedure ListCommandStatsBeforeCellPaint(Sender: TBaseVirtualTree;
|
||
TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
|
||
CellPaintMode: TVTCellPaintMode; CellRect: TRect; var ContentRect: TRect);
|
||
procedure ListProcessesFocusChanged(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex);
|
||
procedure editFilterVTChange(Sender: TObject);
|
||
procedure ListVariablesDblClick(Sender: TObject);
|
||
procedure menuEditVariableClick(Sender: TObject);
|
||
procedure menuTreeCollapseAllClick(Sender: TObject);
|
||
procedure menuTreeExpandAllClick(Sender: TObject);
|
||
procedure SynMemoFilterChange(Sender: TObject);
|
||
procedure DataGridAfterCellPaint(Sender: TBaseVirtualTree;
|
||
TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
|
||
CellRect: TRect);
|
||
procedure menuShowSizeColumnClick(Sender: TObject);
|
||
procedure DataGridColumnResize(Sender: TVTHeader; Column: TColumnIndex);
|
||
procedure GridBeforeCellPaint(Sender: TBaseVirtualTree;
|
||
TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
|
||
CellPaintMode: TVTCellPaintMode; CellRect: TRect; var ContentRect: TRect);
|
||
procedure popupDataViewPopup(Sender: TObject);
|
||
procedure menuViewDefaultClick(Sender: TObject);
|
||
procedure menuViewSaveClick(Sender: TObject);
|
||
procedure QueryGridFocusChanged(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex);
|
||
procedure pnlQueryHelpersCanResize(Sender: TObject; var NewWidth,
|
||
NewHeight: Integer; var Resize: Boolean);
|
||
procedure pnlQueryMemoCanResize(Sender: TObject; var NewWidth,
|
||
NewHeight: Integer; var Resize: Boolean);
|
||
procedure DataGridMouseUp(Sender: TObject; Button: TMouseButton;
|
||
Shift: TShiftState; X, Y: Integer);
|
||
procedure File1Click(Sender: TObject);
|
||
procedure ListVariablesBeforePaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas);
|
||
procedure ListStatusBeforePaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas);
|
||
procedure ListProcessesBeforePaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas);
|
||
procedure ListCommandStatsBeforePaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas);
|
||
procedure vstAfterPaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas);
|
||
procedure actCopyOrCutExecute(Sender: TObject);
|
||
procedure actPasteExecute(Sender: TObject);
|
||
procedure actSelectAllExecute(Sender: TObject);
|
||
procedure EnumerateRecentFilters;
|
||
procedure LoadRecentFilter(Sender: TObject);
|
||
procedure DataGridScroll(Sender: TBaseVirtualTree; DeltaX, DeltaY: Integer);
|
||
procedure ListTablesEditing(Sender: TBaseVirtualTree; Node: PVirtualNode;
|
||
Column: TColumnIndex; var Allowed: Boolean);
|
||
procedure DBtreeChange(Sender: TBaseVirtualTree; Node: PVirtualNode);
|
||
procedure actEditObjectExecute(Sender: TObject);
|
||
procedure ListTablesDblClick(Sender: TObject);
|
||
procedure panelTopDblClick(Sender: TObject);
|
||
procedure PageControlMainMouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
|
||
procedure actNewQueryTabExecute(Sender: TObject);
|
||
procedure actCloseQueryTabExecute(Sender: TObject);
|
||
procedure menuCloseQueryTab(Sender: TObject);
|
||
procedure CloseQueryTab(PageIndex: Integer);
|
||
procedure CloseButtonOnMouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
|
||
function GetMainTabAt(X, Y: Integer): Integer;
|
||
procedure FixQueryTabCloseButtons;
|
||
function ActiveQueryTab: TQueryTab;
|
||
function ActiveQueryMemo: TSynMemo;
|
||
function ActiveQueryHelpers: TTntListBox;
|
||
function ActiveQueryTabset: TTabset;
|
||
function QueryTabActive: Boolean;
|
||
function IsQueryTab(PageIndex: Integer; IncludeFixed: Boolean): Boolean;
|
||
procedure popupMainTabsPopup(Sender: TObject);
|
||
procedure FormCloseQuery(Sender: TObject; var CanClose: Boolean);
|
||
procedure comboOnlyDBsChange(Sender: TObject);
|
||
procedure comboOnlyDBsExit(Sender: TObject);
|
||
procedure comboOnlyDBsDragOver(Sender, Source: TObject; X, Y: Integer; State: TDragState;
|
||
var Accept: Boolean);
|
||
procedure comboOnlyDBsDragDrop(Sender, Source: TObject; X, Y: Integer);
|
||
procedure comboOnlyDBsKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
||
procedure actFilterPanelExecute(Sender: TObject);
|
||
procedure TimerFilterVTTimer(Sender: TObject);
|
||
procedure PageControlMainContextPopup(Sender: TObject; MousePos: TPoint; var Handled: Boolean);
|
||
procedure menuQueryHelpersGenerateStatementClick(Sender: TObject);
|
||
private
|
||
ReachedEOT : Boolean;
|
||
FDelimiter: String;
|
||
viewingdata : Boolean;
|
||
EditVariableForm : TfrmEditVariable;
|
||
FileNameSessionLog : String;
|
||
FileHandleSessionLog : Textfile;
|
||
SelectedTableColumns,
|
||
SelectedTableKeys,
|
||
SelectedTableForeignKeys : TObjectList;
|
||
FilterPanelManuallyOpened : Boolean;
|
||
DataGridDB, DataGridTable : WideString;
|
||
PrevTableColWidths : TWideStringList;
|
||
DataGridHasChanges : Boolean;
|
||
FLastMouseUpOnPageControl : Cardinal;
|
||
FLastTabNumberOnMouseUp : Integer;
|
||
DataGridResult : TGridResult;
|
||
// Filter text per tab for filter panel
|
||
FilterTextVariables, FilterTextStatus, FilterTextProcessList, FilterTextCommandStats,
|
||
FilterTextDatabase, FilterTextData: WideString;
|
||
function GetParamValue(const paramChar: Char; const paramName:
|
||
string; var curIdx: Byte; out paramValue: string): Boolean;
|
||
procedure SetDelimiter(Value: String);
|
||
procedure DisplayRowCountStats(MatchingRows: Int64 = -1);
|
||
procedure insertFunction(Sender: TObject);
|
||
function GetActiveDatabase: WideString;
|
||
function GetSelectedTable: TListNode;
|
||
procedure SetSelectedDatabase(db: WideString);
|
||
procedure SetVisibleListColumns( List: TVirtualStringTree; Columns: TWideStringList );
|
||
procedure ToggleFilterPanel(ForceVisible: Boolean = False);
|
||
procedure AutoCalcColWidths(Tree: TVirtualStringTree; PrevLayout: TWideStringlist = nil);
|
||
function PlaceObjectEditor(Which: TListNodeType): TDBObjectEditor;
|
||
procedure SetTabCaption(PageIndex: Integer; Text: WideString);
|
||
function ConfirmTabClose(PageIndex: Integer): Boolean;
|
||
procedure SaveQueryMemo(Tab: TQueryTab; Filename: String; OnlySelection: Boolean);
|
||
procedure UpdateFilterPanel(Sender: TObject);
|
||
procedure DatabaseChanged(Database: WideString);
|
||
public
|
||
Connection: TMySQLConnection;
|
||
cancelling: Boolean;
|
||
virtualDesktopName: string;
|
||
TableToolsDialog: TfrmTableTools;
|
||
ViewEditor: TfrmView;
|
||
UserManagerForm: TUserManagerForm;
|
||
SelectDBObjectForm: TfrmSelectDBObject;
|
||
SQLHelpForm: TfrmSQLhelp;
|
||
RoutineEditor: TfrmRoutineEditor;
|
||
TriggerEditor: TfrmTriggerEditor;
|
||
OptionsForm: Toptionsform;
|
||
SessionManager: TConnForm;
|
||
AllDatabases, Databases: TWideStringList;
|
||
TemporaryDatabase : WideString;
|
||
dataselected : Boolean;
|
||
editing : Boolean;
|
||
WindowNumber : Integer;
|
||
SessionName : String;
|
||
VTRowDataListVariables,
|
||
VTRowDataListStatus,
|
||
VTRowDataListProcesses,
|
||
VTRowDataListCommandStats,
|
||
VTRowDataListTables : TVTreeDataArray;
|
||
// Variables set by preferences dialog
|
||
prefRememberFilters : Boolean;
|
||
prefLogsqlnum,
|
||
prefLogSqlWidth,
|
||
prefMaxColWidth,
|
||
prefMaxTotalRows : Integer;
|
||
prefCSVSeparator,
|
||
prefCSVEncloser,
|
||
prefCSVTerminator : String[10];
|
||
prefLogToFile,
|
||
prefEnableBinaryEditor,
|
||
prefEnableDatetimeEditor,
|
||
prefEnableEnumEditor,
|
||
prefEnableSetEditor,
|
||
prefEnableNullBG,
|
||
prefExportLocaleNumbers : Boolean;
|
||
prefNullColorDefault,
|
||
prefNullBG : TColor;
|
||
CreateDatabaseForm : TCreateDatabaseForm;
|
||
TableEditor : TfrmTableEditor;
|
||
InsertFiles : TfrmInsertFiles;
|
||
FDataGridSelect : TWideStringList;
|
||
FDataGridSort : TOrderColArray;
|
||
DataGridCurrentSelect,
|
||
DataGridCurrentFullSelect,
|
||
DataGridCurrentFrom,
|
||
DataGridCurrentFilter,
|
||
DataGridCurrentSort : WideString;
|
||
btnAddTab : TPngSpeedButton;
|
||
QueryTabs : TObjectList;
|
||
SelectedTableCreateStatement: WideString;
|
||
|
||
property Delimiter: String read FDelimiter write SetDelimiter;
|
||
procedure CallSQLHelpWithKeyword( keyword: String );
|
||
procedure AddOrRemoveFromQueryLoadHistory( filename: String;
|
||
AddIt: Boolean = true; CheckIfFileExists: Boolean = true );
|
||
procedure popupQueryLoadClick( sender: TObject );
|
||
procedure FillPopupQueryLoad;
|
||
procedure PopupQueryLoadRemoveAbsentFiles( sender: TObject );
|
||
procedure SessionConnect(Sender: TObject);
|
||
function InitConnection(parHost, parSocketname, parPort, parUser, parPass, parCompress, parSession: WideString): Boolean;
|
||
|
||
function ActiveGrid: TVirtualStringTree;
|
||
function GridResult(Grid: TBaseVirtualTree): TGridResult; overload;
|
||
function GridResult(PageIndex: Integer): TGridResult; overload;
|
||
|
||
property ActiveDatabase : WideString read GetActiveDatabase write SetSelectedDatabase;
|
||
property SelectedTable : TListNode read GetSelectedTable;
|
||
|
||
procedure TestVTreeDataArray( P: PVTreeDataArray );
|
||
function GetVTreeDataArray( VT: TBaseVirtualTree ): PVTreeDataArray;
|
||
procedure ActivateFileLogging;
|
||
procedure DeactivateFileLogging;
|
||
procedure TrimSQLLog;
|
||
function GetTreeNodeType(Tree: TBaseVirtualTree; Node: PVirtualNode): TListNodeType;
|
||
function GetFocusedTreeNodeType: TListNodeType;
|
||
procedure RefreshTree(DoResetTableCache: Boolean; SelectDatabase: WideString = '');
|
||
procedure RefreshTreeDB(db: WideString);
|
||
function FindDBNode(db: WideString): PVirtualNode;
|
||
function GridPostUpdate(Sender: TBaseVirtualTree): Boolean;
|
||
function GridPostInsert(Sender: TBaseVirtualTree): Boolean;
|
||
function GridPostDelete(Sender: TBaseVirtualTree): Boolean;
|
||
function DataGridPostUpdateOrInsert(Node: PVirtualNode): Boolean;
|
||
procedure GridFinalizeEditing(Sender: TBaseVirtualTree);
|
||
function GetWhereClause(Row: PGridRow; Columns: PGridColumns): WideString;
|
||
function GetKeyColumns: TWideStringlist;
|
||
function CheckUniqueKeyClause: Boolean;
|
||
procedure DataGridInsertRow;
|
||
procedure DataGridCancel(Sender: TObject);
|
||
procedure CalcNullColors;
|
||
procedure FillDataViewPopup;
|
||
procedure GetDataViews(List: TStrings);
|
||
procedure DataViewClick(Sender: TObject);
|
||
procedure LoadDataView(ViewName: String);
|
||
function GetRegKeyTable: String;
|
||
procedure SaveListSetup( List: TVirtualStringTree );
|
||
procedure RestoreListSetup( List: TVirtualStringTree );
|
||
procedure SetEditorTabCaption(Editor: TDBObjectEditor; ObjName: WideString);
|
||
procedure SetWindowCaption;
|
||
procedure OnMessageHandler(var Msg: TMsg; var Handled: Boolean);
|
||
function MaskMulti(str: WideString): WideString;
|
||
procedure SelectDBObject(Text: WideString; NodeType: TListNodeType);
|
||
procedure SetupSynEditors;
|
||
end;
|
||
|
||
|
||
var
|
||
MainForm : TMainForm;
|
||
AppVersion : String = '4.0';
|
||
AppRevision : String = '$Rev$';
|
||
FullAppVersion : String;
|
||
DirnameCommonAppData,
|
||
DirnameUserAppData,
|
||
DirnameSnippets,
|
||
DirnameSessionLogs : String;
|
||
|
||
const
|
||
discname = 'not connected';
|
||
ICON_MYSELF_CONNECTED = 38;
|
||
ICON_MYSELF_DISCONNECTED = -1;
|
||
ICON_OTHER_CONNECTED = 36;
|
||
ICON_OTHER_DISCONNECTED = -1;
|
||
// The InnoDB folks are raging over the lack of count(*) support
|
||
// in the storage engine. To avoid count(*), the first of these
|
||
// constants decide how many rows the data area should estimate
|
||
// in any table. The second value decides how many percent above the
|
||
// number of seen (or simulated) rows the scrollbar should project.
|
||
SIMULATE_INITIAL_ROWS = 10000;
|
||
SIMULATE_MORE_ROWS = 20;
|
||
MSG_UPDATECHECK = WM_USER + 1;
|
||
MSG_ABOUT = WM_USER + 2;
|
||
|
||
{$I const.inc}
|
||
|
||
|
||
implementation
|
||
|
||
uses
|
||
About, loaddata, printlist, copytable,
|
||
mysql_structures, UpdateCheck, uVistaFuncs, runsqlfile, column_selection,
|
||
data_sorting, grideditlinks, dataviewsave;
|
||
|
||
|
||
{$R *.DFM}
|
||
|
||
|
||
procedure TMainForm.showstatus(msg: string=''; panel: Integer=6);
|
||
begin
|
||
// show Message in statusbar
|
||
StatusBar.Panels[panel].Text := msg;
|
||
StatusBar.Repaint;
|
||
end;
|
||
|
||
procedure TMainForm.refreshMonitorConfig;
|
||
var
|
||
Screen: TScreen;
|
||
Monitor: TMonitor;
|
||
Name: String;
|
||
i: Integer;
|
||
begin
|
||
debug('main: Refresh monitor configuration.');
|
||
// Monitors are enumerated when a TScreen is constructed;
|
||
// so we have to construct a new TScreen.
|
||
Screen := TScreen.Create(nil);
|
||
Name := '';
|
||
virtualDesktopName := 'WindowPos_';
|
||
try
|
||
for i := 1 to Screen.MonitorCount do begin
|
||
Monitor := Screen.Monitors[i - 1];
|
||
Name := Name +
|
||
IntToStr(Monitor.Left) + 'x_' +
|
||
IntToStr(Monitor.Top) + 'y_' +
|
||
IntToStr(Monitor.Width) + 'w_' +
|
||
IntToStr(Monitor.Height) + 'h'
|
||
;
|
||
end;
|
||
virtualDesktopName := virtualDesktopName + Name;
|
||
finally
|
||
Screen.Free;
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.saveWindowConfig;
|
||
var
|
||
ws: String;
|
||
begin
|
||
OpenRegistry;
|
||
with MainReg do begin
|
||
if OpenKey(REGPATH + virtualDesktopName + '\', True) then begin
|
||
// Convert set to string.
|
||
if WindowState = wsNormal then ws := 'Normal' else
|
||
if WindowState = wsMinimized then ws := 'Minimized' else
|
||
if WindowState = wsMaximized then ws := 'Maximized';
|
||
// Set WindowState to normal to put the correct restore bounds in
|
||
// Left, Top, Width and Height; the call is processed immediately.
|
||
WindowState := wsNormal;
|
||
// Write out the results.
|
||
WriteString(REGNAME_WINDOWSTATE, ws);
|
||
WriteInteger(REGNAME_WINDOWLEFT, Left);
|
||
WriteInteger(REGNAME_WINDOWTOP, Top);
|
||
WriteInteger(REGNAME_WINDOWWIDTH, Width);
|
||
WriteInteger(REGNAME_WINDOWHEIGHT, Height);
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.loadWindowConfig;
|
||
var
|
||
ws: String;
|
||
begin
|
||
// Called on application start or when monitor configuration has changed.
|
||
OpenRegistry;
|
||
with MainReg do begin
|
||
if not OpenKey(REGPATH + virtualDesktopName + '\', False) then begin
|
||
// Switch to default configuration if nothing was stored.
|
||
setDefaultWindowConfig;
|
||
end else begin
|
||
// If found, load stored configuration for MainForm.
|
||
Left := ReadInteger(REGNAME_WINDOWLEFT);
|
||
Top := ReadInteger(REGNAME_WINDOWTOP);
|
||
Width := ReadInteger(REGNAME_WINDOWWIDTH);
|
||
Height := ReadInteger(REGNAME_WINDOWHEIGHT);
|
||
ws := ReadString(REGNAME_WINDOWSTATE);
|
||
if ws = 'Normal' then WindowState := wsNormal else
|
||
if ws = 'Minimized' then WindowState := wsMinimized else
|
||
if ws = 'Maximized' then WindowState := wsMaximized;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.setDefaultWindowConfig;
|
||
begin
|
||
// If there are any default adjustments for the main form
|
||
// when no window config is found, they should go here.
|
||
end;
|
||
|
||
procedure TMainForm.actExitApplicationExecute(Sender: TObject);
|
||
begin
|
||
Close;
|
||
end;
|
||
|
||
procedure TMainForm.actFlushExecute(Sender: TObject);
|
||
var
|
||
flushwhat: String;
|
||
begin
|
||
flushwhat := UpperCase(TAction(Sender).Caption);
|
||
delete(flushwhat, pos('&', flushwhat), 1);
|
||
try
|
||
Connection.Query('FLUSH ' + flushwhat);
|
||
if Sender = actFlushTableswithreadlock then begin
|
||
MessageDlg(
|
||
'Tables have been flushed and read lock acquired.'#10 +
|
||
'Perform backup or snapshot of table data files now.'#10 +
|
||
'Press OK to unlock when done...',
|
||
mtInformation, [mbOk], 0
|
||
);
|
||
Connection.Query('UNLOCK TABLES');
|
||
end;
|
||
except
|
||
on E:Exception do
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.DisplayChange(var msg: TMessage);
|
||
begin
|
||
// At this point, the virtual desktop reconfiguration is complete,
|
||
// but windows have not yet been resized and repositioned.
|
||
//
|
||
// HeidiSQL could save the current config here, and do a restore
|
||
// after the automatic resize/reposition is done; this is signalled
|
||
// by the first WM_WINDOWPOSCHANGED event to arrive after this procedure
|
||
// has completed.
|
||
//
|
||
// However, that would require a complete save/restore for all windows,
|
||
// not just the main window, so it would be a bit annoying to code.
|
||
//
|
||
// So for now, HeidiSQL trusts MS-Windows to replace windows correctly,
|
||
// which has the slight annoyance factor that a user connecting with
|
||
// remote desktop will have an automatic replacement applied instead
|
||
// of a save/load transition using the last parameters for that virtual
|
||
// desktop.
|
||
|
||
// (no save here - see above.)
|
||
refreshMonitorConfig;
|
||
// (no wait for WindowPosChanged + load here - see above.)
|
||
end;
|
||
|
||
procedure TMainForm.FormCloseQuery(Sender: TObject; var CanClose: Boolean);
|
||
var
|
||
i: Integer;
|
||
begin
|
||
// Ask if SQL should be saved
|
||
for i:=0 to QueryTabs.Count-1 do begin
|
||
CanClose := ConfirmTabClose(i+tabQuery.PageIndex);
|
||
if not CanClose then
|
||
break;
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.FormClose(Sender: TObject; var Action: TCloseAction);
|
||
var
|
||
filename : String;
|
||
begin
|
||
// Destroy editors and dialogs. Must be done before connection gets closed, as some destructors do SQL stuff.
|
||
FreeAndNil(RoutineEditor);
|
||
FreeAndNil(TableToolsDialog);
|
||
FreeAndNil(UserManagerForm);
|
||
FreeAndNil(ViewEditor);
|
||
FreeAndNil(SelectDBObjectForm);
|
||
FreeAndNil(SQLHelpForm);
|
||
FreeAndNil(OptionsForm);
|
||
FreeAndNil(SessionManager);
|
||
FreeAndNil(TableEditor);
|
||
FreeAndNil(TriggerEditor);
|
||
FreeAndNil(CreateDatabaseForm);
|
||
|
||
// Close database connection
|
||
DoDisconnect;
|
||
|
||
OpenRegistry;
|
||
// Position of Toolbars
|
||
MainReg.WriteInteger(REGNAME_TOOLBAR2LEFT, ToolBarStandard.Left);
|
||
MainReg.WriteInteger(REGNAME_TOOLBAR2TOP, ToolBarStandard.Top);
|
||
MainReg.WriteInteger(REGNAME_TOOLBARDATALEFT, ToolBarData.Left);
|
||
MainReg.WriteInteger(REGNAME_TOOLBARDATATOP, ToolBarData.Top);
|
||
MainReg.WriteInteger(REGNAME_TOOLBARQUERYLEFT, ToolBarQuery.Left);
|
||
MainReg.WriteInteger(REGNAME_TOOLBARQUERYTOP, ToolBarQuery.Top);
|
||
MainReg.WriteBool(REGNAME_STOPONERRORSINBATCH, actQueryStopOnErrors.Checked);
|
||
|
||
// Save delimiter
|
||
MainReg.WriteString( REGNAME_DELIMITER, Delimiter );
|
||
|
||
MainReg.WriteInteger( REGNAME_QUERYMEMOHEIGHT, pnlQueryMemo.Height );
|
||
MainReg.WriteInteger( REGNAME_QUERYHELPERSWIDTH, pnlQueryHelpers.Width );
|
||
MainReg.WriteInteger( REGNAME_DBTREEWIDTH, pnlLeft.width );
|
||
MainReg.WriteInteger( REGNAME_SQLOUTHEIGHT, SynMemoSQLLog.Height );
|
||
|
||
// Filter panel
|
||
MainReg.WriteBool(REGNAME_FILTERACTIVE, pnlFilterVT.Tag=Integer(True));
|
||
|
||
// Save width of probably resized columns of all VirtualTrees
|
||
SaveListSetup(ListVariables);
|
||
SaveListSetup(ListStatus);
|
||
SaveListSetup(ListProcesses);
|
||
SaveListSetup(ListCommandStats);
|
||
SaveListSetup(ListTables);
|
||
|
||
debug('mem: clearing query and browse data.');
|
||
SetLength(DataGridResult.Rows, 0);
|
||
SetLength(DataGridResult.Columns, 0);
|
||
|
||
Action := caFree;
|
||
|
||
saveWindowConfig;
|
||
|
||
filename := GetTempDir+'\'+APPNAME+'-preview.';
|
||
if FileExists(filename+'html') then
|
||
deletefile(filename+'html');
|
||
if FileExists(filename+'jpg') then
|
||
deletefile(filename+'jpg');
|
||
if FileExists(filename+'gif') then
|
||
deletefile(filename+'gif');
|
||
if FileExists(filename+'bmp') then
|
||
deletefile(filename+'bmp');
|
||
if MainReg <> nil then begin
|
||
MainReg.CloseKey;
|
||
MainReg.Free;
|
||
end;
|
||
end;
|
||
|
||
|
||
{***
|
||
OnCreate Event
|
||
Important to set the windowstate here instead of in OnShow
|
||
because possible windowstate-switching is done with an animation
|
||
if set in Windows. This animation takes some milliseconds
|
||
to complete and can be annoying.
|
||
}
|
||
procedure TMainForm.FormCreate(Sender: TObject);
|
||
var
|
||
i: Integer;
|
||
menuitem : TMenuItem;
|
||
datafontname : String;
|
||
datafontsize : Integer;
|
||
DisableProcessWindowsGhostingProc: procedure;
|
||
QueryTab: TQueryTab;
|
||
Action: TAction;
|
||
begin
|
||
caption := APPNAME;
|
||
setLocales;
|
||
|
||
// Make Vista miniature window work.
|
||
//Application.MainFormOnTaskBar := True;
|
||
|
||
// Use new Vista dialogs per default.
|
||
//UseLatestCommonDialogs := True;
|
||
|
||
refreshMonitorConfig;
|
||
loadWindowConfig;
|
||
|
||
// Beautify AppRevision
|
||
if Pos('$Rev: WC', AppRevision) < 1 then
|
||
AppRevision := 'unknown'
|
||
else begin
|
||
AppRevision := StringReplace( AppRevision, '$Rev: WC', '', [rfIgnoreCase] );
|
||
AppRevision := StringReplace( AppRevision, '$', '', [] );
|
||
AppRevision := Trim( AppRevision );
|
||
end;
|
||
// Compose full version string
|
||
FullAppVersion := 'Version ' + AppVersion + ', Revision ' + AppRevision;
|
||
|
||
// "All users" folder for HeidiSQL's data (All Users\Application Data)
|
||
DirnameCommonAppData := GetShellFolder(CSIDL_COMMON_APPDATA) + '\' + APPNAME + '\';
|
||
|
||
// User folder for HeidiSQL's data (<user name>\Application Data)
|
||
DirnameUserAppData := GetShellFolder(CSIDL_APPDATA) + '\' + APPNAME + '\';
|
||
// Ensure directory exists
|
||
ForceDirectories(DirnameUserAppData);
|
||
|
||
// Folder which contains snippet-files
|
||
DirnameSnippets := DirnameCommonAppData + 'Snippets\';
|
||
|
||
// Folder for session logfiles
|
||
DirnameSessionLogs := DirnameUserAppData + 'Sessionlogs\';
|
||
|
||
TemporaryDatabase := '';
|
||
|
||
// SQLFiles-History
|
||
FillPopupQueryLoad;
|
||
|
||
Delimiter := GetRegValue(REGNAME_DELIMITER, DEFAULT_DELIMITER);
|
||
|
||
// Delphi work around to force usage of Vista's default font (other OSes will be unaffected)
|
||
SetVistaFonts(Font);
|
||
InheritFont(Font);
|
||
InheritFont(tabsetQueryHelpers.Font);
|
||
InheritFont(SynCompletionProposal.Font);
|
||
|
||
// Enable auto completion in data tab, filter editor
|
||
SynCompletionProposal.AddEditor(SynMemoFilter);
|
||
|
||
// Fix node height on Virtual Trees for current DPI settings
|
||
FixVT(DBTree);
|
||
FixVT(ListVariables);
|
||
FixVT(ListStatus);
|
||
FixVT(ListProcesses);
|
||
FixVT(ListCommandStats);
|
||
FixVT(ListTables);
|
||
|
||
// Position of Toolbars
|
||
ToolBarStandard.Left := GetRegValue(REGNAME_TOOLBAR2LEFT, ToolBarStandard.Left);
|
||
ToolBarStandard.Top := GetRegValue(REGNAME_TOOLBAR2TOP, ToolBarStandard.Top);
|
||
ToolBarData.Left := GetRegValue(REGNAME_TOOLBARDATALEFT, ToolBarData.Left);
|
||
ToolBarData.Top := GetRegValue(REGNAME_TOOLBARDATATOP, ToolBarData.Top);
|
||
ToolBarQuery.Left := GetRegValue(REGNAME_TOOLBARQUERYLEFT, ToolBarQuery.Left);
|
||
ToolBarQuery.Top := GetRegValue(REGNAME_TOOLBARQUERYTOP, ToolBarQuery.Top);
|
||
actQueryStopOnErrors.Checked := GetRegValue(REGNAME_STOPONERRORSINBATCH, DEFAULT_STOPONERRORSINBATCH);
|
||
|
||
pnlQueryMemo.Height := GetRegValue(REGNAME_QUERYMEMOHEIGHT, pnlQueryMemo.Height);
|
||
pnlQueryHelpers.Width := GetRegValue(REGNAME_QUERYHELPERSWIDTH, pnlQueryHelpers.Width);
|
||
pnlLeft.Width := GetRegValue(REGNAME_DBTREEWIDTH, pnlLeft.Width);
|
||
SynMemoSQLLog.Height := GetRegValue(REGNAME_SQLOUTHEIGHT, SynMemoSQLLog.Height);
|
||
// Force status bar position to below log memo
|
||
StatusBar.Top := SynMemoSQLLog.Top + SynMemoSQLLog.Height;
|
||
prefMaxColWidth := GetRegValue(REGNAME_MAXCOLWIDTH, DEFAULT_MAXCOLWIDTH);
|
||
prefMaxTotalRows := GetRegValue(REGNAME_MAXTOTALROWS, DEFAULT_MAXTOTALROWS);
|
||
// Fix registry entry from older versions which can have 0 here which makes no sense
|
||
// since the autosetting was removed
|
||
if prefMaxColWidth <= 0 then
|
||
prefMaxColWidth := DEFAULT_MAXCOLWIDTH;
|
||
prefLogsqlnum := GetRegValue(REGNAME_LOGSQLNUM, DEFAULT_LOGSQLNUM);
|
||
prefLogSqlWidth := GetRegValue(REGNAME_LOGSQLWIDTH, DEFAULT_LOGSQLWIDTH);
|
||
prefCSVSeparator := GetRegValue(REGNAME_CSV_SEPARATOR, DEFAULT_CSV_SEPARATOR);
|
||
prefCSVEncloser := GetRegValue(REGNAME_CSV_ENCLOSER, DEFAULT_CSV_ENCLOSER);
|
||
prefCSVTerminator := GetRegValue(REGNAME_CSV_TERMINATOR, DEFAULT_CSV_TERMINATOR);
|
||
prefExportLocaleNumbers := GetRegValue(REGNAME_EXPORT_LOCALENUMBERS, DEFAULT_EXPORT_LOCALENUMBERS);
|
||
prefRememberFilters := GetRegValue(REGNAME_REMEMBERFILTERS, DEFAULT_REMEMBERFILTERS);
|
||
|
||
// Data-Font:
|
||
datafontname := GetRegValue(REGNAME_DATAFONTNAME, DEFAULT_DATAFONTNAME);
|
||
datafontsize := GetRegValue(REGNAME_DATAFONTSIZE, DEFAULT_DATAFONTSIZE);
|
||
DataGrid.Font.Name := datafontname;
|
||
QueryGrid.Font.Name := datafontname;
|
||
DataGrid.Font.Size := datafontsize;
|
||
QueryGrid.Font.Size := datafontsize;
|
||
FixVT(DataGrid);
|
||
FixVT(QueryGrid);
|
||
// Load color settings
|
||
DatatypeCategories[Integer(dtcInteger)].Color := GetRegValue(REGNAME_FIELDCOLOR_NUMERIC, DEFAULT_FIELDCOLOR_NUMERIC);
|
||
DatatypeCategories[Integer(dtcReal)].Color := GetRegValue(REGNAME_FIELDCOLOR_NUMERIC, DEFAULT_FIELDCOLOR_NUMERIC);
|
||
DatatypeCategories[Integer(dtcText)].Color := GetRegValue(REGNAME_FIELDCOLOR_TEXT, DEFAULT_FIELDCOLOR_TEXT);
|
||
DatatypeCategories[Integer(dtcBinary)].Color := GetRegValue(REGNAME_FIELDCOLOR_BINARY, DEFAULT_FIELDCOLOR_BINARY);
|
||
DatatypeCategories[Integer(dtcTemporal)].Color := GetRegValue(REGNAME_FIELDCOLOR_DATETIME, DEFAULT_FIELDCOLOR_DATETIME);
|
||
DatatypeCategories[Integer(dtcIntegerNamed)].Color := GetRegValue(REGNAME_FIELDCOLOR_ENUM, DEFAULT_FIELDCOLOR_ENUM);
|
||
DatatypeCategories[Integer(dtcSet)].Color := GetRegValue(REGNAME_FIELDCOLOR_SET, DEFAULT_FIELDCOLOR_SET);
|
||
DatatypeCategories[Integer(dtcSetNamed)].Color := GetRegValue(REGNAME_FIELDCOLOR_SET, DEFAULT_FIELDCOLOR_SET);
|
||
prefNullBG := GetRegValue(REGNAME_BG_NULL, DEFAULT_BG_NULL);
|
||
CalcNullColors;
|
||
// Editor enablings
|
||
prefEnableBinaryEditor := GetRegValue(REGNAME_FIELDEDITOR_BINARY, DEFAULT_FIELDEDITOR_BINARY);
|
||
prefEnableDatetimeEditor := GetRegValue(REGNAME_FIELDEDITOR_DATETIME, DEFAULT_FIELDEDITOR_DATETIME);
|
||
prefEnableEnumEditor := GetRegValue(REGNAME_FIELDEDITOR_ENUM, DEFAULT_FIELDEDITOR_ENUM);
|
||
prefEnableSetEditor := GetRegValue(REGNAME_FIELDEDITOR_SET, DEFAULT_FIELDEDITOR_SET);
|
||
prefEnableNullBG := GetRegValue(REGNAME_BG_NULL_ENABLED, DEFAULT_BG_NULL_ENABLED);
|
||
|
||
// Switch off/on displaying table/db sized in tree
|
||
menuShowSizeColumn.Checked := GetRegValue(REGNAME_SIZECOL_TREE, DEFAULT_SIZECOL_TREE);
|
||
if menuShowSizeColumn.Checked then
|
||
DBtree.Header.Columns[1].Options := DBtree.Header.Columns[1].Options + [coVisible]
|
||
else
|
||
DBtree.Header.Columns[1].Options := DBtree.Header.Columns[1].Options - [coVisible];
|
||
|
||
// Restore width of columns of all VirtualTrees
|
||
RestoreListSetup(ListVariables);
|
||
RestoreListSetup(ListStatus);
|
||
RestoreListSetup(ListProcesses);
|
||
RestoreListSetup(ListCommandStats);
|
||
RestoreListSetup(ListTables);
|
||
|
||
// Shortcuts
|
||
for i:=0 to ActionList1.ActionCount-1 do begin
|
||
Action := TAction(ActionList1.Actions[i]);
|
||
Action.ShortCut := GetRegValue(REGPREFIX_SHORTCUT1+Action.Name, Action.ShortCut);
|
||
end;
|
||
|
||
// Generate menuitems for popupDbGridHeader (column selection for ListTables)
|
||
popupDBGridHeader.Items.Clear;
|
||
for i:=0 to ListTables.Header.Columns.Count-1 do
|
||
begin
|
||
menuitem := TMenuItem.Create( popupDBGridHeader );
|
||
menuitem.Caption := ListTables.Header.Columns[i].Text;
|
||
menuitem.OnClick := MenuTablelistColumnsClick;
|
||
// Disable hiding first column
|
||
menuitem.Enabled := i>0;
|
||
menuitem.Checked := coVisible in ListTables.Header.Columns[i].Options;
|
||
popupDbGridHeader.Items.Add( menuitem );
|
||
end;
|
||
|
||
// Place progressbar on the statusbar
|
||
ProgressBarStatus.Parent := StatusBar;
|
||
ProgressBarStatus.Visible := False;
|
||
|
||
// Work around Vistas ghosting feature breaking the GUI
|
||
DisableProcessWindowsGhostingProc := GetProcAddress(
|
||
GetModuleHandle('user32.dll'),
|
||
'DisableProcessWindowsGhosting');
|
||
if Assigned(DisableProcessWindowsGhostingProc) then
|
||
DisableProcessWindowsGhostingProc;
|
||
|
||
QueryTab := TQueryTab.Create;
|
||
QueryTab.TabSheet := tabQuery;
|
||
QueryTab.Number := 1;
|
||
QueryTab.pnlMemo := pnlQueryMemo;
|
||
QueryTab.pnlHelpers := pnlQueryHelpers;
|
||
QueryTab.lboxHelpers := lboxQueryHelpers;
|
||
QueryTab.tabsetHelpers := tabsetQueryHelpers;
|
||
QueryTab.Memo := SynMemoQuery;
|
||
QueryTab.MemoLineBreaks := lbsNone;
|
||
QueryTab.spltHelpers := spltQueryHelpers;
|
||
QueryTab.spltQuery := spltQuery;
|
||
QueryTab.LabelResultInfo := LabelResultInfo;
|
||
QueryTab.Grid := QueryGrid;
|
||
QueryTab.GridResult := TGridResult.Create;
|
||
|
||
QueryTabs := TObjectList.Create;
|
||
QueryTabs.Add(QueryTab);
|
||
|
||
// SynMemo font, hightlighting and shortcuts
|
||
SetupSynEditors;
|
||
|
||
DataGridResult := TGridResult.Create;
|
||
|
||
btnAddTab := TPngSpeedButton.Create(PageControlMain);
|
||
btnAddTab.Parent := PageControlMain;
|
||
btnAddTab.PngImage := PngImageListMain.PngImages[actNewQueryTab.ImageIndex].PngImage;
|
||
btnAddTab.Height := PageControlMain.TabHeight - 2;
|
||
btnAddTab.Width := btnAddTab.Height;
|
||
btnAddTab.Flat := True;
|
||
btnAddTab.Hint := actNewQueryTab.Hint;
|
||
btnAddTab.OnClick := actNewQueryTab.OnExecute;
|
||
|
||
// Filter panel
|
||
btnCloseFilterPanel.PngImage := PngImageListMain.PngImages[134].PngImage;
|
||
if GetRegValue(REGNAME_FILTERACTIVE, DEFAULT_FILTERACTIVE) then
|
||
actFilterPanelExecute(nil);
|
||
lblFilterVTInfo.Caption := '';
|
||
|
||
SelectedTableColumns := TObjectList.Create;
|
||
SelectedTableKeys := TObjectList.Create;
|
||
SelectedTableForeignKeys := TObjectList.Create;
|
||
end;
|
||
|
||
|
||
{**
|
||
Check for connection parameters on commandline or show connections form.
|
||
}
|
||
procedure TMainForm.Startup;
|
||
var
|
||
curParam, NetType: Byte;
|
||
sValue,
|
||
parHost, parSocketname, parPort, parUser, parPass,
|
||
parCompress, parSession: String;
|
||
LastUpdatecheck, LastStatsCall, LastConnect: TDateTime;
|
||
UpdatecheckInterval, i: Integer;
|
||
DefaultLastrunDate, LastSession, StatsURL: String;
|
||
frm : TfrmUpdateCheck;
|
||
Connected, CommandLineMode, DecideForStatistic: Boolean;
|
||
StatsCall: TDownloadUrl2;
|
||
SessionNames: TStringlist;
|
||
begin
|
||
DefaultLastrunDate := '2000-01-01';
|
||
|
||
// Do an updatecheck if checked in settings
|
||
if GetRegValue(REGNAME_DO_UPDATECHECK, DEFAULT_DO_UPDATECHECK) then begin
|
||
try
|
||
LastUpdatecheck := StrToDateTime( GetRegValue(REGNAME_LAST_UPDATECHECK, DefaultLastrunDate) );
|
||
except
|
||
LastUpdatecheck := StrToDateTime( DefaultLastrunDate );
|
||
end;
|
||
UpdatecheckInterval := GetRegValue(REGNAME_UPDATECHECK_INTERVAL, DEFAULT_UPDATECHECK_INTERVAL);
|
||
if DaysBetween(Now, LastUpdatecheck) >= UpdatecheckInterval then begin
|
||
frm := TfrmUpdateCheck.Create(Self);
|
||
frm.AutoClose := True;
|
||
frm.CheckForBuildsInAutoMode := GetRegValue(REGNAME_DO_UPDATECHECK_BUILDS, DEFAULT_DO_UPDATECHECK_BUILDS);
|
||
frm.ShowModal;
|
||
FreeAndNil(frm);
|
||
end;
|
||
end;
|
||
|
||
// Call user statistics if checked in settings
|
||
if GetRegValue(REGNAME_DO_STATISTICS, DEFAULT_DO_STATISTICS) then begin
|
||
try
|
||
LastStatsCall := StrToDateTime( GetRegValue(REGNAME_LAST_STATSCALL, DefaultLastrunDate) );
|
||
except
|
||
LastStatsCall := StrToDateTime( DefaultLastrunDate );
|
||
end;
|
||
if DaysBetween(Now, LastStatsCall) >= 30 then begin
|
||
// Report used SVN revision
|
||
StatsURL := APPDOMAIN + 'savestats.php?c=' + AppRevision;
|
||
// Enumerate actively used server versions
|
||
SessionNames := TStringlist.Create;
|
||
if MainReg.OpenKey(REGPATH + REGKEY_SESSIONS, true) then
|
||
MainReg.GetKeyNames(SessionNames);
|
||
for i:=0 to SessionNames.Count-1 do begin
|
||
try
|
||
LastConnect := StrToDateTime(GetRegValue(REGNAME_LASTCONNECT, DefaultLastrunDate, SessionNames[i]));
|
||
except
|
||
LastConnect := StrToDateTime(DefaultLastrunDate);
|
||
end;
|
||
if LastConnect > LastStatsCall then begin
|
||
StatsURL := StatsURL + '&s[]=' + IntToStr(GetRegValue(REGNAME_SERVERVERSION, 0, SessionNames[i]));
|
||
end;
|
||
end;
|
||
StatsCall := TDownloadUrl2.Create(Self);
|
||
StatsCall.URL := StatsURL;
|
||
StatsCall.SetUserAgent(APPNAME + ' ' + FullAppVersion);
|
||
try
|
||
StatsCall.ExecuteTarget(nil);
|
||
OpenRegistry;
|
||
MainReg.WriteString(REGNAME_LAST_STATSCALL, DateTimeToStr(Now));
|
||
except
|
||
// Silently ignore it when the url could not be called over the network.
|
||
end;
|
||
FreeAndNil(StatsCall);
|
||
end;
|
||
end;
|
||
|
||
// Ask if we shall activate statistic calls. Would be used by noone otherwise.
|
||
OpenRegistry;
|
||
if not Mainreg.ValueExists(REGNAME_DO_STATISTICS) then begin
|
||
DecideForStatistic := MessageDlg(APPNAME + ' has a new statistics feature: If activated, server and client versions '+
|
||
'are reported once per month and displayed on heidisql.com.'+CRLF+CRLF+'Activate this feature?',
|
||
mtConfirmation, [mbYes, mbNo], 0) = mrYes;
|
||
Mainreg.WriteBool(REGNAME_DO_STATISTICS, DecideForStatistic);
|
||
end;
|
||
|
||
|
||
Connected := False;
|
||
|
||
// Check commandline if parameters were passed. Otherwise show connections windows
|
||
curParam := 1;
|
||
while curParam <= ParamCount do begin
|
||
// -M and -d are choosen not to conflict with mysql.exe
|
||
// http://dev.mysql.com/doc/refman/5.0/en/mysql-command-options.html
|
||
//
|
||
// To test all supported variants, set Run > Parameters > Parameters option to:
|
||
// --host=192.168.0.1 --user=root --password -d "My session name" -D"test db" -C -P 2200
|
||
if GetParamValue('h', 'host', curParam, sValue) then
|
||
parHost := sValue
|
||
else if GetParamValue('P', 'port', curParam, sValue) then
|
||
parPort := sValue
|
||
else if GetParamValue('s', 'socket', curParam, sValue) then
|
||
parSocketname := sValue
|
||
else if GetParamValue('C', 'compress', curParam, sValue) then
|
||
parCompress := sValue
|
||
else if GetParamValue('u', 'user', curParam, sValue) then
|
||
parUser := sValue
|
||
else if GetParamValue('p', 'password', curParam, sValue) then
|
||
parPass := sValue
|
||
else if GetParamValue('d', 'description', curParam, sValue) then
|
||
parSession := sValue;
|
||
Inc(curParam);
|
||
end;
|
||
|
||
// Find stored session if -dSessionName was passed
|
||
if (parSession <> '') and MainReg.KeyExists(REGPATH + REGKEY_SESSIONS + parSession) then begin
|
||
NetType := GetRegValue(REGNAME_NETTYPE, NETTYPE_TCPIP, parSession);
|
||
parHost := GetRegValue(REGNAME_HOST, DEFAULT_HOST, parSession);
|
||
if NetType = NETTYPE_TCPIP then
|
||
parSocketname := ''
|
||
else begin
|
||
parSocketname := parHost;
|
||
parHost := '.';
|
||
end;
|
||
parUser := GetRegValue(REGNAME_USER, DEFAULT_USER, parSession);
|
||
parPass := decrypt(GetRegValue(REGNAME_PASSWORD, DEFAULT_PASSWORD, parSession));
|
||
parPort := GetRegValue(REGNAME_PORT, IntToStr(DEFAULT_PORT), parSession);
|
||
parCompress := IntToStr(Integer(GetRegValue(REGNAME_COMPRESSED, DEFAULT_COMPRESSED, parSession)));
|
||
end;
|
||
|
||
// Minimal parameter for command line mode is hostname
|
||
CommandLineMode := parHost <> '';
|
||
if CommandLineMode then begin
|
||
if parSession = '' then
|
||
parSession := parHost;
|
||
Connected := InitConnection(parHost, parSocketname, parPort, parUser, parPass, parCompress, parSession);
|
||
end;
|
||
|
||
// Auto connection via preference setting
|
||
// Do not autoconnect if we're in commandline mode and the connection was not successful
|
||
if (not CommandLineMode) and (not Connected) and GetRegValue(REGNAME_AUTORECONNECT, DEFAULT_AUTORECONNECT) then begin
|
||
LastSession := GetRegValue(REGNAME_LASTSESSION, '');
|
||
if LastSession <> '' then begin
|
||
parHost := GetRegValue(REGNAME_HOST, '', LastSession);
|
||
NetType := GetRegValue(REGNAME_NETTYPE, NETTYPE_TCPIP, LastSession);
|
||
if NetType = NETTYPE_TCPIP then
|
||
parSocketname := ''
|
||
else begin
|
||
parSocketname := parHost;
|
||
parHost := '.';
|
||
end;
|
||
Connected := InitConnection(
|
||
parHost,
|
||
parSocketname,
|
||
GetRegValue(REGNAME_PORT, '', LastSession),
|
||
GetRegValue(REGNAME_USER, '', LastSession),
|
||
decrypt(GetRegValue(REGNAME_PASSWORD, '', LastSession)),
|
||
IntToStr(Integer(GetRegValue(REGNAME_COMPRESSED, DEFAULT_COMPRESSED, LastSession))),
|
||
LastSession
|
||
);
|
||
end;
|
||
end;
|
||
|
||
// Display session manager
|
||
if not Connected then begin
|
||
// Cannot be done in OnCreate because we need ready forms here:
|
||
if not Assigned(SessionManager) then
|
||
SessionManager := TConnForm.Create(Self);
|
||
if SessionManager.ShowModal = mrCancel then begin
|
||
Free;
|
||
Exit;
|
||
end;
|
||
end;
|
||
|
||
DoAfterConnect;
|
||
|
||
if (not CommandLineMode) and (ParamStr(1) <> '') then begin
|
||
// Loading SQL file by command line. Mutually exclusive to connect by command line.
|
||
QueryLoad(ParamStr(1));
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actSessionManagerExecute(Sender: TObject);
|
||
begin
|
||
if not Assigned(SessionManager) then
|
||
SessionManager := TConnForm.Create(Self);
|
||
if SessionManager.ShowModal <> mrCancel then
|
||
DoAfterConnect;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DoAfterConnect;
|
||
var
|
||
i, j: Integer;
|
||
lastUsedDB: WideString;
|
||
functioncats : TStringList;
|
||
miGroup,
|
||
miFilterGroup,
|
||
miFunction,
|
||
miFilterFunction: TMenuItem;
|
||
begin
|
||
DataGridHasChanges := False;
|
||
|
||
// Activate logging
|
||
if GetRegValue(REGNAME_LOGTOFILE, DEFAULT_LOGTOFILE) then
|
||
ActivateFileLogging;
|
||
|
||
tabHost.Caption := 'Host: '+Connection.HostName;
|
||
showstatus('MySQL '+Connection.ServerVersionStr, 3);
|
||
|
||
// Save server version
|
||
OpenRegistry(SessionName);
|
||
Mainreg.WriteInteger(REGNAME_SERVERVERSION, Connection.ServerVersionInt);
|
||
Mainreg.WriteString(REGNAME_LASTCONNECT, DateTimeToStr(Now));
|
||
|
||
comboOnlyDBs.Items.Text := Utf8Decode(GetRegValue(REGNAME_ONLYDBS, '', SessionName));
|
||
if comboOnlyDBs.Items.Count > 0 then
|
||
comboOnlyDBs.ItemIndex := 0
|
||
else
|
||
comboOnlyDBs.Text := '';
|
||
|
||
// Remove db and table nodes, force host node to initialize again
|
||
DBtree.ResetNode(DBTree.GetFirst);
|
||
|
||
DBTree.Color := GetRegValue(REGNAME_TREEBACKGROUND, clWindow, SessionName);
|
||
|
||
// Reselect last used database
|
||
if GetRegValue( REGNAME_RESTORELASTUSEDDB, DEFAULT_RESTORELASTUSEDDB ) then begin
|
||
lastUsedDB := Utf8Decode(GetRegValue(REGNAME_LASTUSEDDB, '', SessionName));
|
||
if lastUsedDB <> '' then try
|
||
ActiveDatabase := lastUsedDB;
|
||
except
|
||
// Suppress exception message when db was dropped externally or
|
||
// the session was just opened with "OnlyDBs" in place and the
|
||
// last db is not contained in this list.
|
||
end;
|
||
end;
|
||
// By default, select the host node
|
||
if not Assigned(DBtree.FocusedNode) then begin
|
||
DBtree.Selected[DBtree.GetFirst] := true;
|
||
DBtree.FocusedNode := DBtree.GetFirst;
|
||
end;
|
||
|
||
// Create function menu items in popupQuery and popupFilter
|
||
for i:=popupQuery.Items.Count-1 downto 0 do begin
|
||
if popupQuery.Items[i].Caption = '-' then
|
||
break;
|
||
popupQuery.Items.Delete(i);
|
||
end;
|
||
for i:=popupFilter.Items.Count-1 downto 0 do begin
|
||
if popupFilter.Items[i].Caption = '-' then
|
||
break;
|
||
popupFilter.Items.Delete(i);
|
||
end;
|
||
functioncats := GetFunctionCategories;
|
||
for i:=0 to functioncats.Count-1 do begin
|
||
// Create a menu item which gets subitems later
|
||
miGroup := TMenuItem.Create(popupQuery);
|
||
miGroup.Caption := functioncats[i];
|
||
popupQuery.Items.add(miGroup);
|
||
miFilterGroup := TMenuItem.Create(popupFilter);
|
||
miFilterGroup.Caption := miGroup.Caption;
|
||
popupFilter.Items.add(miFilterGroup);
|
||
for j:=0 to Length(MySqlFunctions)-1 do begin
|
||
if MySqlFunctions[j].Category <> functioncats[i] then
|
||
continue;
|
||
miFunction := TMenuItem.Create(popupQuery);
|
||
miFunction.Caption := MySqlFunctions[j].Name;
|
||
miFunction.ImageIndex := 13;
|
||
// Prevent generating a hotkey
|
||
miFunction.Caption := StringReplace(miFunction.Caption, '&', '&&', [rfReplaceAll]);
|
||
// Prevent generating a seperator line
|
||
if miFunction.Caption = '-' then
|
||
miFunction.Caption := '&-';
|
||
miFunction.Hint := MySqlFunctions[j].Name + MySqlFunctions[j].Declaration;
|
||
// Take care of needed server version
|
||
if MySqlFunctions[j].Version <= Connection.ServerVersionInt then begin
|
||
if MySqlFunctions[j].Description <> '' then
|
||
miFunction.Hint := miFunction.Hint + ' - ' + Copy(MySqlFunctions[j].Description, 0, 200 );
|
||
miFunction.Tag := j;
|
||
// Place menuitem on menu
|
||
miFunction.OnClick := insertFunction;
|
||
end else begin
|
||
miFunction.Hint := miFunction.Hint + ' - ('+STR_NOTSUPPORTED+', needs >= '+Connection.ConvertServerVersion(MySqlFunctions[j].Version)+')';
|
||
miFunction.Enabled := False;
|
||
end;
|
||
// Prevent generating a seperator for ShortHint and LongHint
|
||
miFunction.Hint := StringReplace( miFunction.Hint, '|', '<27>', [rfReplaceAll] );
|
||
miGroup.Add(miFunction);
|
||
// Create a copy of the menuitem for popupFilter
|
||
miFilterFunction := TMenuItem.Create(popupFilter);
|
||
miFilterFunction.Caption := miFunction.Caption;
|
||
miFilterFunction.Hint := miFunction.Hint;
|
||
miFilterFunction.ImageIndex := miFunction.ImageIndex;
|
||
miFilterFunction.Tag := miFunction.Tag;
|
||
miFilterFunction.OnClick := miFunction.OnClick;
|
||
miFilterFunction.Enabled := miFunction.Enabled;
|
||
miFilterGroup.Add(miFilterFunction);
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DoDisconnect;
|
||
begin
|
||
// Open server-specific registry-folder.
|
||
// relative from already opened folder!
|
||
OpenRegistry(SessionName);
|
||
MainReg.WriteString( REGNAME_LASTUSEDDB, Utf8Encode(ActiveDatabase) );
|
||
MainReg.WriteString( REGNAME_ONLYDBS, Utf8Encode(comboOnlyDBs.Items.Text) );
|
||
|
||
// Post pending UPDATE
|
||
if DataGridHasChanges then
|
||
actDataPostChangesExecute(Self);
|
||
|
||
// Clear database and table lists
|
||
DBtree.ClearSelection;
|
||
DBtree.FocusedNode := nil;
|
||
FreeAndNil(AllDatabases);
|
||
FreeAndNil(FDataGridSelect);
|
||
SynMemoFilter.Clear;
|
||
SetLength(FDataGridSort, 0);
|
||
|
||
// Closing connection
|
||
if Assigned(Connection) then
|
||
FreeAndNil(Connection);
|
||
|
||
if prefLogToFile then
|
||
DeactivateFileLogging;
|
||
|
||
// Invalidate list contents
|
||
ListVariables.Tag := VTREE_NOTLOADED;
|
||
ListStatus.Tag := VTREE_NOTLOADED;
|
||
ListProcesses.Tag := VTREE_NOTLOADED;
|
||
ListCommandstats.Tag := VTREE_NOTLOADED;
|
||
|
||
Application.Title := APPNAME;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actCreateDatabaseExecute(Sender: TObject);
|
||
var
|
||
newdb: String;
|
||
begin
|
||
// Create database:
|
||
// Create modal form once on demand
|
||
if CreateDatabaseForm = nil then
|
||
CreateDatabaseForm := TCreateDatabaseForm.Create(Self);
|
||
|
||
// Rely on the modalresult being set correctly
|
||
if CreateDatabaseForm.ShowModal = mrOK then
|
||
begin
|
||
newdb := CreateDatabaseForm.editDBName.Text;
|
||
// Add new DB to database filter if it's not empty
|
||
if comboOnlyDBs.Text <> '' then begin
|
||
comboOnlyDBs.Text := comboOnlyDBs.Text + ';' + newdb;
|
||
comboOnlyDBs.Items.Insert(0, comboOnlyDBs.Text);
|
||
end;
|
||
FreeAndNil(AllDatabases);
|
||
// reload db nodes and switch to new one
|
||
RefreshTree(False, newdb);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actImportCSVExecute(Sender: TObject);
|
||
begin
|
||
// Import Textfile
|
||
loaddataWindow(self);
|
||
end;
|
||
|
||
procedure TMainForm.actPreferencesExecute(Sender: TObject);
|
||
begin
|
||
// Preferences
|
||
if OptionsForm = nil then
|
||
OptionsForm := Toptionsform.Create(Self);
|
||
OptionsForm.ShowModal;
|
||
end;
|
||
|
||
procedure TMainForm.actReadmeExecute(Sender: TObject);
|
||
begin
|
||
// show readme.txt
|
||
ShellExec( 'readme.txt', ExtractFilePath(paramstr(0)) );
|
||
end;
|
||
|
||
procedure TMainForm.FormResize(Sender: TObject);
|
||
var
|
||
i, room: Integer;
|
||
PanelRect: TRect;
|
||
begin
|
||
// Exit early when user pressed "Cancel" on connection dialog
|
||
if csDestroying in ComponentState then
|
||
Exit;
|
||
room := 0;
|
||
for i := 1 to Statusbar.Panels.Count - 1 do
|
||
inc(room, Statusbar.Panels[i].Width);
|
||
StatusBar.Panels[0].Width := Statusbar.Width - room;
|
||
// Retreive the rectancle of the statuspanel (in our case the fifth panel)
|
||
SendMessage(StatusBar.Handle, SB_GETRECT, 5, Integer(@PanelRect));
|
||
// Position the progressbar over the panel on the statusbar
|
||
with PanelRect do
|
||
ProgressBarStatus.SetBounds(Left, Top, Right-Left, Bottom-Top);
|
||
lblDataTop.Width := pnlDataTop.Width - tlbDataButtons.Width - 10;
|
||
FixQueryTabCloseButtons;
|
||
end;
|
||
|
||
procedure TMainForm.actUserManagerExecute(Sender: TObject);
|
||
begin
|
||
if UserManagerForm = nil then
|
||
UserManagerForm := TUserManagerForm.Create(Self);
|
||
if UserManagerForm.TestUserAdmin then
|
||
UserManagerForm.ShowModal;
|
||
end;
|
||
|
||
procedure TMainForm.actAboutBoxExecute(Sender: TObject);
|
||
begin
|
||
// Info-Box
|
||
AboutWindow (Self);
|
||
end;
|
||
|
||
procedure TMainForm.actClearEditorExecute(Sender: TObject);
|
||
var
|
||
m: TSynMemo;
|
||
begin
|
||
if Sender = actClearQueryEditor then
|
||
m := ActiveQueryMemo
|
||
else begin
|
||
m := SynMemoFilter;
|
||
editFilterSearch.Clear;
|
||
end;
|
||
m.SelectAll;
|
||
m.SelText := '';
|
||
m.SelStart := 0;
|
||
m.SelEnd := 0;
|
||
if QueryTabActive then begin
|
||
SetTabCaption(PageControlMain.ActivePageIndex, '');
|
||
ActiveQueryTab.MemoFilename := '';
|
||
ActiveQueryTab.Memo.Modified := False;
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.actTableToolsExecute(Sender: TObject);
|
||
var
|
||
Act: TAction;
|
||
InDBTree: Boolean;
|
||
begin
|
||
// Show table tools dialog
|
||
if TableToolsDialog = nil then
|
||
TableToolsDialog := TfrmTableTools.Create(Self);
|
||
Act := Sender as TAction;
|
||
InDBTree := (Act.ActionComponent is TMenuItem)
|
||
and (TPopupMenu((Act.ActionComponent as TMenuItem).GetParentMenu).PopupComponent = DBTree);
|
||
if InDBTree and (SelectedTable.NodeType in [lntTable, lntCrashedTable, lntView]) then
|
||
TableToolsDialog.SelectedTables.Text := SelectedTable.Text
|
||
else if not InDBTree then
|
||
TableToolsDialog.SelectedTables := GetVTCaptions(ListTables, True, 0, [lntTable, lntCrashedTable, lntView])
|
||
else
|
||
TableToolsDialog.SelectedTables.Clear;
|
||
if Sender = actMaintenance then
|
||
TableToolsDialog.ToolMode := tmMaintenance
|
||
else if Sender = actFindTextOnServer then
|
||
TableToolsDialog.ToolMode := tmFind
|
||
else if Sender = actExportTables then
|
||
TableToolsDialog.ToolMode := tmSQLExport
|
||
else if Sender = actBulkTableEdit then
|
||
TableToolsDialog.ToolMode := tmBulkTableEdit;
|
||
TableToolsDialog.ShowModal;
|
||
end;
|
||
|
||
|
||
{**
|
||
Edit view
|
||
}
|
||
procedure TMainForm.actPrintListExecute(Sender: TObject);
|
||
var
|
||
f: TForm;
|
||
begin
|
||
// Print contents of a list or grid
|
||
f := TPrintlistForm.Create(Self);
|
||
f.ShowModal;
|
||
FreeAndNil(f);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actCopyTableExecute(Sender: TObject);
|
||
begin
|
||
// copy table
|
||
CopyTableWindow(self);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.menuConnectionsPopup(Sender: TObject);
|
||
var
|
||
i: integer;
|
||
item: TMenuItem;
|
||
Connections: TStringList;
|
||
begin
|
||
// Delete dynamically added connection menu items.
|
||
for i := menuConnections.Items.Count - 1 downto 0 do begin
|
||
menuConnections.Items.Delete(i);
|
||
end;
|
||
|
||
// "Session manager" and "New window" items
|
||
item := TMenuItem.Create(menuConnections);
|
||
item.Action := actSessionManager;
|
||
item.Default := True;
|
||
menuConnections.Items.Add(item);
|
||
item := TMenuItem.Create(menuConnections);
|
||
item.Action := actNewWindow;
|
||
menuConnections.Items.Add(item);
|
||
|
||
// All sessions
|
||
if MainReg.OpenKey(REGPATH + REGKEY_SESSIONS, False) then begin
|
||
Connections := TStringList.Create;
|
||
MainReg.GetKeyNames(Connections);
|
||
for i := 0 to Connections.Count - 1 do begin
|
||
item := TMenuItem.Create(menuConnections);
|
||
item.Caption := Connections[i];
|
||
item.OnClick := SessionConnect;
|
||
item.ImageIndex := 37;
|
||
if Connections[i] = SessionName then begin
|
||
item.Checked := True;
|
||
item.ImageIndex := -1;
|
||
end;
|
||
menuConnections.Items.Add(item);
|
||
end;
|
||
end;
|
||
|
||
end;
|
||
|
||
|
||
procedure TMainForm.File1Click(Sender: TObject);
|
||
var
|
||
Item: TMenuItem;
|
||
i: Integer;
|
||
Connections: TStringList;
|
||
begin
|
||
// Decide if "Connect to" menu should be enabled
|
||
menuConnectTo.Enabled := False;
|
||
if MainReg.OpenKey(REGPATH + REGKEY_SESSIONS, False) then begin
|
||
menuConnectTo.Enabled := MainReg.HasSubKeys;
|
||
if menuConnectTo.Enabled then begin
|
||
// Add all sessions to submenu
|
||
for i := menuConnectTo.Count - 1 downto 0 do
|
||
menuConnectTo.Delete(i);
|
||
Connections := TStringList.Create;
|
||
MainReg.GetKeyNames(Connections);
|
||
for i := 0 to Connections.Count - 1 do begin
|
||
Item := TMenuItem.Create(menuConnectTo);
|
||
Item.Caption := Connections[i];
|
||
Item.OnClick := SessionConnect;
|
||
Item.ImageIndex := 37;
|
||
if Connections[i] = SessionName then begin
|
||
Item.Checked := True;
|
||
Item.ImageIndex := -1;
|
||
end;
|
||
menuConnectTo.Add(Item);
|
||
end;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actWebbrowse(Sender: TObject);
|
||
begin
|
||
// Browse to URL (hint)
|
||
ShellExec( TAction(Sender).Hint );
|
||
end;
|
||
|
||
|
||
// Escape database, table, field, index or key name.
|
||
function TMainform.mask(str: WideString) : WideString;
|
||
begin
|
||
result := Connection.QuoteIdent(str);
|
||
end;
|
||
|
||
|
||
// Quote identifier, probably with multiple segments, e.g. db.table.column
|
||
function TMainform.MaskMulti(str: WideString): WideString;
|
||
var
|
||
Segments: TWideStringlist;
|
||
i: Integer;
|
||
begin
|
||
Segments := Explode('.', str);
|
||
Result := '';
|
||
for i:=0 to Segments.Count-1 do
|
||
Result := Result + mask(Segments[i]) + '.';
|
||
FreeAndNil(Segments);
|
||
Delete(Result, Length(Result), 1);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actExportSettingsExecute(Sender: TObject);
|
||
begin
|
||
// Export settings to .reg-file
|
||
if SaveDialog2.Execute then
|
||
ShellExec('regedit.exe', '', '/e "'+SaveDialog2.FileName+'" HKEY_CURRENT_USER'+REGPATH);
|
||
end;
|
||
|
||
procedure TMainForm.actImportSettingsExecute(Sender: TObject);
|
||
begin
|
||
// Import settings from .reg-file
|
||
if OpenDialog2.Execute then
|
||
ShellExec('regedit.exe', '', '"'+OpenDialog2.FileName+'"');
|
||
end;
|
||
|
||
procedure TMainForm.actExecuteQueryExecute(Sender: TObject);
|
||
begin
|
||
ExecSqlClick(sender, false);
|
||
end;
|
||
|
||
procedure TMainForm.actExecuteSelectionExecute(Sender: TObject);
|
||
begin
|
||
ExecSqlClick(sender, true);
|
||
end;
|
||
|
||
procedure TMainForm.actExecuteLineExecute(Sender: TObject);
|
||
begin
|
||
ExecSqlClick(sender, false, true);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actCopyAsCSVExecute(Sender: TObject);
|
||
var
|
||
S: TMemoryStream;
|
||
begin
|
||
// Copy data in focused grid as CSV
|
||
Screen.Cursor := crHourglass;
|
||
S := TMemoryStream.Create;
|
||
try
|
||
GridToCsv(ActiveGrid, prefCSVSeparator, prefCSVEncloser, prefCSVTerminator, S);
|
||
StreamToClipboard(S);
|
||
finally
|
||
ShowStatus('Freeing data...');
|
||
S.Free;
|
||
ShowStatus(STATUS_MSG_READY);
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actCopyAsHTMLExecute(Sender: TObject);
|
||
var
|
||
S: TMemoryStream;
|
||
Title: WideString;
|
||
begin
|
||
// Copy data in focused grid as HTML table
|
||
Screen.Cursor := crHourglass;
|
||
S := TMemoryStream.Create;
|
||
if ActiveGrid = DataGrid then Title := SelectedTable.Text
|
||
else Title := 'SQL query';
|
||
try
|
||
GridToHtml(ActiveGrid, Title, S);
|
||
StreamToClipboard(S);
|
||
finally
|
||
ShowStatus('Freeing data...');
|
||
S.Free;
|
||
ShowStatus(STATUS_MSG_READY);
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actCopyAsXMLExecute(Sender: TObject);
|
||
var
|
||
S: TMemoryStream;
|
||
Root: WideString;
|
||
begin
|
||
// Copy data in focused grid as XML
|
||
Screen.Cursor := crHourglass;
|
||
S := TMemoryStream.Create;
|
||
if ActiveGrid = DataGrid then Root := SelectedTable.Text
|
||
else Root := 'SQL query';
|
||
try
|
||
GridToXml(ActiveGrid, Root, S);
|
||
StreamToClipboard(S);
|
||
finally
|
||
ShowStatus('Freeing data...');
|
||
S.Free;
|
||
ShowStatus(STATUS_MSG_READY);
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actCopyAsSQLExecute(Sender: TObject);
|
||
var
|
||
S: TMemoryStream;
|
||
Tablename: WideString;
|
||
begin
|
||
// Copy data in focused grid as SQL
|
||
Screen.Cursor := crHourglass;
|
||
S := TMemoryStream.Create;
|
||
if ActiveGrid = DataGrid then Tablename := SelectedTable.Text
|
||
else Tablename := 'unknown';
|
||
try
|
||
GridToSql(ActiveGrid, Tablename, S);
|
||
StreamToClipboard(S);
|
||
finally
|
||
ShowStatus('Freeing data...');
|
||
S.Free;
|
||
ShowStatus(STATUS_MSG_READY);
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actExportDataExecute(Sender: TObject);
|
||
var
|
||
Dialog: TSaveDialog;
|
||
FS: TFileStream;
|
||
Title: WideString;
|
||
begin
|
||
// Save data in current dataset as CSV, HTML or XML
|
||
Dialog := SaveDialogExportData;
|
||
|
||
if ActiveGrid = DataGrid then
|
||
Title := SelectedTable.Text
|
||
else
|
||
Title := 'SQL query';
|
||
|
||
Dialog.FileName := Title;
|
||
Dialog.Title := 'Export result set from '+Dialog.Filename+'...';
|
||
|
||
if Dialog.Execute and (Dialog.FileName <> '') then try
|
||
Screen.Cursor := crHourGlass;
|
||
FS := TFileStream.Create(Dialog.FileName, fmCreate or fmOpenWrite);
|
||
case Dialog.FilterIndex of
|
||
1: GridToCsv(ActiveGrid, prefCSVSeparator, prefCSVEncloser, prefCSVTerminator, FS);
|
||
2: GridToHtml(ActiveGrid, Title, FS);
|
||
3: GridToXml(ActiveGrid, Title, FS);
|
||
4: GridToSql(ActiveGrid, Title, FS);
|
||
end;
|
||
ShowStatus('Freeing data...');
|
||
FS.Free;
|
||
finally
|
||
ShowStatus(STATUS_MSG_READY);
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
|
||
// view HTML
|
||
procedure TMainForm.actHTMLviewExecute(Sender: TObject);
|
||
const
|
||
msgNotBinary = 'Non-binary field selected. Only binary fields containing JPEG, PNG, GIF and BMP images are supported.';
|
||
msgNotImage = 'Unrecognized image format. Only JPEG, PNG, GIF and BMP are supported.';
|
||
var
|
||
g : TVirtualStringTree;
|
||
filename : String;
|
||
f : Textfile;
|
||
Header, Content : String;
|
||
IsBinary : Boolean;
|
||
SaveBinary : Boolean;
|
||
begin
|
||
g := ActiveGrid;
|
||
if g = nil then begin messagebeep(MB_ICONASTERISK); exit; end;
|
||
Screen.Cursor := crHourGlass;
|
||
showstatus('Saving contents to file...');
|
||
IsBinary := GridResult(ActiveGrid).Columns[g.FocusedColumn].DatatypeCat = dtcBinary;
|
||
|
||
Header := WideHexToBin(Copy(g.Text[g.FocusedNode, g.FocusedColumn], 3, 20));
|
||
SaveBinary := false;
|
||
filename := GetTempDir+'\'+APPNAME+'-preview.';
|
||
if IsBinary and (Copy(Header, 7, 4) = 'JFIF') then begin
|
||
SaveBinary := true;
|
||
filename := filename + 'jpeg';
|
||
end else if IsBinary and (Copy(Header, 2, 3) = 'PNG') then begin
|
||
SaveBinary := true;
|
||
filename := filename + 'png';
|
||
end else if IsBinary and StrCmpBegin('GIF', Header) then begin
|
||
SaveBinary := true;
|
||
filename := filename + 'gif';
|
||
end else if IsBinary and StrCmpBegin('BM', Header) then begin
|
||
SaveBinary := true;
|
||
filename := filename + 'bmp';
|
||
end;
|
||
|
||
if not IsBinary then begin
|
||
MessageDlg(msgNotBinary, mtWarning, [mbOk], 0);
|
||
end else if not SaveBinary then begin
|
||
MessageDlg(msgNotImage, mtWarning, [mbOk], 0);
|
||
end;
|
||
|
||
if SaveBinary then begin
|
||
if not EnsureFullWidth(g, g.FocusedColumn, g.FocusedNode) then Exit;
|
||
Content := WideHexToBin(Copy(g.Text[g.FocusedNode, g.FocusedColumn], 3, High(Integer)));
|
||
AssignFile(f, filename);
|
||
Rewrite(f);
|
||
Write(f, Content);
|
||
CloseFile(f);
|
||
end;
|
||
ShowStatus( STATUS_MSG_READY );
|
||
Screen.Cursor := crDefault;
|
||
ShellExec( filename );
|
||
end;
|
||
|
||
procedure TMainForm.actInsertFilesExecute(Sender: TObject);
|
||
begin
|
||
if not Assigned(InsertFiles) then
|
||
InsertFiles := TfrmInsertFiles.Create(Self);
|
||
InsertFiles.ShowModal;
|
||
end;
|
||
|
||
// Drop Table(s)
|
||
procedure TMainForm.actDropObjectsExecute(Sender: TObject);
|
||
var
|
||
AllCount : Integer;
|
||
Tables, Views, Functions, Procedures, Triggers: TWideStringList;
|
||
msg, activeDB : WideString;
|
||
InDBTree: Boolean;
|
||
Act: TAction;
|
||
|
||
procedure DoDrop(Kind: String; List: TWideStringlist; MultiDrops: Boolean);
|
||
var
|
||
i: Integer;
|
||
baseSql, sql: WideString;
|
||
begin
|
||
if List.Count > 0 then begin
|
||
baseSql := 'DROP '+Kind+' ';
|
||
sql := '';
|
||
for i := 0 to List.Count - 1 do begin
|
||
if (i > 0) and MultiDrops then sql := sql + ', ';
|
||
sql := sql + mask(List[i]);
|
||
if not MultiDrops then begin
|
||
Connection.Query(baseSql + sql);
|
||
sql := '';
|
||
end;
|
||
end;
|
||
if MultiDrops then
|
||
Connection.Query(baseSql + sql);
|
||
end;
|
||
FreeAndNil(List);
|
||
end;
|
||
|
||
begin
|
||
debug('drop objects activated');
|
||
// Set default database name to to ActiveDatabase.
|
||
// Can be overwritten when someone selects a table in dbtree from different database
|
||
activeDB := ActiveDatabase;
|
||
|
||
Tables := TWideStringlist.Create;
|
||
Views := TWideStringlist.Create;
|
||
Procedures := TWideStringlist.Create;
|
||
Functions := TWideStringlist.Create;
|
||
Triggers := TWideStringlist.Create;
|
||
|
||
Act := Sender as TAction;
|
||
InDBTree := (Act.ActionComponent is TMenuItem)
|
||
and (TPopupMenu((Act.ActionComponent as TMenuItem).GetParentMenu).PopupComponent = DBTree);
|
||
if InDBTree then begin
|
||
// drop table selected in tree view.
|
||
case GetFocusedTreeNodeType of
|
||
lntDb: begin
|
||
if MessageDlg('Drop Database "'+activeDB+'"?' + crlf + crlf + 'WARNING: You will lose all tables in database '+activeDB+'!', mtConfirmation, [mbok,mbcancel], 0) <> mrok then
|
||
Abort;
|
||
try
|
||
Connection.Query('DROP DATABASE ' + mask(activeDB));
|
||
DBtree.FocusedNode := DBtree.GetFirst;
|
||
DBTree.Selected[DBtree.FocusedNode] := True;
|
||
Connection.ClearDbObjects(activeDB);
|
||
RefreshTree(False);
|
||
except
|
||
on E:Exception do
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
end;
|
||
Exit;
|
||
end;
|
||
lntTable, lntCrashedTable: Tables.Add(SelectedTable.Text);
|
||
lntView: Views.Add(SelectedTable.Text);
|
||
lntProcedure: Procedures.Add(SelectedTable.Text);
|
||
lntFunction: Functions.Add(SelectedTable.Text);
|
||
lntTrigger: Triggers.Add(SelectedTable.Text);
|
||
end;
|
||
end else begin
|
||
// Invoked from database tab
|
||
Tables := GetVTCaptions(ListTables, True, 0, [lntTable]);
|
||
Tables.AddStrings(GetVTCaptions(ListTables, True, 0, [lntCrashedTable]));
|
||
Views := GetVTCaptions(ListTables, True, 0, [lntView]);
|
||
Procedures := GetVTCaptions(ListTables, True, 0, [lntProcedure]);
|
||
Functions := GetVTCaptions(ListTables, True, 0, [lntFunction]);
|
||
Triggers := GetVTCaptions(ListTables, True, 0, [lntTrigger]);
|
||
end;
|
||
|
||
// Fix actions temporarily enabled for popup menu.
|
||
ValidateControls(Sender);
|
||
|
||
AllCount := Tables.Count + Views.Count + Procedures.Count + Functions.Count + Triggers.Count;
|
||
|
||
// Safety stop to avoid firing DROP TABLE without tablenames
|
||
if (AllCount = 0) then
|
||
Exit;
|
||
|
||
// Ask user for confirmation to drop selected objects
|
||
msg := 'Drop ' + IntToStr(AllCount) + ' object(s) in database "'+activeDB+'"?'
|
||
+ CRLF;
|
||
if Tables.Count > 0 then msg := msg + CRLF + 'Table(s): ' + ImplodeStr(', ', Tables);
|
||
if Views.Count > 0 then msg := msg + CRLF + 'View(s): ' + ImplodeStr(', ', Views);
|
||
if Procedures.Count > 0 then msg := msg + CRLF + 'Procedure(s): ' + ImplodeStr(', ', Procedures);
|
||
if Functions.Count > 0 then msg := msg + CRLF + 'Function(s): ' + ImplodeStr(', ', Functions);
|
||
if Triggers.Count > 0 then msg := msg + CRLF + 'Trigger(s): ' + ImplodeStr(', ', Triggers);
|
||
if MessageDlg(msg, mtConfirmation, [mbok,mbcancel], 0) <> mrok then
|
||
Exit;
|
||
|
||
try
|
||
// Compose and run DROP [TABLE|VIEW|...] queries
|
||
DoDrop('TABLE', Tables, True);
|
||
DoDrop('VIEW', Views, True);
|
||
DoDrop('PROCEDURE', Procedures, False);
|
||
DoDrop('FUNCTION', Functions, False);
|
||
DoDrop('TRIGGER', Triggers, False);
|
||
// Refresh ListTables + dbtree so the dropped tables are gone:
|
||
actRefresh.Execute;
|
||
except
|
||
on E:Exception do
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
end;
|
||
end;
|
||
|
||
|
||
// Load SQL-file, make sure that SheetQuery is activated
|
||
procedure TMainForm.actLoadSQLExecute(Sender: TObject);
|
||
var
|
||
i: Integer;
|
||
begin
|
||
if OpenDialogSQLfile.Execute then begin
|
||
for i:=0 to OpenDialogSQLfile.Files.Count-1 do begin
|
||
if i > 0 then
|
||
actNewQueryTabExecute(Sender);
|
||
QueryLoad(OpenDialogSQLfile.Files[i]);
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
|
||
{**
|
||
Parse commandline for a specific name=value pair
|
||
@return Boolean True if parameter was found, False if not
|
||
}
|
||
function TMainForm.GetParamValue(const paramChar: Char; const paramName:
|
||
string; var curIdx: Byte; out paramValue: string): Boolean;
|
||
var
|
||
i, nextIdx: Integer;
|
||
param, nextParam: string;
|
||
begin
|
||
paramValue := '';
|
||
param := ParamStr(curIdx);
|
||
// Example: --user=root --session="My session name" --password
|
||
if Pos('--' + paramName, param) = 1 then
|
||
begin
|
||
i := Length('--' + paramName) + 1;
|
||
if param[i] = '=' then
|
||
paramValue := Copy(param, i + 1, Length(param) - i);
|
||
if (Copy(paramValue, 1, 1) = '"') and (Copy(paramValue, Length(paramValue), 1) = '"') then
|
||
paramValue := Copy(paramValue, 2, Length(paramValue) - 2);
|
||
result := True;
|
||
|
||
end else if Pos('-' + paramChar, param) = 1 then
|
||
begin
|
||
if Length(param) > 2 then
|
||
begin
|
||
// Example: -uroot -s"My session name"
|
||
paramValue := Copy(param, 3, Length(param) - 2);
|
||
if (Copy(paramValue, 1, 1) = '"') and (Copy(paramValue, Length(paramValue), 1) = '"') then
|
||
paramValue := Copy(paramValue, 2, Length(paramValue) - 2);
|
||
end else
|
||
begin
|
||
// Example: -u root -s "My session name" -p
|
||
nextIdx := curIdx + 1;
|
||
if nextIdx <= ParamCount then begin
|
||
nextParam := ParamStr(nextIdx);
|
||
if not Pos('-', nextParam) = 1 then
|
||
paramValue := nextParam;
|
||
end;
|
||
end;
|
||
result := True;
|
||
end else
|
||
result := False;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SessionConnect(Sender: TObject);
|
||
var
|
||
Session: String;
|
||
NetType: Integer;
|
||
parHost, parSocketname, parPort, parUser, parPass, parCompress: WideString;
|
||
begin
|
||
Session := (Sender as TMenuItem).Caption;
|
||
NetType := GetRegValue(REGNAME_NETTYPE, NETTYPE_TCPIP, Session);
|
||
parHost := GetRegValue(REGNAME_HOST, '', Session);
|
||
if NetType = NETTYPE_TCPIP then
|
||
parSocketname := ''
|
||
else begin
|
||
parSocketname := parHost;
|
||
parHost := '.';
|
||
end;
|
||
parUser := GetRegValue(REGNAME_USER, '', Session);
|
||
parPass := decrypt(GetRegValue(REGNAME_PASSWORD, '', Session));
|
||
parPort := GetRegValue(REGNAME_PORT, '', Session);
|
||
parCompress := IntToStr(Integer(GetRegValue(REGNAME_COMPRESSED, DEFAULT_COMPRESSED, Session)));
|
||
if InitConnection(parHost, parSocketname, parPort, parUser, parPass, parCompress, Session) then
|
||
DoAfterConnect;
|
||
end;
|
||
|
||
|
||
{**
|
||
Receive connection parameters and create the mdi-window
|
||
Paremeters are either sent by connection-form or by commandline.
|
||
}
|
||
function TMainform.InitConnection(parHost, parSocketname, parPort, parUser, parPass, parCompress, parSession: WideString): Boolean;
|
||
var
|
||
ConnectionAttempt: TMySQLConnection;
|
||
SessionExists: Boolean;
|
||
begin
|
||
ConnectionAttempt := TMySQLConnection.Create(Self);
|
||
ConnectionAttempt.OnLog := LogSQL;
|
||
ConnectionAttempt.OnDatabaseChanged := DatabaseChanged;
|
||
ConnectionAttempt.Hostname := parHost;
|
||
ConnectionAttempt.Socketname := parSocketname;
|
||
ConnectionAttempt.Username := parUser;
|
||
ConnectionAttempt.Password := parPass;
|
||
ConnectionAttempt.Port := StrToIntDef(parPort, MYSQL_PORT);
|
||
try
|
||
ConnectionAttempt.Active := True;
|
||
except
|
||
on E:Exception do
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
end;
|
||
|
||
// attempt to establish connection
|
||
SessionExists := MainReg.KeyExists(REGPATH + REGKEY_SESSIONS + parSession);
|
||
if not ConnectionAttempt.Active then begin
|
||
// attempt failed
|
||
if SessionExists then begin
|
||
// Save "refused" counter
|
||
OpenRegistry(parSession);
|
||
MainReg.WriteInteger(REGNAME_REFUSEDCOUNT, GetRegValue(REGNAME_REFUSEDCOUNT, 0, parSession)+1);
|
||
end;
|
||
Result := False;
|
||
FreeAndNil(ConnectionAttempt);
|
||
end else begin
|
||
if SessionExists then begin
|
||
// Save "refused" counter
|
||
OpenRegistry(parSession);
|
||
MainReg.WriteInteger(REGNAME_CONNECTCOUNT, GetRegValue(REGNAME_CONNECTCOUNT, 0, parSession)+1);
|
||
// Save last session name in root folder
|
||
OpenRegistry;
|
||
MainReg.WriteString(REGNAME_LASTSESSION, parSession);
|
||
end;
|
||
|
||
Result := True;
|
||
if Assigned(Connection) then
|
||
DoDisconnect;
|
||
Connection := ConnectionAttempt;
|
||
SessionName := parSession;
|
||
end;
|
||
ShowStatus( STATUS_MSG_READY );
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actDataDeleteExecute(Sender: TObject);
|
||
begin
|
||
// Delete row(s)
|
||
if (DataGrid.SelectedCount = 1) and
|
||
(DataGridResult.Rows[DataGrid.GetFirstSelected.Index].State = grsInserted)
|
||
then begin
|
||
// Deleting the virtual row which is only in memory by stopping edit mode
|
||
actDataCancelChanges.Execute;
|
||
end else begin
|
||
// The "normal" case: Delete existing rows
|
||
if not CheckUniqueKeyClause then
|
||
Exit;
|
||
if DataGrid.SelectedCount = 0 then
|
||
MessageDLG('Please select one or more rows to delete them.', mtError, [mbOK], 0)
|
||
else if MessageDLG('Delete '+inttostr(DataGrid.SelectedCount)+' row(s)?',
|
||
mtConfirmation, [mbOK, mbCancel], 0) = mrOK then begin
|
||
GridPostDelete(DataGrid);
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actUpdateCheckExecute(Sender: TObject);
|
||
var
|
||
frm : TfrmUpdateCheck;
|
||
begin
|
||
frm := TfrmUpdateCheck.Create(Self);
|
||
frm.ShowModal;
|
||
FreeAndNil(frm);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actCreateDBObjectExecute(Sender: TObject);
|
||
var
|
||
Editor: TDBObjectEditor;
|
||
ObjType: TListNodeType;
|
||
a: TAction;
|
||
begin
|
||
// Create a new table, view, etc.
|
||
tabEditor.TabVisible := True;
|
||
PagecontrolMain.ActivePage := tabEditor;
|
||
a := Sender as TAction;
|
||
ObjType := lntNone;
|
||
if a = actCreateTable then ObjType := lntTable
|
||
else if a = actCreateView then ObjType := lntView
|
||
else if a = actCreateRoutine then ObjType := lntProcedure
|
||
else if a = actCreateTrigger then ObjType := lntTrigger;
|
||
Editor := PlaceObjectEditor(ObjType);
|
||
Editor.Init;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actEmptyTablesExecute(Sender: TObject);
|
||
var
|
||
t: TWideStringList;
|
||
i: Integer;
|
||
sql_pattern: String;
|
||
begin
|
||
// Add selected items/tables to helper list
|
||
if ListTables.Focused then
|
||
t := GetVTCaptions(ListTables, True)
|
||
else if DBTree.Focused then begin
|
||
t := TWideStringList.Create;
|
||
t.Add(SelectedTable.Text);
|
||
end else
|
||
Exit;
|
||
if t.Count = 0 then
|
||
Exit;
|
||
|
||
if MessageDlg('Empty ' + IntToStr(t.count) + ' table(s) ?' + CRLF + '(' + implodestr(', ', t) + ')',
|
||
mtConfirmation, [mbOk, mbCancel], 0) <> mrOk then
|
||
exit;
|
||
|
||
Screen.Cursor := crHourglass;
|
||
{**
|
||
@note ansgarbecker: Empty table using faster TRUNCATE statement on newer servers
|
||
@see http://dev.mysql.com/doc/refman/5.0/en/truncate.html
|
||
@see https://sourceforge.net/tracker/index.php?func=detail&aid=1644143&group_id=164593&atid=832350
|
||
}
|
||
if Connection.ServerVersionInt < 50003 then
|
||
sql_pattern := 'DELETE FROM '
|
||
else
|
||
sql_pattern := 'TRUNCATE ';
|
||
|
||
try
|
||
for i:=0 to t.count-1 do
|
||
Connection.Query( sql_pattern + mask(t[i]) );
|
||
actRefresh.Execute;
|
||
except
|
||
on E:Exception do
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
end;
|
||
t.Free;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actNewWindowExecute(Sender: TObject);
|
||
begin
|
||
debug('perf: new connection clicked.');
|
||
ShellExec( ExtractFileName(paramstr(0)), ExtractFilePath(paramstr(0)) );
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actQueryFindExecute(Sender: TObject);
|
||
begin
|
||
// if something is selected search for that text
|
||
if ActiveQueryMemo.SelAvail then
|
||
FindDialogQuery.FindText := ActiveQueryMemo.SelText
|
||
else
|
||
FindDialogQuery.FindText := ActiveQueryMemo.WordAtCursor;
|
||
FindDialogQuery.Execute;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actQueryReplaceExecute(Sender: TObject);
|
||
begin
|
||
// if something is selected search for that text
|
||
if ActiveQueryMemo.SelAvail then
|
||
ReplaceDialogQuery.FindText := ActiveQueryMemo.SelText
|
||
else
|
||
ReplaceDialogQuery.FindText := ActiveQueryMemo.WordAtCursor;
|
||
ReplaceDialogQuery.Execute;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actRefreshExecute(Sender: TObject);
|
||
var
|
||
tab1, tab2: TTabSheet;
|
||
List: TVirtualStringTree;
|
||
begin
|
||
// Refresh
|
||
// Force data tab update when appropriate.
|
||
dataselected := false;
|
||
tab1 := PageControlMain.ActivePage;
|
||
if ActiveControl = DBtree then
|
||
RefreshTree(True)
|
||
else if tab1 = tabHost then begin
|
||
tab2 := PageControlHost.ActivePage;
|
||
if tab2 = tabVariables then
|
||
List := ListVariables
|
||
else if tab2 = tabStatus then
|
||
List := ListStatus
|
||
else if tab2 = tabProcessList then
|
||
List := ListProcesses
|
||
else
|
||
List := ListCommandStats;
|
||
List.Tag := VTREE_NOTLOADED;
|
||
List.Repaint;
|
||
end else if tab1 = tabDatabase then begin
|
||
RefreshTreeDB(ActiveDatabase);
|
||
LoadDatabaseProperties(ActiveDatabase);
|
||
end else if tab1 = tabData then
|
||
viewdata(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actSQLhelpExecute(Sender: TObject);
|
||
var
|
||
keyword : String;
|
||
Col: TTableColumn;
|
||
begin
|
||
// Call SQL Help from various places
|
||
if Connection.ServerVersionInt < 40100 then
|
||
exit;
|
||
|
||
keyword := '';
|
||
// Query-Tab
|
||
if ActiveControl is TSynMemo then
|
||
keyword := TSynMemo(ActiveControl).WordAtCursor
|
||
// Data-Tab
|
||
else if (PageControlMain.ActivePage = tabData)
|
||
and Assigned(DataGrid.FocusedNode) then begin
|
||
Col := TTableColumn(SelectedTableColumns[DataGrid.FocusedColumn]);
|
||
keyword := Col.DataType.Name;
|
||
end
|
||
else if QueryTabActive and ActiveQueryHelpers.Focused then
|
||
begin
|
||
// Makes only sense if one of the tabs "SQL fn" or "SQL kw" was selected
|
||
if ActiveQueryTabset.TabIndex in [1,2] then
|
||
begin
|
||
keyword := ActiveQueryHelpers.Items[ActiveQueryHelpers.ItemIndex];
|
||
end;
|
||
end;
|
||
|
||
// Clean existing paranthesis, fx: char(64)
|
||
if Pos( '(', keyword ) > 0 then
|
||
begin
|
||
keyword := Copy( keyword, 1, Pos( '(', keyword )-1 );
|
||
end;
|
||
|
||
// Show the window
|
||
CallSQLHelpWithKeyword( keyword );
|
||
end;
|
||
|
||
|
||
{***
|
||
Show SQL Help window directly using a keyword
|
||
@param String SQL-keyword
|
||
@see FieldeditForm.btnDatatypeHelp
|
||
}
|
||
procedure TMainform.CallSQLHelpWithKeyword( keyword: String );
|
||
begin
|
||
if SQLHelpForm = nil then
|
||
SQLHelpForm := TfrmSQLhelp.Create(Self);
|
||
SQLHelpForm.Show;
|
||
SQLHelpForm.Keyword := keyword;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actSaveSQLAsExecute(Sender: TObject);
|
||
begin
|
||
// Save SQL
|
||
if SaveDialogSQLFile.Execute then begin
|
||
// Save complete content or just the selected text,
|
||
// depending on the tag of calling control
|
||
SaveQueryMemo(ActiveQueryTab, SaveDialogSQLFile.FileName, (Sender as TAction).Tag = 1);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actSaveSQLExecute(Sender: TObject);
|
||
begin
|
||
if ActiveQueryTab.MemoFilename <> '' then
|
||
SaveQueryMemo(ActiveQueryTab, ActiveQueryTab.MemoFilename, False)
|
||
else
|
||
actSaveSQLAsExecute(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SaveQueryMemo(Tab: TQueryTab; Filename: String; OnlySelection: Boolean);
|
||
var
|
||
Text, LB: WideString;
|
||
begin
|
||
Screen.Cursor := crHourGlass;
|
||
if OnlySelection then
|
||
Text := Tab.Memo.SelText
|
||
else
|
||
Text := Tab.Memo.Text;
|
||
LB := '';
|
||
case Tab.MemoLineBreaks of
|
||
lbsUnix: LB := LB_UNIX;
|
||
lbsMac: LB := LB_MAC;
|
||
lbsWide: LB := LB_WIDE;
|
||
end;
|
||
if LB <> '' then
|
||
Text := WideStringReplace(Text, CRLF, LB, [rfReplaceAll]);
|
||
SaveUnicodeFile( Filename, Text );
|
||
SetTabCaption(Tab.Number+tabData.PageIndex, ExtractFilename(Filename));
|
||
Tab.MemoFilename := Filename;
|
||
Tab.Memo.Modified := False;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actSaveSQLSnippetExecute(Sender: TObject);
|
||
var
|
||
snippetname : String;
|
||
mayChange : Boolean;
|
||
Text, LB: WideString;
|
||
begin
|
||
// Save snippet
|
||
if InputQuery( 'Save snippet', 'Snippet name:', snippetname) then
|
||
begin
|
||
if Copy( snippetname, Length(snippetname)-4, 4 ) <> '.sql' then
|
||
snippetname := snippetname + '.sql';
|
||
// cleanup snippetname from special characters
|
||
snippetname := DirnameSnippets + goodfilename(snippetname);
|
||
if FileExists( snippetname ) then
|
||
begin
|
||
if MessageDlg( 'Overwrite existing snippet '+snippetname+'?', mtConfirmation, [mbOK, mbCancel], 0 ) <> mrOK then
|
||
exit;
|
||
end;
|
||
Screen.Cursor := crHourglass;
|
||
// Save complete content or just the selected text,
|
||
// depending on the tag of calling control
|
||
case (Sender as TComponent).Tag of
|
||
0: Text := ActiveQueryMemo.Text;
|
||
1: Text := ActiveQueryMemo.SelText;
|
||
end;
|
||
LB := '';
|
||
case ActiveQueryTab.MemoLineBreaks of
|
||
lbsUnix: LB := LB_UNIX;
|
||
lbsMac: LB := LB_MAC;
|
||
lbsWide: LB := LB_WIDE;
|
||
end;
|
||
if LB <> '' then
|
||
Text := WideStringReplace(Text, CRLF, LB, [rfReplaceAll]);
|
||
if not DirectoryExists(DirnameSnippets) then
|
||
ForceDirectories(DirnameSnippets);
|
||
SaveUnicodeFile( snippetname, Text );
|
||
FillPopupQueryLoad;
|
||
if ActiveQueryTabset.TabIndex = 3 then begin
|
||
// SQL Snippets selected in query helper, refresh list
|
||
mayChange := True; // Unused; satisfies callee parameter collection which is probably dictated by tabset.
|
||
tabsetQueryHelpersChange(Sender, 3, mayChange);
|
||
end;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actQueryStopOnErrorsExecute(Sender: TObject);
|
||
begin
|
||
// Weird fix: dummy routine to avoid the sending action getting disabled
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actQueryWordWrapExecute(Sender: TObject);
|
||
begin
|
||
ActiveQueryMemo.WordWrap := TAction(Sender).Checked;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.FindDialogQueryFind(Sender: TObject);
|
||
var
|
||
Options: TSynSearchOptions;
|
||
Search: String;
|
||
begin
|
||
Search := FindDialogQuery.FindText;
|
||
Options := [];
|
||
if Sender is TReplaceDialog then
|
||
Include(Options, ssoEntireScope);
|
||
if not (frDown in FindDialogQuery.Options) then
|
||
Include(Options, ssoBackwards);
|
||
if frMatchCase in FindDialogQuery.Options then
|
||
Include(Options, ssoMatchCase);
|
||
if frWholeWord in FindDialogQuery.Options then
|
||
Include(Options, ssoWholeWord);
|
||
if ActiveQueryMemo.SearchReplace(Search, '', Options) = 0 then
|
||
begin
|
||
MessageBeep(MB_ICONASTERISK);
|
||
ShowStatus( 'SearchText ''' + Search + ''' not found!', 0);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ReplaceDialogQueryFind(Sender: TObject);
|
||
begin
|
||
FindDialogQuery.FindText := ReplaceDialogQuery.FindText;
|
||
FindDialogQueryFind( ReplaceDialogQuery );
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ReplaceDialogQueryReplace(Sender: TObject);
|
||
var
|
||
Options: TSynSearchOptions;
|
||
Search: String;
|
||
begin
|
||
Search := ReplaceDialogQuery.FindText;
|
||
Options := [ssoEntireScope]; // Do replaces always on entire scope, because the standard-dialog lacks of a down/up-option
|
||
if frReplaceAll in ReplaceDialogQuery.Options then
|
||
Include( Options, ssoReplaceAll );
|
||
if not (frDown in ReplaceDialogQuery.Options) then
|
||
Include(Options, ssoBackwards);
|
||
if frMatchCase in ReplaceDialogQuery.Options then
|
||
Include(Options, ssoMatchCase);
|
||
if frWholeWord in ReplaceDialogQuery.Options then
|
||
Include(Options, ssoWholeWord);
|
||
if frReplace in ReplaceDialogQuery.Options then // Replace instead of ReplaceAll is pressed
|
||
Include(Options, ssoReplace)
|
||
else
|
||
Include(Options, ssoReplaceAll);
|
||
if ActiveQueryMemo.SearchReplace( Search, ReplaceDialogQuery.ReplaceText, Options) = 0 then
|
||
begin
|
||
MessageBeep(MB_ICONASTERISK);
|
||
ShowStatus( 'SearchText ''' + Search + ''' not found!', 0);
|
||
if ssoBackwards in Options then
|
||
ActiveQueryMemo.BlockEnd := ActiveQueryMemo.BlockBegin
|
||
else
|
||
ActiveQueryMemo.BlockBegin := ActiveQueryMemo.BlockEnd;
|
||
ActiveQueryMemo.CaretXY := ActiveQueryMemo.BlockBegin;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainform.FillPopupQueryLoad;
|
||
var
|
||
i, j: Integer;
|
||
menuitem, snippetsfolder: TMenuItem;
|
||
snippets: TStringList;
|
||
sqlFilename: String;
|
||
begin
|
||
// Fill the popupQueryLoad menu
|
||
popupQueryLoad.Items.Clear;
|
||
|
||
// Snippets
|
||
snippets := getFilesFromDir( DirnameSnippets, '*.sql', true );
|
||
snippetsfolder := TMenuItem.Create( popupQueryLoad );
|
||
snippetsfolder.Caption := 'Snippets';
|
||
popupQueryLoad.Items.Add(snippetsfolder);
|
||
for i := 0 to snippets.Count - 1 do begin
|
||
menuitem := TMenuItem.Create( snippetsfolder );
|
||
menuitem.Caption := snippets[i];
|
||
menuitem.OnClick := popupQueryLoadClick;
|
||
snippetsfolder.Add(menuitem);
|
||
end;
|
||
|
||
// Separator
|
||
menuitem := TMenuItem.Create( popupQueryLoad );
|
||
menuitem.Caption := '-';
|
||
popupQueryLoad.Items.Add(menuitem);
|
||
|
||
// Recent files
|
||
j := 0;
|
||
for i:=0 to 19 do begin
|
||
sqlFilename := GetRegValue( 'SQLFile'+IntToStr(i), '' );
|
||
if sqlFilename = '' then
|
||
continue;
|
||
inc(j);
|
||
menuitem := TMenuItem.Create( popupQueryLoad );
|
||
menuitem.Caption := IntToStr(j) + ' ' + sqlFilename;
|
||
menuitem.OnClick := popupQueryLoadClick;
|
||
popupQueryLoad.Items.Add(menuitem);
|
||
end;
|
||
|
||
// Separator + "Remove absent files"
|
||
menuitem := TMenuItem.Create( popupQueryLoad );
|
||
menuitem.Caption := '-';
|
||
popupQueryLoad.Items.Add(menuitem);
|
||
menuitem := TMenuItem.Create( popupQueryLoad );
|
||
menuitem.Caption := 'Remove absent files';
|
||
menuitem.OnClick := PopupQueryLoadRemoveAbsentFiles;
|
||
popupQueryLoad.Items.Add(menuitem);
|
||
|
||
end;
|
||
|
||
|
||
procedure TMainform.PopupQueryLoadRemoveAbsentFiles( sender: TObject );
|
||
begin
|
||
AddOrRemoveFromQueryLoadHistory( '', false, true );
|
||
FillPopupQueryLoad;
|
||
end;
|
||
|
||
procedure TMainform.popupQueryLoadClick( sender: TObject );
|
||
var
|
||
filename : String;
|
||
p : Integer;
|
||
begin
|
||
// Click on the popupQueryLoad
|
||
filename := (Sender as TMenuItem).Caption;
|
||
if Pos( '\', filename ) = 0 then
|
||
begin // assuming we load a snippet
|
||
filename := DirnameSnippets + filename + '.sql';
|
||
end
|
||
else
|
||
begin // assuming we load a file from the recent-list
|
||
p := Pos( ' ', filename ) + 1;
|
||
filename := Copy(filename, p, Length(filename));
|
||
end;
|
||
filename := Stringreplace(filename, '&', '', [rfReplaceAll]);
|
||
QueryLoad( filename );
|
||
end;
|
||
|
||
|
||
procedure TMainform.AddOrRemoveFromQueryLoadHistory( filename: String; AddIt: Boolean = true; CheckIfFileExists: Boolean = true );
|
||
var
|
||
i : Integer;
|
||
Values, newfilelist : TStringList;
|
||
savedfilename : String;
|
||
begin
|
||
// Add or remove filename to/from history, avoiding duplicates
|
||
|
||
newfilelist := TStringList.create;
|
||
Values := TStringList.create;
|
||
OpenRegistry;
|
||
MainReg.GetValueNames( Values );
|
||
|
||
// Add new filename
|
||
if AddIt then
|
||
newfilelist.Add( filename );
|
||
|
||
// Add all other filenames
|
||
for i:=0 to Values.Count-1 do begin
|
||
if Pos( 'SQLFile', Values[i] ) <> 1 then
|
||
continue;
|
||
savedfilename := GetRegValue( Values[i], '' );
|
||
MainReg.DeleteValue( Values[i] );
|
||
if CheckIfFileExists and (not FileExists( savedfilename )) then
|
||
continue;
|
||
if (savedfilename <> filename) and (newfilelist.IndexOf(savedfilename)=-1) then
|
||
newfilelist.add( savedfilename );
|
||
end;
|
||
|
||
// Save new list
|
||
for i := 0 to newfilelist.Count-1 do begin
|
||
if i >= 20 then
|
||
break;
|
||
MainReg.WriteString( 'SQLFile'+IntToStr(i), newfilelist[i] );
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Change default delimiter for SQL execution
|
||
}
|
||
procedure TMainForm.actSetDelimiterExecute(Sender: TObject);
|
||
var
|
||
newVal: String;
|
||
ok: Boolean;
|
||
begin
|
||
// Use a while loop to redisplay the input dialog after setting an invalid value
|
||
ok := False;
|
||
while not ok do begin
|
||
newVal := delimiter;
|
||
if InputQuery('Set delimiter', 'SQL statement delimiter (default is ";"):', newVal) then try
|
||
// Set new value
|
||
Delimiter := newVal;
|
||
ok := True;
|
||
except on E:Exception do
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
end else // Cancel clicked
|
||
ok := True;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Validates and sets the Delimiter property plus updates the hint on actSetDelimiter
|
||
}
|
||
procedure TMainForm.SetDelimiter(Value: String);
|
||
var
|
||
ErrMsg: String;
|
||
begin
|
||
ErrMsg := '';
|
||
Value := Trim(Value);
|
||
// Test for empty delimiter.
|
||
if Value = '' then ErrMsg := 'DELIMITER must be followed by a non-comment character or string';
|
||
// Disallow backslash, because the MySQL CLI does so for some reason.
|
||
// Then again, is there any reason to be bug-per-bug compatible with some random SQL parser?
|
||
if Pos('\', Value) > 0 then ErrMsg := 'Backslash disallowed in DELIMITER (because the MySQL CLI does not accept it)';
|
||
// Disallow stuff which would be negated by the comment parsing logic.
|
||
if
|
||
(Pos('/*', Value) > 0) or
|
||
(Pos('--', Value) > 0) or
|
||
(Pos('#', Value) > 0)
|
||
then ErrMsg := 'Start-of-comment tokens disallowed in DELIMITER (because it would be ignored)';
|
||
// Disallow stuff which would be negated by the SQL parser (and could slightly confuse it, if at end-of-string).
|
||
if
|
||
(Pos('''', Value) > 0) or
|
||
(Pos('`', Value) > 0) or
|
||
(Pos('"', Value) > 0)
|
||
then ErrMsg := 'String literal markers disallowed in DELIMITER (because it would be ignored)';
|
||
|
||
// Reset an invalid delimiter loaded from registry at startup to the default value
|
||
if (ErrMsg <> '') and (Delimiter = '') then begin
|
||
Value := DEFAULT_DELIMITER;
|
||
ErrMsg := '';
|
||
end;
|
||
// Raise or set it
|
||
if ErrMsg <> '' then begin
|
||
ErrMsg := Format('Invalid delimiter %s: %s.', [Value, ErrMsg]);
|
||
LogSQL(ErrMsg);
|
||
Raise Exception.Create(ErrMsg);
|
||
end else begin
|
||
FDelimiter := Value;
|
||
LogSQL(Format('Delimiter changed to %s.', [Delimiter]));
|
||
actSetDelimiter.Hint := actSetDelimiter.Caption + ' (current value: '+Delimiter+')';
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actApplyFilterExecute(Sender: TObject);
|
||
var
|
||
i, nr: Integer;
|
||
OldNumbers, Filters: TStringList;
|
||
val: String;
|
||
begin
|
||
// If filter box is empty but filter generator box not, most users expect
|
||
// the filter to be auto generated on button click
|
||
if (SynMemoFilter.GetTextLen = 0) and (editFilterSearch.Text <> '') then
|
||
editFilterSearchChange(editFilterSearch);
|
||
|
||
if SynMemoFilter.GetTextLen > 0 then begin
|
||
// Recreate recent filters list
|
||
Filters := TStringList.Create;
|
||
OldNumbers := TStringList.Create;
|
||
Filters.Add(Trim(Utf8Encode(SynMemoFilter.Text)));
|
||
MainReg.OpenKey(GetRegKeyTable+'\'+REGNAME_FILTERS, True);
|
||
MainReg.GetValueNames(OldNumbers);
|
||
OldNumbers.CustomSort(CompareNumbers);
|
||
// Add old filters
|
||
for i := 0 to OldNumbers.Count - 1 do begin
|
||
nr := MakeInt(OldNumbers[i]);
|
||
if nr = 0 then continue; // Not a valid entry, ignore that
|
||
val := MainReg.ReadString(OldNumbers[i]);
|
||
if Filters.IndexOf(val) = -1 then
|
||
Filters.Add(val);
|
||
MainReg.DeleteValue(OldNumbers[i]);
|
||
end;
|
||
for i := 1 to Filters.Count do begin
|
||
MainReg.WriteString(IntToStr(i), Filters[i-1]);
|
||
// Avoid too much registry spam with mega old filters
|
||
if i = 20 then break;
|
||
end;
|
||
FreeAndNil(OldNumbers);
|
||
FreeAndNil(Filters);
|
||
end;
|
||
viewdata(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actDataFirstExecute(Sender: TObject);
|
||
var
|
||
Node: PVirtualNode;
|
||
begin
|
||
Node := DataGrid.GetFirst;
|
||
if Assigned(Node) then begin
|
||
DataGrid.ClearSelection;
|
||
DataGrid.FocusedNode := Node;
|
||
DataGrid.Selected[Node] := True;
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.actDataInsertExecute(Sender: TObject);
|
||
begin
|
||
DataGridInsertRow;
|
||
end;
|
||
|
||
procedure TMainForm.actDataLastExecute(Sender: TObject);
|
||
var
|
||
Node: PVirtualNode;
|
||
begin
|
||
Node := DataGrid.GetLast;
|
||
if Assigned(Node) then begin
|
||
DataGrid.ClearSelection;
|
||
DataGrid.FocusedNode := Node;
|
||
DataGrid.Selected[Node] := True;
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.actDataPostChangesExecute(Sender: TObject);
|
||
begin
|
||
DataGridPostUpdateOrInsert(Datagrid.FocusedNode);
|
||
end;
|
||
|
||
procedure TMainForm.actRemoveFilterExecute(Sender: TObject);
|
||
begin
|
||
actClearFilterEditor.Execute;
|
||
viewdata(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actDataCancelChangesExecute(Sender: TObject);
|
||
begin
|
||
DataGridCancel(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actSelectTreeBackgroundExecute(Sender: TObject);
|
||
var
|
||
cs: TColorSelect;
|
||
begin
|
||
// Select database tree background color
|
||
cs := TColorSelect.Create(Self);
|
||
cs.Dialog.Color := DBtree.Color;
|
||
if cs.Execute then begin
|
||
DBtree.Color := cs.Dialog.Color;
|
||
OpenRegistry(SessionName);
|
||
MainReg.WriteInteger(REGNAME_TREEBACKGROUND, cs.Dialog.Color);
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Add a SQL-command or comment to SynMemoSQLLog
|
||
}
|
||
procedure TMainForm.LogSQL(Msg: WideString; Category: TMySQLLogCategory=lcInfo);
|
||
var
|
||
snip, IsSQL: Boolean;
|
||
begin
|
||
if (Category = lcDebug) or (csDestroying in ComponentState) then
|
||
Exit;
|
||
// Shorten very long messages
|
||
snip := (prefLogSqlWidth > 0) and (Length(Msg) > prefLogSqlWidth);
|
||
IsSQL := Category = lcSQL;
|
||
if snip then begin
|
||
Msg :=
|
||
Copy(Msg, 0, prefLogSqlWidth) +
|
||
'/* large SQL query, snipped at ' +
|
||
FormatNumber(prefLogSqlWidth) +
|
||
' characters */';
|
||
end else if (not snip) and IsSQL then
|
||
Msg := Msg + Delimiter;
|
||
if not IsSQL then
|
||
Msg := '/* ' + Msg + ' */';
|
||
|
||
Msg := WideStringReplace(Msg, #9, ' ', [rfReplaceAll]);
|
||
Msg := WideStringReplace(Msg, #10, ' ', [rfReplaceAll]);
|
||
Msg := WideStringReplace(Msg, #13, ' ', [rfReplaceAll]);
|
||
Msg := WideStringReplace(Msg, ' ', ' ', [rfReplaceAll]);
|
||
SynMemoSQLLog.Lines.Add(Msg);
|
||
TrimSQLLog;
|
||
|
||
// Scroll to last line and repaint
|
||
SynMemoSQLLog.GotoLineAndCenter(SynMemoSQLLog.Lines.Count);
|
||
SynMemoSQLLog.Repaint;
|
||
|
||
// Log to file?
|
||
if prefLogToFile then
|
||
try
|
||
WriteLn(FileHandleSessionLog, Format('[%s] %s', [DateTimeToStr(Now), msg]));
|
||
except
|
||
DeactivateFileLogging;
|
||
MessageDlg('Error writing to session log file:'+CRLF+FileNameSessionLog+CRLF+CRLF+'Logging is disabled now.', mtError, [mbOK], 0);
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Delete first line(s) in SQL log and adjust LineNumberStart in gutter
|
||
Called by LogSQL and preferences dialog
|
||
}
|
||
procedure TMainForm.TrimSQLLog;
|
||
var
|
||
i : Integer;
|
||
begin
|
||
i := 0;
|
||
while SynMemoSQLLog.Lines.Count > prefLogsqlnum do
|
||
begin
|
||
SynMemoSQLLog.Lines.Delete(0);
|
||
inc(i);
|
||
end;
|
||
// Increase first displayed number in gutter so it doesn't lie about the log entries
|
||
if i > 0 then
|
||
SynMemoSQLLog.Gutter.LineNumberStart := SynMemoSQLLog.Gutter.LineNumberStart + i;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ShowHost;
|
||
begin
|
||
if (not DBTree.Dragging) and (
|
||
(PageControlMain.ActivePage = tabDatabase) or
|
||
(PageControlMain.ActivePage = tabData)
|
||
) then PageControlMain.ActivePage := tabHost;
|
||
|
||
tabDatabase.TabVisible := false;
|
||
tabEditor.TabVisible := false;
|
||
tabData.TabVisible := false;
|
||
|
||
PageControlMainChange( Self );
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ShowDatabase(db: WideString);
|
||
begin
|
||
if (not DBtree.Dragging) and (
|
||
(PageControlMain.ActivePage = tabHost) or
|
||
(PageControlMain.ActivePage = tabData)
|
||
) then PageControlMain.ActivePage := tabDatabase;
|
||
|
||
tabDatabase.TabVisible := true;
|
||
tabEditor.TabVisible := false;
|
||
tabData.TabVisible := false;
|
||
|
||
ShowDBProperties( db );
|
||
end;
|
||
|
||
|
||
|
||
procedure TMainForm.viewdata(Sender: TObject);
|
||
var
|
||
i, j : Integer;
|
||
select_base,
|
||
select_base_full,
|
||
select_from : WideString;
|
||
sl_query : TWideStringList;
|
||
KeyCols : TWideStringList;
|
||
col : TVirtualTreeColumn;
|
||
ColExists, ShowIt : Boolean;
|
||
OldOffsetXY : TPoint;
|
||
RefreshingData : Boolean;
|
||
TblCol : TTableColumn;
|
||
|
||
procedure InitColumn(Column: TTableColumn; Visible: Boolean);
|
||
var
|
||
k: Integer;
|
||
idx: Integer;
|
||
Key: TTableKey;
|
||
begin
|
||
idx := Length(DataGridResult.Columns);
|
||
SetLength(DataGridResult.Columns, idx+1);
|
||
DataGridResult.Columns[idx].Name := Column.Name;
|
||
col := DataGrid.Header.Columns.Add;
|
||
col.Text := Column.Name;
|
||
col.Hint := Column.Comment;
|
||
col.Options := col.Options + [coSmartResize];
|
||
if not visible then col.Options := col.Options - [coVisible];
|
||
// Sorting color and title image
|
||
for k:=0 to Length(FDataGridSort)-1 do begin
|
||
if FDataGridSort[k].ColumnName = Column.Name then begin
|
||
col.Color := ColorAdjustBrightness(col.Color, COLORSHIFT_SORTCOLUMNS, True);
|
||
case FDataGridSort[k].SortDirection of
|
||
ORDER_ASC: col.ImageIndex := 109;
|
||
ORDER_DESC: col.ImageIndex := 110;
|
||
end;
|
||
end;
|
||
end;
|
||
// Data type
|
||
DataGridResult.Columns[idx].DatatypeCat := Column.DataType.Category;
|
||
DataGridResult.Columns[idx].Datatype := Column.DataType.Index;
|
||
case DataGridResult.Columns[idx].DatatypeCat of
|
||
dtcInteger, dtcReal: col.Alignment := taRightJustify;
|
||
dtcText: begin
|
||
if Column.LengthSet <> '' then
|
||
DataGridResult.Columns[idx].MaxLength := MakeInt(Column.LengthSet)
|
||
else case Column.DataType.Index of
|
||
// 255 is the width in bytes. If characters that use multiple bytes are
|
||
// contained, the width in characters is decreased below this number.
|
||
dtTinyText: DataGridResult.Columns[idx].MaxLength := 255;
|
||
dtText: DataGridResult.Columns[idx].MaxLength := 65535;
|
||
dtMediumText: DataGridResult.Columns[idx].MaxLength := 16777215;
|
||
dtLongText: DataGridResult.Columns[idx].MaxLength := 4294967295;
|
||
end;
|
||
end;
|
||
dtcIntegerNamed: begin
|
||
DataGridResult.Columns[idx].ValueList := TWideStringList.Create;
|
||
DataGridResult.Columns[idx].ValueList.QuoteChar := '''';
|
||
DataGridResult.Columns[idx].ValueList.Delimiter := ',';
|
||
DataGridResult.Columns[idx].ValueList.DelimitedText := Column.LengthSet;
|
||
end;
|
||
dtcSetNamed: begin
|
||
DataGridResult.Columns[idx].ValueList := TWideStringList.Create;
|
||
DataGridResult.Columns[idx].ValueList.QuoteChar := '''';
|
||
DataGridResult.Columns[idx].ValueList.Delimiter := ',';
|
||
DataGridResult.Columns[idx].ValueList.DelimitedText := Column.LengthSet;
|
||
end;
|
||
else DataGridResult.Columns[idx].MaxLength := MaxInt; // Fallback for unknown column types
|
||
end;
|
||
|
||
for k:=0 to SelectedTableKeys.Count-1 do begin
|
||
Key := TTableKey(SelectedTableKeys[k]);
|
||
if (Key.IndexType = 'PRIMARY')
|
||
and (Key.Columns.IndexOf(Column.Name) > -1) then begin
|
||
DataGridResult.Columns[idx].IsPriPart := True;
|
||
break;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
begin
|
||
Screen.Cursor := crHourglass;
|
||
viewingdata := true;
|
||
sl_query := TWideStringList.Create();
|
||
|
||
// Ensure grid has left editing mode so DataGrid.OnNewText applies its changes
|
||
// to the old data, not to the new or some non referenced data
|
||
if DataGrid.IsEditing then
|
||
DataGrid.EndEditNode;
|
||
|
||
// Post pending update and set post + cancel buttons to valid state
|
||
if DataGridHasChanges then
|
||
actDataPostChangesExecute(Sender);
|
||
|
||
// Switch to <Data>
|
||
PageControlMain.ActivePage := tabData;
|
||
|
||
// Indicates whether the current table data is just refreshed or if we're in another table
|
||
RefreshingData := (ActiveDatabase = DataGridDB) and (SelectedTable.Text = DataGridTable);
|
||
|
||
try
|
||
if (SelectedTable.Text <> '') and (ActiveDatabase <> '') then begin
|
||
if FDataGridSelect = nil then
|
||
FDataGridSelect := TWideStringlist.Create;
|
||
if not RefreshingData then begin
|
||
FDataGridSelect.Clear;
|
||
SynMemoFilter.Clear;
|
||
SetLength(FDataGridSort, 0);
|
||
// Load default view settings
|
||
OpenRegistry;
|
||
if MainReg.OpenKey(GetRegKeyTable, False) then begin
|
||
if MainReg.ValueExists(REGNAME_DEFAULTVIEW) then begin
|
||
// Disable default if crash indicator on current table is found
|
||
if MainReg.ValueExists(REGPREFIX_CRASH_IN_DATA) then begin
|
||
MainReg.DeleteValue(REGNAME_DEFAULTVIEW);
|
||
LogSQL('A crash in the previous data loading for this table ('+SelectedTable.Text+') was detected. Filtering was automatically reset to avoid the same crash for now.');
|
||
// Reset crash indicator.
|
||
MainReg.DeleteValue(REGPREFIX_CRASH_IN_DATA);
|
||
end else begin
|
||
LoadDataView(MainReg.ReadString(REGNAME_DEFAULTVIEW));
|
||
end;
|
||
end;
|
||
end;
|
||
end;
|
||
FillDataViewPopup;
|
||
|
||
SynMemoFilter.Color := clWindow;
|
||
ShowStatus('Freeing data...');
|
||
DataGrid.BeginUpdate;
|
||
OldOffsetXY := DataGrid.OffsetXY;
|
||
debug('mem: clearing browse data.');
|
||
SetLength(DataGridResult.Columns, 0);
|
||
SetLength(DataGridResult.Rows, 0);
|
||
DataGrid.RootNodeCount := 0;
|
||
DataGrid.Header.Columns.BeginUpdate;
|
||
DataGrid.Header.Options := DataGrid.Header.Options + [hoVisible];
|
||
DataGrid.Header.Columns.Clear;
|
||
|
||
// No data for routines
|
||
if SelectedTableColumns.Count = 0 then begin
|
||
DataGrid.Enabled := False;
|
||
pnlDataTop.Enabled := False;
|
||
pnlFilter.Enabled := False;
|
||
lblSorryNoData.Parent := DataGrid;
|
||
Exit; // Jump to *finally*
|
||
end else begin
|
||
DataGrid.Enabled := True;
|
||
pnlDataTop.Enabled := True;
|
||
pnlFilter.Enabled := True;
|
||
lblSorryNoData.Parent := tabData;
|
||
end;
|
||
|
||
// Prepare SELECT statement
|
||
select_base := 'SELECT ';
|
||
select_base_full := select_base;
|
||
// Selected columns
|
||
if (FDataGridSelect.Count = 0) or (FDataGridSelect.Count = SelectedTableColumns.Count) then begin
|
||
tbtnDataColumns.ImageIndex := 107;
|
||
end else begin
|
||
for i := FDataGridSelect.Count - 1 downto 0 do begin
|
||
ColExists := False;
|
||
for j:=0 to SelectedTableColumns.Count-1 do begin
|
||
TblCol := TTableColumn(SelectedTableColumns[j]);
|
||
if FDataGridSelect[i] = TblCol.Name then begin
|
||
ColExists := True;
|
||
break;
|
||
end;
|
||
end;
|
||
if not ColExists then
|
||
FDataGridSelect.Delete(i);
|
||
end;
|
||
// Signal for the user that we now hide some columns
|
||
tbtnDataColumns.ImageIndex := 108;
|
||
end;
|
||
// Ensure key columns are included to enable editing
|
||
KeyCols := GetKeyColumns;
|
||
// Truncate column array.
|
||
SetLength(DataGridResult.Columns, 0);
|
||
debug('mem: initializing browse columns.');
|
||
for i:=0 to SelectedTableColumns.Count-1 do begin
|
||
TblCol := TTableColumn(SelectedTableColumns[i]);
|
||
ShowIt := (FDataGridSelect.Count=0) or (FDataGridSelect.IndexOf(TblCol.Name)>-1);
|
||
if ShowIt or (KeyCols.IndexOf(TblCol.Name)>-1) then begin
|
||
if TblCol.DataType.Category in [dtcText, dtcBinary] then begin
|
||
select_base := select_base + ' ' + 'LEFT(' + Mask(TblCol.Name) + ', ' + IntToStr(GridMaxData) + ')' + ',';
|
||
end else begin
|
||
select_base := select_base + ' ' + Mask(TblCol.Name) + ',';
|
||
end;
|
||
select_base_full := select_base_full + ' ' + Mask(TblCol.Name) + ',';
|
||
InitColumn(TblCol, ShowIt);
|
||
end;
|
||
end;
|
||
debug('mem: browse column initialization complete.');
|
||
// Cut last comma
|
||
select_base := copy( select_base, 1, Length(select_base)-1 );
|
||
select_base_full := copy( select_base_full, 1, Length(select_base_full)-1 );
|
||
// Include db name for cases in which dbtree is switching databases and pending updates are in process
|
||
select_from := ' FROM '+mask(ActiveDatabase)+'.'+mask(SelectedTable.Text);
|
||
|
||
// Final SELECT segments
|
||
DataGridCurrentSelect := select_base;
|
||
DataGridCurrentFullSelect := select_base_full;
|
||
DataGridCurrentFrom := select_from;
|
||
DataGridCurrentFilter := SynMemoFilter.Text;
|
||
if Length(FDataGridSort) > 0 then
|
||
DataGridCurrentSort := ComposeOrderClause(FDataGridSort)
|
||
else
|
||
DataGridCurrentSort := '';
|
||
|
||
// Set button icons
|
||
if DataGridCurrentFilter <> '' then tbtnDataFilter.ImageIndex := 108
|
||
else tbtnDataFilter.ImageIndex := 107;
|
||
if DataGridCurrentSort <> '' then tbtnDataSorting.ImageIndex := 108
|
||
else tbtnDataSorting.ImageIndex := 107;
|
||
|
||
debug('mem: initializing browse rows (internal data).');
|
||
try
|
||
ReachedEOT := False;
|
||
SetLength(DataGridResult.Rows, SIMULATE_INITIAL_ROWS * (100 + SIMULATE_MORE_ROWS) div 100);
|
||
for i := 0 to SIMULATE_INITIAL_ROWS * (100 + SIMULATE_MORE_ROWS) div 100 - 1 do begin
|
||
DataGridResult.Rows[i].Loaded := False;
|
||
end;
|
||
debug('mem: initializing browse rows (grid).');
|
||
DataGrid.RootNodeCount := SIMULATE_INITIAL_ROWS * (100 + SIMULATE_MORE_ROWS) div 100;
|
||
except
|
||
DataGrid.RootNodeCount := 0;
|
||
SetLength(DataGridResult.Rows, 0);
|
||
PageControlMain.ActivePage := tabDatabase;
|
||
raise;
|
||
end;
|
||
debug('mem: browse row initialization complete.');
|
||
|
||
dataselected := true;
|
||
|
||
PageControlMainChange(Self);
|
||
end;
|
||
finally
|
||
DataGrid.Header.Columns.EndUpdate;
|
||
DataGrid.EndUpdate;
|
||
FreeAndNil(sl_query);
|
||
if RefreshingData then
|
||
DataGrid.OffsetXY := OldOffsetXY
|
||
else begin
|
||
// Switched to another table
|
||
DataGrid.OffsetXY := Point(0, 0); // Scroll to top left
|
||
FreeAndNil(PrevTableColWidths); // Throw away remembered, manually resized column widths
|
||
end;
|
||
viewingdata := false;
|
||
EnumerateRecentFilters;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
DataGridDB := ActiveDatabase;
|
||
DataGridTable := SelectedTable.Text;
|
||
AutoCalcColWidths(DataGrid, PrevTableColWidths);
|
||
end;
|
||
|
||
|
||
{***
|
||
Calculate + display total rowcount and found rows matching to filter
|
||
in data-tab
|
||
}
|
||
procedure TMainForm.DisplayRowCountStats(MatchingRows: Int64);
|
||
var
|
||
rows_total : Int64; // total rowcount
|
||
IsFiltered, IsInnodb: Boolean;
|
||
DBObjects: TDBObjectList;
|
||
i: Integer;
|
||
begin
|
||
lblDataTop.Caption := ActiveDatabase + '.' + SelectedTable.Text;
|
||
|
||
IsFiltered := self.DataGridCurrentFilter <> '';
|
||
if GetFocusedTreeNodeType = lntTable then begin
|
||
// Get rowcount from table
|
||
DBObjects := Connection.GetDBObjects(ActiveDatabase);
|
||
rows_total := -1;
|
||
IsInnodb := False;
|
||
for i:=0 to DBObjects.Count-1 do begin
|
||
if DBObjects[i].Name = SelectedTable.Text then begin
|
||
rows_total := DBObjects[i].Rows;
|
||
IsInnodb := DBObjects[i].Engine = 'InnoDB';
|
||
break;
|
||
end;
|
||
end;
|
||
|
||
if rows_total > -1 then begin
|
||
lblDataTop.Caption := lblDataTop.Caption + ': ' + FormatNumber(rows_total) + ' rows total';
|
||
if IsInnodb then lblDataTop.Caption := lblDataTop.Caption + ' (approximately)';
|
||
|
||
if MatchingRows = prefMaxTotalRows then begin
|
||
lblDataTop.Caption := lblDataTop.Caption + ', limited to ' + FormatNumber(prefMaxTotalRows);
|
||
end else if IsFiltered then begin
|
||
if MatchingRows = rows_total then begin
|
||
lblDataTop.Caption := lblDataTop.Caption + ', filter matches all rows';
|
||
end else if IsFiltered and (MatchingRows > -1) then begin
|
||
lblDataTop.Caption := lblDataTop.Caption + ', ' + FormatNumber(MatchingRows) + ' matches filter';
|
||
end;
|
||
end;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
{***
|
||
Occurs when active tab has changed.
|
||
}
|
||
procedure TMainForm.PageControlMainChange(Sender: TObject);
|
||
var
|
||
tab: TTabSheet;
|
||
begin
|
||
tab := PageControlMain.ActivePage;
|
||
|
||
// Move focus to relevant controls in order for them to receive keyboard events.
|
||
// Do this only if the user clicked the new tab. Not on automatic tab changes.
|
||
if Sender = PageControlMain then begin
|
||
if tab = tabHost then PageControlHostChange(Sender)
|
||
else if tab = tabDatabase then ListTables.SetFocus
|
||
else if tab = tabData then begin
|
||
viewdata(Sender);
|
||
if DataGrid.CanFocus then
|
||
DataGrid.SetFocus;
|
||
end else if IsQueryTab(tab.PageIndex, True) then begin
|
||
ActiveQueryMemo.SetFocus;
|
||
ActiveQueryMemo.WordWrap := actQueryWordWrap.Checked;
|
||
SynMemoQueryStatusChange(ActiveQueryMemo, []);
|
||
end;
|
||
end;
|
||
|
||
// Filter panel has one text per tab, which we need to update
|
||
UpdateFilterPanel(Sender);
|
||
|
||
// Ensure controls are in a valid state
|
||
ValidateControls(Sender);
|
||
FixQueryTabCloseButtons;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.PageControlHostChange(Sender: TObject);
|
||
var
|
||
tab: TTabSheet;
|
||
list: TBaseVirtualTree;
|
||
begin
|
||
tab := PageControlHost.ActivePage;
|
||
if tab = tabVariables then list := ListVariables
|
||
else if tab = tabStatus then list := ListStatus
|
||
else if tab = tabProcesslist then list := ListProcesses
|
||
else if tab = tabCommandStats then list := ListCommandStats
|
||
else Exit; // Silence compiler warning
|
||
list.SetFocus;
|
||
UpdateFilterPanel(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.LoadDatabaseProperties(db: WideString);
|
||
var
|
||
i, img : Integer;
|
||
Obj: TDBObject;
|
||
Objects: TDBObjectList;
|
||
Cap, SelectedCaptions: TWideStringList;
|
||
begin
|
||
// DB-Properties
|
||
Screen.Cursor := crHourGlass;
|
||
|
||
// Remember selected nodes
|
||
SelectedCaptions := GetVTCaptions(ListTables, True);
|
||
|
||
Objects := Connection.GetDBObjects(db);
|
||
ShowStatus( 'Displaying tables from "' + db + '" ...' );
|
||
|
||
ListTables.BeginUpdate;
|
||
ListTables.Clear;
|
||
|
||
SetLength(VTRowDataListTables, Objects.Count);
|
||
for i:=0 to Objects.Count-1 do begin
|
||
Obj := Objects[i];
|
||
VTRowDataListTables[i].Captions := TWideStringList.Create;
|
||
Cap := VTRowDataListTables[i].Captions;
|
||
// Object name
|
||
Cap.Add(Obj.Name);
|
||
if Obj.Rows > -1 then Cap.Add(FormatNumber(Obj.Rows))
|
||
else Cap.Add('');
|
||
if Obj.Size > -1 then Cap.Add(FormatByteNumber(Obj.Size))
|
||
else Cap.Add('');
|
||
VTRowDataListTables[i].NodeType := Obj.NodeType;
|
||
// Find icon
|
||
case Obj.NodeType of
|
||
lntTable: img := ICONINDEX_TABLE;
|
||
lntCrashedTable: img := ICONINDEX_CRASHED_TABLE;
|
||
lntView: img := ICONINDEX_VIEW;
|
||
lntProcedure: img := ICONINDEX_STOREDPROCEDURE;
|
||
lntFunction: img := ICONINDEX_STOREDFUNCTION;
|
||
lntTrigger: img := ICONINDEX_TRIGGER;
|
||
else img := -1;
|
||
end;
|
||
VTRowDataListTables[i].ImageIndex := img;
|
||
if Obj.Created = 0 then Cap.Add('')
|
||
else Cap.Add(DateTimeToStr(Obj.Created));
|
||
if Obj.Updated = 0 then Cap.Add('')
|
||
else Cap.Add(DateTimeToStr(Obj.Updated));
|
||
Cap.Add(Obj.Engine);
|
||
Cap.Add(Obj.Comment);
|
||
if Obj.Version > -1 then Cap.Add(IntToStr(Obj.Version))
|
||
else Cap.Add('');
|
||
Cap.Add(Obj.RowFormat);
|
||
if Obj.AvgRowLen > -1 then Cap.Add(FormatByteNumber(Obj.AvgRowLen))
|
||
else Cap.Add('');
|
||
if Obj.MaxDataLen > -1 then Cap.Add(FormatByteNumber(Obj.MaxDataLen))
|
||
else Cap.Add('');
|
||
if Obj.IndexLen > -1 then Cap.Add(FormatByteNumber(Obj.IndexLen))
|
||
else Cap.Add('');
|
||
if Obj.DataFree > -1 then Cap.Add(FormatByteNumber(Obj.DataFree))
|
||
else Cap.Add('');
|
||
if Obj.AutoInc > -1 then Cap.Add(FormatNumber(Obj.AutoInc))
|
||
else Cap.Add('');
|
||
if Obj.LastChecked = 0 then Cap.Add('')
|
||
else Cap.Add(DateTimeToStr(Obj.LastChecked));
|
||
Cap.Add(Obj.Collation);
|
||
if Obj.Checksum > -1 then Cap.Add(IntToStr(Obj.Checksum))
|
||
else Cap.Add('');
|
||
Cap.Add(Obj.CreateOptions);
|
||
Cap.Add(Obj.ObjType);
|
||
end;
|
||
ListTables.RootNodeCount := Length(VTRowDataListTables);
|
||
ListTables.EndUpdate;
|
||
SetVTSelection(ListTables, SelectedCaptions);
|
||
showstatus(db + ': ' + IntToStr(ListTables.RootNodeCount) +' table(s)', 0);
|
||
tabDatabase.Caption := sstr('Database: ' + db, 30);
|
||
ShowStatus(STATUS_MSG_READY);
|
||
Screen.Cursor := crDefault;
|
||
// Ensure tree db node displays its chidren initialized
|
||
DBtree.ReinitChildren(FindDBNode(db), False);
|
||
ValidateControls(Self);
|
||
end;
|
||
|
||
|
||
{ Show tables and their properties on the tabsheet "Database" }
|
||
procedure TMainForm.ShowDBProperties(db: WideString);
|
||
begin
|
||
Screen.Cursor := crHourglass;
|
||
PageControlMainChange(Self);
|
||
ShowStatus( STATUS_MSG_READY );
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
|
||
|
||
|
||
{***
|
||
Selection in ListTables is changing
|
||
}
|
||
procedure TMainForm.ListTablesChange(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode);
|
||
begin
|
||
ValidateControls(Sender);
|
||
end;
|
||
|
||
|
||
|
||
{***
|
||
Enable/disable various buttons and menu items.
|
||
Invoked when
|
||
- active sheet changes
|
||
- highlighted database changes
|
||
...
|
||
}
|
||
procedure TMainForm.ValidateControls(Sender: TObject);
|
||
var
|
||
inDataGrid, inDataTab, inDataOrQueryTab, inDataOrQueryTabNotEmpty: Boolean;
|
||
SelectedNodes: TNodeArray;
|
||
begin
|
||
inDataTab := PageControlMain.ActivePage = tabData;
|
||
inDataGrid := ActiveControl = DataGrid;
|
||
inDataOrQueryTab := (PageControlMain.ActivePage = tabData) or QueryTabActive;
|
||
inDataOrQueryTabNotEmpty := inDataOrQueryTab and (ActiveGrid.RootNodeCount > 0);
|
||
|
||
SelectedNodes := ListTables.GetSortedSelection(False);
|
||
|
||
actSQLhelp.Enabled := Connection.ServerVersionInt >= 40100;
|
||
actImportCSV.Enabled := Connection.ServerVersionInt >= 32206;
|
||
|
||
// Data tab - if query results are made editable, these will need
|
||
// to be changed to look at which tab is focused.
|
||
actDataInsert.Enabled := inDataGrid;
|
||
actDataDelete.Enabled := inDataGrid and (DataGrid.SelectedCount > 0);
|
||
actDataFirst.Enabled := inDataGrid;
|
||
actDataLast.Enabled := inDataGrid;
|
||
actDataPostChanges.Enabled := inDataGrid and DataGridHasChanges;
|
||
actDataCancelChanges.Enabled := inDataGrid and DataGridHasChanges;
|
||
if (not inDataTab) and DataGrid.IsEditing then
|
||
DataGrid.EndEditNode;
|
||
|
||
// Activate export-options if we're on Data- or Query-tab
|
||
actCopyAsCSV.Enabled := inDataOrQueryTabNotEmpty;
|
||
actCopyAsHTML.Enabled := inDataOrQueryTabNotEmpty;
|
||
actCopyAsXML.Enabled := inDataOrQueryTabNotEmpty;
|
||
actCopyAsSQL.Enabled := inDataOrQueryTabNotEmpty;
|
||
actExportData.Enabled := inDataOrQueryTabNotEmpty;
|
||
actHTMLView.Enabled := inDataOrQueryTabNotEmpty and Assigned(ActiveGrid.FocusedNode);
|
||
setNull1.Enabled := inDataGrid and Assigned(DataGrid.FocusedNode);
|
||
|
||
// Query tab
|
||
// Manually invoke OnChange event of tabset to fill helper list with data
|
||
if QueryTabActive then RefreshQueryHelpers;
|
||
|
||
ValidateQueryControls(Sender);
|
||
|
||
if not QueryTabActive then // Empty panel with "Line:Char"
|
||
showstatus('', 1);
|
||
end;
|
||
|
||
procedure TMainForm.RefreshQueryHelpers;
|
||
var
|
||
dummy: Boolean;
|
||
begin
|
||
dummy := True;
|
||
ActiveQueryTabset.OnChange(Self, ActiveQueryTabset.TabIndex, dummy);
|
||
end;
|
||
|
||
procedure TMainForm.ValidateQueryControls(Sender: TObject);
|
||
var
|
||
NotEmpty, HasSelection: Boolean;
|
||
Tab: TQueryTab;
|
||
cap: WideString;
|
||
InQueryTab: Boolean;
|
||
begin
|
||
InQueryTab := QueryTabActive;
|
||
if InQueryTab then
|
||
Tab := ActiveQueryTab
|
||
else
|
||
Tab := nil;
|
||
NotEmpty := InQueryTab and (Tab.Memo.GetTextLen > 0);
|
||
HasSelection := InQueryTab and Tab.Memo.SelAvail;
|
||
actExecuteQuery.Enabled := InQueryTab and NotEmpty;
|
||
actExecuteSelection.Enabled := InQueryTab and HasSelection;
|
||
actExecuteLine.Enabled := InQueryTab and (Tab.Memo.LineText <> '');
|
||
actSaveSQLAs.Enabled := InQueryTab and NotEmpty;
|
||
actSaveSQL.Enabled := actSaveSQLAs.Enabled and (Tab.MemoFilename <> '') and Tab.Memo.Modified;
|
||
actSaveSQLselection.Enabled := InQueryTab and HasSelection;
|
||
actSaveSQLSnippet.Enabled := InQueryTab and NotEmpty;
|
||
actSaveSQLSelectionSnippet.Enabled := InQueryTab and HasSelection;
|
||
actQueryFind.Enabled := InQueryTab and NotEmpty;
|
||
actQueryReplace.Enabled := InQueryTab and NotEmpty;
|
||
// We need a pressed button which somehow does not work in conjunction with Enabled=False
|
||
// actQueryStopOnErrors.Enabled := QueryTabActive;
|
||
actQueryWordWrap.Enabled := InQueryTab;
|
||
actClearQueryEditor.Enabled := InQueryTab and NotEmpty;
|
||
actSetDelimiter.Enabled := InQueryTab;
|
||
actCloseQueryTab.Enabled := IsQueryTab(PageControlMain.ActivePageIndex, False);
|
||
if Assigned(Tab) then begin
|
||
cap := trim(Tab.TabSheet.Caption);
|
||
if cap[Length(cap)] = '*' then
|
||
cap := copy(cap, 1, Length(cap)-1);
|
||
if Tab.Memo.Modified then
|
||
cap := cap + '*';
|
||
SetTabCaption(Tab.TabSheet.PageIndex, cap);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.KillProcess(Sender: TObject);
|
||
var t : Boolean;
|
||
ProcessIDs : TWideStringList;
|
||
i : Integer;
|
||
begin
|
||
t := TimerRefresh.Enabled;
|
||
TimerRefresh.Enabled := false; // prevent av (ListProcesses.selected...)
|
||
ProcessIDs := GetVTCaptions( ListProcesses, True );
|
||
if MessageDlg('Kill '+inttostr(ProcessIDs.count)+' Process(es)?', mtConfirmation, [mbok,mbcancel], 0) = mrok then
|
||
begin
|
||
try
|
||
for i:=0 to ProcessIDs.Count-1 do begin
|
||
// Don't kill own process
|
||
if ProcessIDs[i] = IntToStr(Connection.ThreadId) then
|
||
LogSQL('Ignoring own process id '+ProcessIDs[i]+' when trying to kill it.')
|
||
else
|
||
Connection.Query('KILL '+ProcessIDs[i]);
|
||
end;
|
||
except
|
||
on E:Exception do
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
end;
|
||
ListProcesses.Tag := VTREE_NOTLOADED;
|
||
ListProcesses.Repaint;
|
||
end;
|
||
TimerRefresh.Enabled := t; // re-enable autorefresh timer
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ExecSQLClick(Sender: TObject; Selection: Boolean=false; CurrentLine: Boolean=false);
|
||
var
|
||
SQL: TWideStringList;
|
||
i, j, QueryCount: Integer;
|
||
SQLTime, SQLNetTime: Cardinal;
|
||
Results: TMySQLQuery;
|
||
ColName, Text, LB: WideString;
|
||
col: TVirtualTreeColumn;
|
||
ResultLabel: TLabel;
|
||
ActiveGridResult: TGridResult;
|
||
cap: String;
|
||
begin
|
||
ResultLabel := ActiveQueryTab.LabelResultInfo;
|
||
if CurrentLine then Text := ActiveQueryMemo.LineText
|
||
else if Selection then Text := ActiveQueryMemo.SelText
|
||
else Text := ActiveQueryMemo.Text;
|
||
// Give text back its original linebreaks if possible
|
||
case ActiveQueryTab.MemoLineBreaks of
|
||
lbsUnix: LB := LB_UNIX;
|
||
lbsMac: LB := LB_MAC;
|
||
lbsWide: LB := LB_WIDE;
|
||
end;
|
||
if LB <> '' then
|
||
Text := WideStringReplace(Text, CRLF, LB, [rfReplaceAll]);
|
||
showstatus('Initializing SQL...');
|
||
SQL := parseSQL(Text);
|
||
if SQL.Count = 0 then begin
|
||
ResultLabel.Caption := '(nothing to do)';
|
||
Exit;
|
||
end;
|
||
|
||
ResultLabel.Caption := '';
|
||
FreeAndNil(Results);
|
||
actExecuteQuery.Enabled := false;
|
||
actExecuteSelection.Enabled := false;
|
||
EnableProgressBar(SQL.Count);
|
||
showstatus('Executing SQL...');
|
||
SQLtime := 0;
|
||
SQLNetTime := 0;
|
||
QueryCount := 0;
|
||
for i:=0 to SQL.Count-1 do begin
|
||
ProgressBarStatus.StepIt;
|
||
ProgressBarStatus.Repaint;
|
||
try
|
||
// Immediately free results for all but last query
|
||
if i < SQL.Count-1 then
|
||
Connection.Query(SQL[i])
|
||
else
|
||
Results := Connection.GetResults(SQL[i]);
|
||
Inc(SQLtime, Connection.LastQueryDuration);
|
||
Inc(SQLNetTime, Connection.LastQueryNetworkDuration);
|
||
Inc(QueryCount);
|
||
if Assigned(Results) and Results.HasResult then
|
||
ResultLabel.Caption := FormatNumber(Results.ColumnCount) +' column(s) x '+FormatNumber(Results.RecordCount) +' row(s) in last result set.'
|
||
else
|
||
ResultLabel.Caption := FormatNumber(Connection.RowsAffected) +' row(s) affected by last query.';
|
||
except
|
||
on E:Exception do begin
|
||
if actQueryStopOnErrors.Checked or (i = SQL.Count - 1) then begin
|
||
Screen.Cursor := crDefault;
|
||
MessageDlg( E.Message, mtError, [mbOK], 0 );
|
||
Break;
|
||
end;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
if ResultLabel.Caption <> '' then begin
|
||
cap := ' Duration for ';
|
||
cap := cap + IntToStr(QueryCount);
|
||
if QueryCount < SQL.Count then
|
||
cap := cap + ' of ' + IntToStr(SQL.Count);
|
||
if SQL.Count = 1 then
|
||
cap := cap + ' query'
|
||
else
|
||
cap := cap + ' queries';
|
||
cap := cap + ': '+FormatNumber(SQLTime/1000, 3) +' sec.';
|
||
if SQLNetTime > 0 then
|
||
cap := cap + ' (+ '+FormatNumber(SQLNetTime/1000, 3) +' sec. network)';
|
||
ResultLabel.Caption := ResultLabel.Caption + cap;
|
||
end;
|
||
|
||
// Avoid excessive GridHighlightChanged() when flicking controls.
|
||
viewingdata := true;
|
||
ProgressBarStatus.Hide;
|
||
|
||
if Assigned(Results) and Results.HasResult then begin
|
||
ActiveGrid.BeginUpdate;
|
||
// Reset filter if filter panel was disabled
|
||
UpdateFilterPanel(Sender);
|
||
ActiveGrid.Header.Options := ActiveGrid.Header.Options + [hoVisible];
|
||
ActiveGrid.Header.Columns.BeginUpdate;
|
||
ActiveGrid.Header.Columns.Clear;
|
||
debug('mem: clearing and initializing query columns.');
|
||
ActiveGridResult := GridResult(ActiveGrid);
|
||
SetLength(ActiveGridResult.Columns, 0);
|
||
SetLength(ActiveGridResult.Columns, Results.ColumnCount);
|
||
for i:=0 to Results.ColumnCount-1 do begin
|
||
ColName := Results.ColumnNames[i];
|
||
col := ActiveGrid.Header.Columns.Add;
|
||
col.Text := ColName;
|
||
col.Options := col.Options - [coAllowClick];
|
||
ActiveGridResult.Columns[i].Name := ColName;
|
||
ActiveGridResult.Columns[i].DatatypeCat := Results.DataType(i).Category;
|
||
if ActiveGridResult.Columns[i].DatatypeCat in [dtcInteger, dtcReal] then
|
||
col.Alignment := taRightJustify;
|
||
ActiveGridResult.Columns[i].IsPriPart := Results.ColIsPrimaryKeyPart(i);
|
||
end;
|
||
debug('mem: query column initialization complete.');
|
||
debug('mem: clearing and initializing query rows (internal data).');
|
||
SetLength(ActiveGridResult.Rows, 0);
|
||
SetLength(ActiveGridResult.Rows, Results.RecordCount);
|
||
Results.First;
|
||
for i:=0 to Results.RecordCount-1 do begin
|
||
ActiveGridResult.Rows[i].Loaded := True;
|
||
SetLength(ActiveGridResult.Rows[i].Cells, Results.ColumnCount);
|
||
for j:=0 to Results.ColumnCount-1 do begin
|
||
case ActiveGridResult.Columns[j].DatatypeCat of
|
||
dtcInteger, dtcReal: ActiveGridResult.Rows[i].Cells[j].Text := FormatNumber(Results.Col(j), False);
|
||
dtcBinary: ActiveGridResult.Rows[i].Cells[j].Text := '0x' + BinToWideHex(Results.Col(j));
|
||
else ActiveGridResult.Rows[i].Cells[j].Text := Results.Col(j);
|
||
end;
|
||
ActiveGridResult.Rows[i].Cells[j].IsNull := Results.IsNull(j);
|
||
end;
|
||
Results.Next;
|
||
end;
|
||
Results.Free;
|
||
debug('mem: initializing query rows (grid).');
|
||
ActiveGrid.RootNodeCount := Length(ActiveGridResult.Rows);
|
||
debug('mem: query row initialization complete.');
|
||
ActiveGrid.Header.Columns.EndUpdate;
|
||
ActiveGrid.ClearSelection;
|
||
ActiveGrid.OffsetXY := Point(0, 0);
|
||
ActiveGrid.EndUpdate;
|
||
AutoCalcColWidths(ActiveGrid);
|
||
end;
|
||
// Ensure controls are in a valid state
|
||
ValidateControls(Sender);
|
||
viewingdata := false;
|
||
Screen.Cursor := crDefault;
|
||
ShowStatus( STATUS_MSG_READY );
|
||
end;
|
||
|
||
|
||
{ Proposal about to insert a String into synmemo }
|
||
procedure TMainForm.SynCompletionProposalCodeCompletion(Sender: TObject;
|
||
var Value: WideString; Shift: TShiftState; Index: Integer; EndToken: WideChar);
|
||
begin
|
||
(Sender as TSynCompletionProposal).Form.CurrentEditor.UndoList.AddGroupBreak;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SynCompletionProposalAfterCodeCompletion(Sender: TObject;
|
||
const Value: WideString; Shift: TShiftState; Index: Integer; EndToken: WideChar);
|
||
begin
|
||
(Sender as TSynCompletionProposal).Form.CurrentEditor.UndoList.AddGroupBreak;
|
||
end;
|
||
|
||
|
||
{ Proposal-Combobox pops up }
|
||
procedure TMainForm.SynCompletionProposalExecute(Kind: SynCompletionType;
|
||
Sender: TObject; var CurrentInput: WideString; var x, y: Integer;
|
||
var CanExecute: Boolean);
|
||
var
|
||
i,j : Integer;
|
||
Results : TMySQLQuery;
|
||
DBObjects : TDBObjectList;
|
||
sql, TableClauses: WideString;
|
||
Tables : TStringList;
|
||
tablename : WideString;
|
||
rx : TRegExpr;
|
||
PrevShortToken,
|
||
PrevLongToken,
|
||
Token : WideString;
|
||
Start,
|
||
TokenTypeInt : Integer;
|
||
Attri : TSynHighlighterAttributes;
|
||
Proposal : TSynCompletionProposal;
|
||
Editor : TCustomSynEdit;
|
||
Queries : TWideStringList;
|
||
|
||
procedure addTable(Obj: TDBObject);
|
||
var Icon: Integer;
|
||
begin
|
||
case Obj.NodeType of
|
||
lntTable: Icon := ICONINDEX_TABLE;
|
||
lntCrashedTable: Icon := ICONINDEX_CRASHED_TABLE;
|
||
lntFunction: Icon := ICONINDEX_STOREDFUNCTION;
|
||
lntProcedure: Icon := ICONINDEX_STOREDPROCEDURE;
|
||
lntView: Icon := ICONINDEX_VIEW;
|
||
lntTrigger: Icon := ICONINDEX_TRIGGER;
|
||
else Icon := -1;
|
||
end;
|
||
Proposal.InsertList.Add(Obj.Name);
|
||
Proposal.ItemList.Add( WideFormat(SYNCOMPLETION_PATTERN, [Icon, LowerCase(Obj.ObjType), Obj.Name]) );
|
||
end;
|
||
|
||
procedure addColumns( tablename: WideString );
|
||
var
|
||
dbname : WideString;
|
||
Columns: TMySQLQuery;
|
||
begin
|
||
dbname := ActiveDatabase;
|
||
if Pos( '.', tablename ) > -1 then
|
||
begin
|
||
dbname := Copy( tablename, 0, Pos( '.', tablename )-1 );
|
||
tablename := Copy( tablename, Pos( '.', tablename )+1, Length(tablename) );
|
||
end;
|
||
// Do not mask db and table name to avoid double masking.
|
||
// Rely on what the user typed is already a valid masked/quoted identifier.
|
||
if dbname <> '' then
|
||
tablename := dbname + '.' + tablename;
|
||
try
|
||
Columns := Connection.GetResults('SHOW COLUMNS FROM '+tablename);
|
||
except
|
||
Exit;
|
||
end;
|
||
while not Columns.Eof do begin
|
||
Proposal.InsertList.Add(Columns.Col('Field'));
|
||
Proposal.ItemList.Add(WideFormat(SYNCOMPLETION_PATTERN, [ICONINDEX_FIELD, GetFirstWord(Columns.Col('Type')), Columns.Col('Field')]) );
|
||
Columns.Next;
|
||
end;
|
||
FreeAndNil(Columns);
|
||
end;
|
||
|
||
begin
|
||
Proposal := Sender as TSynCompletionProposal;
|
||
Editor := Proposal.Form.CurrentEditor;
|
||
Editor.GetHighlighterAttriAtRowColEx(Editor.CaretXY, Token, TokenTypeInt, Start, Attri);
|
||
if TtkTokenKind(TokenTypeInt) = tkString then begin
|
||
CanExecute := False;
|
||
Exit;
|
||
end;
|
||
|
||
Proposal.InsertList.Clear;
|
||
Proposal.ItemList.Clear;
|
||
PrevShortToken := Proposal.PreviousToken;
|
||
PrevShortToken := WideDequotedStr(PrevShortToken, '`');
|
||
|
||
rx := TRegExpr.Create;
|
||
|
||
// Find longer token, ignore EndOfTokenChars, just the last chars up to a whitespace, comma or paranthesis
|
||
rx.Expression := '([^\s,\(\)]+)$';
|
||
PrevLongToken := Copy(Editor.LineText, 1, Editor.CaretX-2);
|
||
if rx.Exec(PrevLongToken) then
|
||
PrevLongToken := rx.Match[1]
|
||
else
|
||
PrevLongToken := '';
|
||
|
||
// Display list of variables
|
||
rx.Expression := '^@@(SESSION|GLOBAL)$';
|
||
rx.ModifierI := True;
|
||
if rx.Exec(PrevLongToken) then begin
|
||
try
|
||
Results := Connection.GetResults('SHOW '+UpperCase(rx.Match[1])+' VARIABLES');
|
||
while not Results.Eof do begin
|
||
Proposal.InsertList.Add(Results.Col(0));
|
||
Proposal.ItemList.Add(WideFormat(SYNCOMPLETION_PATTERN, [ICONINDEX_PRIMARYKEY, 'variable', Results.Col(0)+' \color{clSilver}= '+WideStringReplace(Results.Col(1), '\', '\\', [rfReplaceAll])] ) );
|
||
Results.Next;
|
||
end;
|
||
except
|
||
// Just log error in sql log, do not disturb user while typing
|
||
end;
|
||
Exit;
|
||
end;
|
||
|
||
// Get column-names into the proposal pulldown
|
||
// when we write sql like "SELECT t.|col FROM table [AS] t"
|
||
// Current limitation: Identifiers (masked or not) containing
|
||
// spaces are not detected correctly.
|
||
|
||
// 1. find the currently edited sql-statement around the cursor position in synmemo
|
||
if Editor = SynMemoFilter then begin
|
||
// Concat query segments, set in viewdata(), so the below regular expressions can find structure
|
||
sql := DataGridCurrentFullSelect + DataGridCurrentFrom + ' WHERE ' + Editor.Text;
|
||
end else begin
|
||
// Proposal in one of the query tabs
|
||
Queries := parsesql(Editor.Text);
|
||
j := 0;
|
||
for i:=0 to Queries.Count-1 do begin
|
||
Inc(j, Length(Queries[i])+1);
|
||
if (j >= Editor.SelStart) or (i = Queries.Count-1) then begin
|
||
sql := Queries[i];
|
||
break;
|
||
end;
|
||
end;
|
||
FreeAndNil(Queries);
|
||
end;
|
||
|
||
// 2. Parse FROM clause to detect relevant table/view, probably aliased
|
||
rx.ModifierG := True;
|
||
rx.Expression := '\b(FROM|INTO|UPDATE)\s+(.+)(WHERE|HAVING|ORDER|GROUP)?';
|
||
if rx.Exec(sql) then begin
|
||
TableClauses := rx.Match[2];
|
||
// Ensure tables in JOIN clause(s) are splitted by comma
|
||
TableClauses := WideStringReplace(TableClauses, 'JOIN', ',', [rfReplaceAll, rfIgnoreCase]);
|
||
// Split table clauses by commas
|
||
Tables := TStringList.Create;
|
||
Tables.Delimiter := ',';
|
||
Tables.StrictDelimiter := true;
|
||
Tables.DelimitedText := TableClauses;
|
||
rx.Expression := '(\S+)\s+(AS\s+)?(\S+)';
|
||
|
||
for i := 0 to Tables.Count - 1 do begin
|
||
// If the just typed word equals the alias of this table or the
|
||
// tablename itself, set tablename var and break loop
|
||
if rx.Exec(Tables[i]) then while true do begin
|
||
if PrevShortToken = WideDequotedStr(rx.Match[3],'`') then begin
|
||
tablename := rx.Match[1];
|
||
break;
|
||
end;
|
||
if not rx.ExecNext then
|
||
break;
|
||
end;
|
||
if tablename <> '' then
|
||
break;
|
||
end;
|
||
end;
|
||
rx.Free;
|
||
|
||
if (tablename <> '') then begin
|
||
// add columns to proposal
|
||
addColumns( tablename );
|
||
end else if PrevLongToken <> '' then begin
|
||
// assuming previoustoken itself is a table
|
||
addColumns( PrevLongToken );
|
||
end;
|
||
|
||
|
||
if Length(CurrentInput) = 0 then // makes only sense if the user has typed "database."
|
||
begin
|
||
i := Databases.IndexOf(PrevShortToken);
|
||
if i > -1 then begin
|
||
// Only display tables from specified db
|
||
Screen.Cursor := crHourGlass;
|
||
DBObjects := Connection.GetDBObjects(Databases[i]);
|
||
for j:=0 to DBObjects.Count-1 do
|
||
addTable(DBObjects[j]);
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
if Proposal.ItemList.count = 0 then begin
|
||
// Add databases
|
||
for i := 0 to Databases.Count - 1 do begin
|
||
Proposal.InsertList.Add(Databases[i]);
|
||
Proposal.ItemList.Add(WideFormat(SYNCOMPLETION_PATTERN, [ICONINDEX_DB, 'database', Databases[i]]));
|
||
end;
|
||
|
||
if ActiveDatabase <> '' then begin
|
||
// Display tables from current db
|
||
DBObjects := Connection.GetDBObjects(ActiveDatabase);
|
||
for j:=0 to DBObjects.Count-1 do
|
||
addTable(DBObjects[j]);
|
||
if Length(CurrentInput) = 0 then // assume that we have already a dbname in memo
|
||
Proposal.Position := Databases.Count;
|
||
end;
|
||
|
||
// Add functions
|
||
for i := 0 to Length(MySQLFunctions) - 1 do begin
|
||
// Don't display unsupported functions here
|
||
if MySqlFunctions[i].Version > Connection.ServerVersionInt then
|
||
continue;
|
||
Proposal.InsertList.Add( MySQLFunctions[i].Name + MySQLFunctions[i].Declaration );
|
||
Proposal.ItemList.Add( WideFormat(SYNCOMPLETION_PATTERN, [ICONINDEX_FUNCTION, 'function', MySQLFunctions[i].Name + '\color{clSilver}' + MySQLFunctions[i].Declaration] ) );
|
||
end;
|
||
|
||
// Add keywords
|
||
for i := 0 to MySQLKeywords.Count - 1 do begin
|
||
Proposal.InsertList.Add( MySQLKeywords[i] );
|
||
Proposal.ItemList.Add( WideFormat(SYNCOMPLETION_PATTERN, [ICONINDEX_KEYWORD, 'keyword', MySQLKeywords[i]] ) );
|
||
end;
|
||
|
||
end;
|
||
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SynMemoQueryStatusChange(Sender: TObject; Changes:
|
||
TSynStatusChanges);
|
||
var
|
||
sm: TSynMemo;
|
||
begin
|
||
sm := Sender as TSynMemo;
|
||
ValidateQueryControls(Sender);
|
||
showstatus(FormatNumber(sm.CaretY)+' : '+FormatNumber(sm.CaretX), 1);
|
||
end;
|
||
|
||
|
||
|
||
procedure TMainForm.TimerHostUptimeTimer(Sender: TObject);
|
||
begin
|
||
// Display server uptime
|
||
if Assigned(Connection) then
|
||
showstatus('Uptime: '+FormatTimeNumber(Connection.ServerUptime), 4)
|
||
else
|
||
showstatus('', 4);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.FormActivate(Sender: TObject);
|
||
begin
|
||
TimerConnected.OnTimer(self);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ListTablesEditing(Sender: TBaseVirtualTree;
|
||
Node: PVirtualNode; Column: TColumnIndex; var Allowed: Boolean);
|
||
var
|
||
NodeData: PVTreeData;
|
||
begin
|
||
// Tables and views can be renamed, routines cannot
|
||
NodeData := Sender.GetNodeData(Node);
|
||
Allowed := NodeData.NodeType in [lntTable, lntView];
|
||
end;
|
||
|
||
|
||
{***
|
||
Rename table after checking the new name for invalid characters
|
||
}
|
||
procedure TMainForm.ListTablesNewText(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Column: TColumnIndex; NewText: WideString);
|
||
var
|
||
NodeData : PVTreeData;
|
||
begin
|
||
// Fetch data from node
|
||
NodeData := Sender.GetNodeData(Node);
|
||
|
||
// Try to rename, on any error abort and don't rename ListItem
|
||
try
|
||
ensureValidIdentifier( NewText );
|
||
// rename table
|
||
Connection.Query('RENAME TABLE ' + mask(NodeData.Captions[0]) + ' TO ' + mask(NewText));
|
||
|
||
if SynSQLSyn1.TableNames.IndexOf( NewText ) = -1 then begin
|
||
SynSQLSyn1.TableNames.Add(NewText);
|
||
end;
|
||
// Update nodedata
|
||
NodeData.Captions[0] := NewText;
|
||
// Now the active tree db has to be updated. But calling RefreshTreeDB here causes an AV
|
||
// so we do it manually here
|
||
Connection.ClearDbObjects(ActiveDatabase);
|
||
DBTree.InvalidateChildren(FindDBNode(ActiveDatabase), True);
|
||
except
|
||
on E:Exception do
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.TimerConnectedTimer(Sender: TObject);
|
||
begin
|
||
if Assigned(Connection) and Connection.Active then begin
|
||
// calculate and display connection-time
|
||
showstatus('Connected: ' + FormatTimeNumber(Connection.ConnectionUptime), 2);
|
||
end else begin
|
||
showstatus('Disconnected.', 2);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.Clear2Click(Sender: TObject);
|
||
begin
|
||
// clear history-memo
|
||
Screen.Cursor := crHourglass;
|
||
SynMemoSQLLog.Gutter.LineNumberStart := SynMemoSQLLog.Gutter.LineNumberStart + SynMemoSQLLog.Lines.Count;
|
||
SynMemoSQLLog.Lines.Clear;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
|
||
|
||
{**
|
||
Column-title clicked -> generate "ORDER BY"
|
||
}
|
||
procedure TMainForm.QuickFilterClick(Sender: TObject);
|
||
var
|
||
filter,value,column : WideString;
|
||
menuitem : TMenuItem;
|
||
IsNull: Boolean;
|
||
begin
|
||
// Set filter for "where..."-clause
|
||
value := DataGrid.Text[DataGrid.FocusedNode, DataGrid.FocusedColumn];
|
||
menuitem := (Sender as TMenuItem);
|
||
column := mask(DataGrid.Header.Columns[DataGrid.FocusedColumn].Text);
|
||
IsNull := DataGridResult.Rows[DataGrid.FocusedNode.Index].Cells[DataGrid.FocusedColumn].IsNull;
|
||
if (menuitem = QF1) and IsNull then
|
||
filter := column + ' IS NULL'
|
||
else if menuitem = QF1 then
|
||
filter := column + ' =' + ' ' + esc( value )
|
||
else if (menuitem = QF2) and IsNull then
|
||
filter := column + ' IS NOT NULL'
|
||
else if menuitem = QF2 then
|
||
filter := column + ' !=' + ' ' + esc( value )
|
||
else if menuitem = QF3 then
|
||
filter := column + ' >' + ' ' + esc( value )
|
||
else if menuitem = QF4 then
|
||
filter := column + ' <' + ' ' + esc( value )
|
||
else if menuitem = QF5 then
|
||
filter := column + ' LIKE' + ' ''' + esc( value, true ) + '%'''
|
||
else if menuitem = QF6 then
|
||
filter := column + ' LIKE' + ' ''%' + esc( value, true ) + ''''
|
||
else if menuitem = QF7 then
|
||
filter := column + ' LIKE' + ' ''%' + esc( value, true ) + '%'''
|
||
|
||
else if menuitem = QF8 then
|
||
begin
|
||
filter := InputBox('Specify filter-value...', column+' = ', 'Value');
|
||
if filter = 'Value' then
|
||
abort;
|
||
filter := column + ' = ''' + filter + '''';
|
||
end
|
||
|
||
else if menuitem = QF9 then
|
||
begin
|
||
filter := InputBox('Specify filter-value...', column+' != ', 'Value');
|
||
if filter = 'Value' then
|
||
abort;
|
||
filter := column + ' != ''' + filter + '''';
|
||
end
|
||
|
||
else if menuitem = QF10 then
|
||
begin
|
||
filter := InputBox('Specify filter-value...', column+' > ', 'Value');
|
||
if filter = 'Value' then
|
||
abort;
|
||
filter := column + ' > ''' + filter + '''';
|
||
end
|
||
|
||
else if menuitem = QF11 then
|
||
begin
|
||
filter := InputBox('Specify filter-value...', column+' < ', 'Value');
|
||
if filter = 'Value' then
|
||
abort;
|
||
filter := column + ' < ''' + filter + '''';
|
||
end
|
||
|
||
else if menuitem = QF12 then
|
||
begin
|
||
filter := InputBox('Specify filter-value...', column+' LIKE ', 'Value');
|
||
if filter = 'Value' then
|
||
abort;
|
||
filter := column + ' LIKE ''%' + filter + '%''';
|
||
end
|
||
|
||
else if menuitem = QF13 then
|
||
filter := column + ' IS NULL'
|
||
|
||
else if menuitem = QF14 then
|
||
filter := column + ' IS NOT NULL'
|
||
|
||
// Filters with text from clipboard
|
||
else if (menuitem = QF15) or (menuitem = QF16) or (menuitem = QF17) or (menuitem = QF18) or (menuitem = QF19) then
|
||
begin
|
||
filter := menuitem.Caption;
|
||
end;
|
||
|
||
SynMemoFilter.UndoList.AddGroupBreak;
|
||
SynMemoFilter.SelectAll;
|
||
SynmemoFilter.SelText := filter;
|
||
ToggleFilterPanel(True);
|
||
actApplyFilterExecute(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.popupQueryPopup(Sender: TObject);
|
||
begin
|
||
// Sets cursor into memo and activates TAction(s) like paste
|
||
ActiveQueryMemo.SetFocus;
|
||
end;
|
||
|
||
procedure TMainForm.popupResultGridPopup(Sender: TObject);
|
||
begin
|
||
// data available?
|
||
// Save2CSV.enabled :=
|
||
end;
|
||
|
||
procedure TMainForm.AutoRefreshSetInterval(Sender: TObject);
|
||
var
|
||
seconds : String;
|
||
secondsInt : Integer;
|
||
begin
|
||
// set interval for autorefresh-timer
|
||
seconds := IntToStr(TimerRefresh.interval div 1000);
|
||
if inputquery('Auto refresh','Refresh list every ... second(s):', seconds) then begin
|
||
secondsInt := StrToIntDef(seconds, 0);
|
||
if secondsInt > 0 then begin
|
||
TimerRefresh.Interval := secondsInt * 1000;
|
||
TimerRefresh.Enabled := true;
|
||
menuAutoRefresh.Checked := true;
|
||
end
|
||
else
|
||
MessageDLG('Seconds must be between 1 and ' + IntToStr(maxint) + '.', mtError, [mbOK], 0);
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.AutoRefreshToggle(Sender: TObject);
|
||
begin
|
||
// enable autorefresh-timer
|
||
TimerRefresh.Enabled := not TimerRefresh.Enabled;
|
||
menuAutoRefresh.Checked := TimerRefresh.Enabled;
|
||
end;
|
||
|
||
procedure TMainForm.SynMemoQueryDragOver(Sender, Source: TObject; X,
|
||
Y: Integer; State: TDragState; var Accept: Boolean);
|
||
var
|
||
src : TControl;
|
||
Memo: TSynMemo;
|
||
begin
|
||
// dragging an object over the query-memo
|
||
Memo := ActiveQueryMemo;
|
||
src := Source as TControl;
|
||
// Accepting drag's from DBTree and QueryHelpers
|
||
Accept := (src = DBtree) or (src = ActiveQueryHelpers);
|
||
// set x-position of cursor
|
||
Memo.CaretX := (x - Memo.Gutter.Width) div Memo.CharWidth - 1 + Memo.LeftChar;
|
||
// set y-position of cursor
|
||
Memo.CaretY := y div Memo.LineHeight + Memo.TopLine;
|
||
if not Memo.Focused then
|
||
Memo.SetFocus;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SynMemoQueryDragDrop(Sender, Source: TObject; X,
|
||
Y: Integer);
|
||
var
|
||
src : TControl;
|
||
Text : WideString;
|
||
LoadText : Boolean;
|
||
i: Integer;
|
||
begin
|
||
// dropping a tree node or listbox item into the query-memo
|
||
ActiveQueryMemo.UndoList.AddGroupBreak;
|
||
src := Source as TControl;
|
||
Text := 'Error: Unspecified source control in drag''n drop operation!';
|
||
LoadText := True;
|
||
// Check for allowed controls as source has already
|
||
// been performed in OnDragOver. So, only do typecasting here.
|
||
if src = DBtree then
|
||
Text := DBtree.Text[DBtree.GetFirstSelected, 0]
|
||
else if (src = ActiveQueryHelpers) and (ActiveQueryHelpers.ItemIndex > -1) then begin
|
||
// Snippets tab
|
||
if tabsetQueryHelpers.TabIndex = 3 then begin
|
||
QueryLoad( DirnameSnippets + ActiveQueryHelpers.Items[ActiveQueryHelpers.ItemIndex] + '.sql', False );
|
||
LoadText := False;
|
||
// All other tabs
|
||
end else begin
|
||
Text := '';
|
||
for i := 0 to ActiveQueryHelpers.Items.Count - 1 do begin
|
||
if ActiveQueryHelpers.Selected[i] then
|
||
Text := Text + ActiveQueryHelpers.Items[i] + ', ';
|
||
end;
|
||
Delete(Text, Length(Text)-1, 2);
|
||
end;
|
||
end;
|
||
// Only insert text if no previous action did the job.
|
||
// Should be false when dropping a snippet-file here
|
||
if LoadText then
|
||
ActiveQueryMemo.SelText := Text;
|
||
ActiveQueryMemo.UndoList.AddGroupBreak;
|
||
end;
|
||
|
||
|
||
|
||
procedure TMainForm.SynMemoQueryDropFiles(Sender: TObject; X, Y: Integer;
|
||
AFiles: TUnicodeStrings);
|
||
var
|
||
i: Integer;
|
||
begin
|
||
// One or more files from explorer or somewhere else was dropped onto the
|
||
// query-memo - load their contents into seperate tabs
|
||
for i:=0 to AFiles.Count-1 do begin
|
||
if fileExists(AFiles[i]) then begin
|
||
actNewQueryTab.Execute;
|
||
QueryLoad(AFiles[i], false);
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.popupHostPopup(Sender: TObject);
|
||
begin
|
||
Kill1.Enabled := (PageControlHost.ActivePage = tabProcessList) and Assigned(ListProcesses.FocusedNode);
|
||
menuEditVariable.Enabled := False;
|
||
if Connection.ServerVersionInt >= 40003 then
|
||
menuEditVariable.Enabled := (PageControlHost.ActivePage = tabVariables) and Assigned(ListVariables.FocusedNode)
|
||
else
|
||
menuEditVariable.Hint := STR_NOTSUPPORTED;
|
||
end;
|
||
|
||
procedure TMainForm.Saveastextfile1Click(Sender: TObject);
|
||
begin
|
||
with TSaveDialog.Create(self) do begin
|
||
Filter := 'Textfiles (*.txt)|*.txt|All Files (*.*)|*.*';
|
||
DefaultExt := 'txt';
|
||
FilterIndex := 1;
|
||
Options := [ofOverwritePrompt,ofHideReadOnly,ofEnableSizing];
|
||
if Execute then begin
|
||
Screen.Cursor := crHourglass;
|
||
SynMemoSQLLog.Lines.SaveToFile(Filename);
|
||
Screen.Cursor := crdefault;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.popupDBPopup(Sender: TObject);
|
||
var
|
||
L: Cardinal;
|
||
HasFocus, InDBTree: Boolean;
|
||
NodeData: PVTreeData;
|
||
begin
|
||
// DBtree and ListTables both use popupDB as menu. Find out which of them was rightclicked.
|
||
if Sender is TPopupMenu then
|
||
InDBTree := (Sender as TPopupMenu).PopupComponent = DBTree
|
||
else if Sender is TMenuItem then
|
||
InDBTree := TPopupMenu((Sender as TMenuItem).GetParentMenu).PopupComponent = DBTree
|
||
else
|
||
InDBTree := False;
|
||
|
||
if InDBtree then begin
|
||
HasFocus := Assigned(DBtree.FocusedNode);
|
||
if HasFocus then
|
||
L := DBtree.GetNodeLevel(DBtree.FocusedNode)
|
||
else
|
||
L := 0;
|
||
actCreateDatabase.Enabled := L = 0;
|
||
actCreateTable.Enabled := L in [1,2];
|
||
actCreateView.Enabled := L in [1,2];
|
||
actCreateRoutine.Enabled := L in [1,2];
|
||
actDropObjects.Enabled := L in [1,2];
|
||
actCopyTable.Enabled := HasFocus and (GetFocusedTreeNodeType in [lntTable, lntCrashedTable, lntView]);
|
||
actEmptyTables.Enabled := HasFocus and (GetFocusedTreeNodeType in [lntTable, lntCrashedTable, lntView]);
|
||
actEditObject.Enabled := L > 0;
|
||
// Show certain items which are valid only here
|
||
menuTreeExpandAll.Visible := True;
|
||
menuTreeCollapseAll.Visible := True;
|
||
menuShowSizeColumn.Visible := True;
|
||
actSelectTreeBackground.Visible := True;
|
||
end else begin
|
||
HasFocus := Assigned(ListTables.FocusedNode);
|
||
actCreateDatabase.Enabled := False;
|
||
actCreateTable.Enabled := True;
|
||
actCreateView.Enabled := True;
|
||
actCreateRoutine.Enabled := True;
|
||
actDropObjects.Enabled := ListTables.SelectedCount > 0;
|
||
actEmptyTables.Enabled := False;
|
||
if HasFocus then begin
|
||
NodeData := ListTables.GetNodeData(ListTables.FocusedNode);
|
||
actEmptyTables.Enabled := NodeData.NodeType in [lntTable, lntCrashedTable, lntView];
|
||
end;
|
||
actEditObject.Enabled := HasFocus;
|
||
// Show certain items which are valid only here
|
||
actCopyTable.Enabled := actEmptyTables.Enabled;
|
||
menuTreeExpandAll.Visible := False;
|
||
menuTreeCollapseAll.Visible := False;
|
||
menuShowSizeColumn.Visible := False;
|
||
actSelectTreeBackground.Visible := False;
|
||
end;
|
||
actCreateView.Enabled := actCreateView.Enabled and (Connection.ServerVersionInt >= 50001);
|
||
actCreateRoutine.Enabled := actCreateRoutine.Enabled and (Connection.ServerVersionInt >= 50003);
|
||
actCreateTrigger.Enabled := actCreateTrigger.Enabled and (Connection.ServerVersionInt >= 50002);
|
||
end;
|
||
|
||
|
||
|
||
|
||
procedure TMainForm.QueryLoad( filename: String; ReplaceContent: Boolean = true );
|
||
|
||
var
|
||
filecontent : WideString;
|
||
msgtext : String;
|
||
LineBreaks : TLineBreaks;
|
||
begin
|
||
// Ask for action when loading a big file
|
||
if FileExists(filename) and (_GetFileSize( filename ) > 5*SIZE_MB) then
|
||
begin
|
||
msgtext := 'The file you are about to load is bigger than '+FormatByteNumber(5*SIZE_MB, 0)+'.' + CRLF + CRLF +
|
||
'Do you want to just run the file to avoid loading it completely into the query-editor ( = memory ) ?' + CRLF + CRLF +
|
||
'Press' + CRLF +
|
||
' [Yes] to run the file without loading it into the editor' + CRLF +
|
||
' [No] to load the file into the query editor' + CRLF +
|
||
' [Cancel] to cancel file opening.';
|
||
case MessageDlg( msgtext, mtWarning, [mbYes, mbNo, mbCancel], 0 ) of
|
||
// Run the file, don't load it into the editor
|
||
mrYes:
|
||
begin
|
||
RunSQLFileWindow( Self, filename );
|
||
// Add filename to history menu
|
||
if Pos( DirnameSnippets, filename ) = 0 then
|
||
AddOrRemoveFromQueryLoadHistory( filename, true );
|
||
// Don't load into editor
|
||
Abort;
|
||
end;
|
||
// Do nothing here, go ahead and load the file normally into the editor
|
||
mrNo:;
|
||
// Cancel opening file
|
||
mrCancel: Abort;
|
||
end;
|
||
end;
|
||
|
||
// Load file and add that to the undo-history of SynEdit.
|
||
// Normally we would do a simple SynMemo.Lines.LoadFromFile but
|
||
// this would prevent SynEdit from adding this step to the undo-history
|
||
// so we have to do it by replacing the SelText property
|
||
Screen.Cursor := crHourGlass;
|
||
try
|
||
filecontent := ReadTextfile(filename);
|
||
if Pos( DirnameSnippets, filename ) = 0 then
|
||
AddOrRemoveFromQueryLoadHistory( filename, true );
|
||
FillPopupQueryLoad;
|
||
if not QueryTabActive then
|
||
PagecontrolMain.ActivePage := tabQuery;
|
||
ActiveQueryMemo.UndoList.AddGroupBreak;
|
||
|
||
if ScanNulChar(filecontent) then begin
|
||
filecontent := RemoveNulChars(filecontent);
|
||
MessageDlg(SContainsNulCharFile, mtInformation, [mbOK], 0);
|
||
end;
|
||
|
||
ActiveQueryMemo.BeginUpdate;
|
||
LineBreaks := ScanLineBreaks(filecontent);
|
||
if ReplaceContent then begin
|
||
ActiveQueryMemo.SelectAll;
|
||
ActiveQueryTab.MemoLineBreaks := LineBreaks;
|
||
end else begin
|
||
if (ActiveQueryTab.MemoLineBreaks <> lbsNone) and (ActiveQueryTab.MemoLineBreaks <> LineBreaks) then
|
||
ActiveQueryTab.MemoLineBreaks := lbsMixed
|
||
else
|
||
ActiveQueryTab.MemoLineBreaks := LineBreaks;
|
||
end;
|
||
if ActiveQueryTab.MemoLineBreaks = lbsMixed then
|
||
MessageDlg('This file contains mixed linebreaks. They have been converted to Windows linebreaks (CR+LF).', mtInformation, [mbOK], 0);
|
||
|
||
ActiveQueryMemo.SelText := filecontent;
|
||
ActiveQueryMemo.SelStart := ActiveQueryMemo.SelEnd;
|
||
ActiveQueryMemo.EndUpdate;
|
||
SetTabCaption(PageControlMain.ActivePageIndex, sstr(ExtractFilename(filename), 70));
|
||
ActiveQueryMemo.Modified := False;
|
||
ActiveQueryTab.MemoFilename := filename;
|
||
except on E:Exception do
|
||
// File does not exist, is locked or broken
|
||
MessageDlg(E.message, mtError, [mbOK], 0);
|
||
end;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
|
||
|
||
|
||
|
||
procedure TMainForm.SaveDialogExportDataTypeChange(Sender: TObject);
|
||
begin
|
||
// Set default file-extension of saved file and options on the dialog to show
|
||
with SaveDialogExportData do begin
|
||
Case FilterIndex of
|
||
1: DefaultExt := 'csv';
|
||
2: DefaultExt := 'html';
|
||
3: DefaultExt := 'xml';
|
||
4: DefaultExt := 'sql';
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
A cell in a DBGrid is painted. Sets custom background color NULL fields.
|
||
}
|
||
procedure TMainForm.popupDataGridPopup(Sender: TObject);
|
||
var
|
||
y,m,d,h,i,s,ms : Word;
|
||
cpText, selectedColumn, value : String;
|
||
CellFocused: Boolean;
|
||
const
|
||
CLPBRD : String = 'CLIPBOARD';
|
||
begin
|
||
CellFocused := Assigned(DataGrid.FocusedNode) and (DataGrid.FocusedColumn > NoColumn);
|
||
DataInsertDateTime.Enabled := CellFocused;
|
||
if not CellFocused then
|
||
Exit;
|
||
|
||
decodedate(now, y, m, d);
|
||
decodetime(now, h, i, s, ms);
|
||
DataDateTime.Caption := Format('%.4d-%.2d-%.2d %.2d:%.2d:%.2d', [y,m,d,h,i,s]);
|
||
DataDate.Caption := Format('%.4d-%.2d-%.2d', [y,m,d]);
|
||
DataTime.Caption := Format('%.2d:%.2d:%.2d', [h,i,s]);
|
||
DataTimestamp.caption := Format('%.4d%.2d%.2d%.2d%.2d%.2d', [y,m,d,h,i,s]);
|
||
DataYear.Caption := Format('%.4d', [y]);
|
||
|
||
// Manipulate the Quick-filter menuitems
|
||
selectedColumn := mask(DataGrid.Header.Columns[DataGrid.FocusedColumn].Text);
|
||
// 1. block: include selected columnname and value from datagrid in caption
|
||
if DataGridResult.Rows[DataGrid.FocusedNode.Index].Cells[DataGrid.FocusedColumn].IsNull then begin
|
||
QF1.Caption := selectedColumn + ' IS NULL';
|
||
QF2.Caption := selectedColumn + ' IS NOT NULL';
|
||
QF3.Visible := False;
|
||
QF4.Visible := False;
|
||
QF5.Visible := False;
|
||
QF6.Visible := False;
|
||
QF7.Visible := False;
|
||
end else begin
|
||
value := sstr(DataGrid.Text[DataGrid.FocusedNode, DataGrid.FocusedColumn], 100);
|
||
QF1.Caption := selectedColumn + ' = ' + esc( value );
|
||
QF2.Caption := selectedColumn + ' != ' + esc( value );
|
||
QF3.Caption := selectedColumn + ' > ' + esc( value );
|
||
QF4.Caption := selectedColumn + ' < ' + esc( value );
|
||
QF5.Caption := selectedColumn + ' LIKE ''' + esc( value, true ) + '%''';
|
||
QF6.Caption := selectedColumn + ' LIKE ''%' + esc( value, true ) + '''';
|
||
QF7.Caption := selectedColumn + ' LIKE ''%' + esc( value, true ) + '%''';
|
||
QF3.Visible := True;
|
||
QF4.Visible := True;
|
||
QF5.Visible := True;
|
||
QF6.Visible := True;
|
||
QF7.Visible := True;
|
||
end;
|
||
|
||
// 2. block: include only selected columnname in caption
|
||
QF8.Caption := selectedColumn + ' = "..."';
|
||
QF9.Caption := selectedColumn + ' != "..."';
|
||
QF10.Caption := selectedColumn + ' > "..."';
|
||
QF11.Caption := selectedColumn + ' < "..."';
|
||
QF12.Caption := selectedColumn + ' LIKE "%...%"';
|
||
QF13.Caption := selectedColumn + ' IS NULL';
|
||
QF14.Caption := selectedColumn + ' IS NOT NULL';
|
||
|
||
// 3. block: include selected columnname and clipboard-content in caption for one-click-filtering
|
||
cpText := Clipboard.AsText;
|
||
if Length(cpText) < 100 then begin
|
||
QF15.Enabled := true; QF15.Caption := selectedColumn + ' = ' + esc( cpText );
|
||
QF16.Enabled := true; QF16.Caption := selectedColumn + ' != ' + esc( cpText );
|
||
QF17.Enabled := true; QF17.Caption := selectedColumn + ' > ' + esc( cpText );
|
||
QF18.Enabled := true; QF18.Caption := selectedColumn + ' < ' + esc( cpText );
|
||
QF19.Enabled := true; QF19.Caption := selectedColumn + ' LIKE ''%' + esc( cpText, true ) + '%''';
|
||
end else begin
|
||
QF15.Enabled := false; QF15.Caption := selectedColumn + ' = ' + CLPBRD;
|
||
QF16.Enabled := false; QF16.Caption := selectedColumn + ' != ' + CLPBRD;
|
||
QF17.Enabled := false; QF17.Caption := selectedColumn + ' > ' + CLPBRD;
|
||
QF18.Enabled := false; QF18.Caption := selectedColumn + ' < ' + CLPBRD;
|
||
QF19.Enabled := false; QF19.Caption := selectedColumn + ' LIKE %' + CLPBRD + '%';
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.InsertDate(Sender: TObject);
|
||
var d : String;
|
||
begin
|
||
// Insert date/time-value into table
|
||
d := (sender as TMenuItem).Caption;
|
||
delete(d, Pos('&', d), 1);
|
||
DataGrid.Text[DataGrid.FocusedNode, DataGrid.FocusedColumn] := d;
|
||
end;
|
||
|
||
|
||
function TMainForm.GetActiveDatabase: WideString;
|
||
var
|
||
s: PVirtualNode;
|
||
begin
|
||
// Find currently selected database node in database tree,
|
||
// or the parent if a table is currently selected.
|
||
s := DBtree.FocusedNode;
|
||
if not Assigned(s) then Result := ''
|
||
else case DBtree.GetNodeLevel(s) of
|
||
2: Result := Databases[s.Parent.Index];
|
||
1: Result := Databases[s.Index];
|
||
else Result := '';
|
||
end;
|
||
end;
|
||
|
||
|
||
function TMainForm.GetSelectedTable: TListNode;
|
||
begin
|
||
if Assigned(DBtree.FocusedNode) and (DBtree.GetNodeLevel(DBtree.FocusedNode)=2) then begin
|
||
Result.Text := DBtree.Text[DBtree.FocusedNode, 0];
|
||
Result.NodeType := GetFocusedTreeNodeType;
|
||
end else begin
|
||
Result.Text := '';
|
||
Result.NodeType := lntNone;
|
||
end;
|
||
end;
|
||
|
||
|
||
function TMainForm.GetTreeNodeType(Tree: TBaseVirtualTree; Node: PVirtualNode): TListNodeType;
|
||
var
|
||
DBObjects: TDBObjectList;
|
||
begin
|
||
Result := lntNone;
|
||
if Assigned(Node) then case Tree.GetNodeLevel(Node) of
|
||
1: Result := lntDb;
|
||
2: begin
|
||
DBObjects := Connection.GetDBObjects((Tree as TVirtualStringTree).Text[Node.Parent, 0]);
|
||
Result := DBObjects[Node.Index].NodeType;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
function TMainForm.GetFocusedTreeNodeType: TListNodeType;
|
||
begin
|
||
Result := GetTreeNodeType(DBTree, DBtree.FocusedNode);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SelectDBObject(Text: WideString; NodeType: TListNodeType);
|
||
var
|
||
i: integer;
|
||
dbnode, tnode, snode: PVirtualNode;
|
||
begin
|
||
debug('SelectDBObject()');
|
||
// Detect db node
|
||
case DBtree.GetNodeLevel( DBtree.GetFirstSelected ) of
|
||
1: dbnode := DBtree.GetFirstSelected;
|
||
2: dbnode := DBtree.GetFirstSelected.Parent;
|
||
else raise Exception.Create('No selection in tree, could not determine active db.');
|
||
end;
|
||
snode := nil;
|
||
// 1st search, case sensitive for lower-case-tablenames=0 servers
|
||
tnode := DBtree.GetFirstChild(dbnode);
|
||
for i := 0 to dbnode.ChildCount - 1 do begin
|
||
// Select table node if it has the wanted caption
|
||
if (DBtree.Text[tnode, 0] = Text) and (GetTreeNodeType(DBTree, tnode) = NodeType) then begin
|
||
snode := tnode;
|
||
break;
|
||
end;
|
||
tnode := DBtree.GetNext(tnode);
|
||
end;
|
||
// 2nd search, case insensitive now
|
||
if not Assigned(snode) then begin
|
||
tnode := DBtree.GetFirstChild(dbnode);
|
||
for i := 0 to dbnode.ChildCount - 1 do begin
|
||
// Select table node if it has the wanted caption
|
||
if (AnsiCompareText(DBtree.Text[tnode, 0], Text) = 0) and (GetTreeNodeType(DBtree, tnode) = NodeType) then begin
|
||
snode := tnode;
|
||
break;
|
||
end;
|
||
tnode := DBtree.GetNext(tnode);
|
||
end;
|
||
end;
|
||
if Assigned(snode) then begin
|
||
// Ensure table node will be visible
|
||
DBTree.ScrollIntoView(snode, False);
|
||
DBtree.Expanded[dbnode] := True;
|
||
DBtree.Selected[snode] := True;
|
||
// Implicitely calls OnFocusChanged:
|
||
DBTree.FocusedNode := nil;
|
||
DBTree.FocusedNode := snode;
|
||
exit;
|
||
end;
|
||
raise Exception.Create('Table node ' + Text + ' not found in tree.');
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SetSelectedDatabase(db: WideString);
|
||
var
|
||
n: PVirtualNode;
|
||
begin
|
||
n := FindDBNode(db);
|
||
if Assigned(n) then begin
|
||
DBtree.Selected[n] := true;
|
||
DBtree.FocusedNode := n;
|
||
end else
|
||
raise Exception.Create('Database node ' + db + ' not found in tree.');
|
||
end;
|
||
|
||
|
||
{**
|
||
Column selection for datagrid
|
||
}
|
||
procedure TMainForm.btnDataClick(Sender: TObject);
|
||
var
|
||
btn : TToolButton;
|
||
frm : TForm;
|
||
begin
|
||
btn := (Sender as TToolButton);
|
||
|
||
if (btn = tbtnDataColumns) or (btn = tbtnDataSorting) then begin
|
||
// Create desired form for SELECT and ORDER buttons
|
||
btn.Down := not btn.Down;
|
||
if not btn.Down then Exit;
|
||
if btn = tbtnDataColumns then
|
||
frm := TColumnSelectionForm.Create(self)
|
||
else if btn = tbtnDataSorting then
|
||
frm := TDataSortingForm.Create(self)
|
||
else
|
||
frm := TForm.Create(self); // Dummy fallback, should never get created
|
||
// Position new form relative to btn's position
|
||
frm.Top := btn.ClientOrigin.Y + btn.Height;
|
||
frm.Left := btn.ClientOrigin.X + btn.Width - frm.Width;
|
||
// Display form
|
||
frm.Show;
|
||
end else if btn = tbtnDataFilter then begin
|
||
// Unhide inline filter panel
|
||
ToggleFilterPanel;
|
||
FilterPanelManuallyOpened := pnlFilter.Visible;
|
||
if FilterPanelManuallyOpened then
|
||
SynMemoFilter.SetFocus;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Tabset right to query-memo was clicked
|
||
}
|
||
procedure TMainForm.tabsetQueryHelpersChange(Sender: TObject; NewTab: Integer;
|
||
var AllowChange: Boolean);
|
||
var
|
||
i, idx : Integer;
|
||
SnippetsAccessible : Boolean;
|
||
Files: TStringList;
|
||
Col: TTableColumn;
|
||
begin
|
||
ActiveQueryHelpers.Items.BeginUpdate;
|
||
ActiveQueryHelpers.Items.Clear;
|
||
// By default sorted alpabetically
|
||
ActiveQueryHelpers.Sorted := True;
|
||
// By default disable all items in popupmenu, enable them when needed
|
||
menuQueryHelpersGenerateInsert.Enabled := False;
|
||
menuQueryHelpersGenerateUpdate.Enabled := False;
|
||
menuQueryHelpersGenerateDelete.Enabled := False;
|
||
menuInsertSnippetAtCursor.Enabled := False;
|
||
menuLoadSnippet.Enabled := False;
|
||
menuDeleteSnippet.Enabled := False;
|
||
menuExplore.Enabled := False;
|
||
menuHelp.Enabled := False;
|
||
ActiveQueryHelpers.MultiSelect := True;
|
||
|
||
case NewTab of
|
||
0: // Cols
|
||
begin
|
||
// Keep native order of columns
|
||
ActiveQueryHelpers.Sorted := False;
|
||
menuQueryHelpersGenerateInsert.Enabled := True;
|
||
menuQueryHelpersGenerateUpdate.Enabled := True;
|
||
menuQueryHelpersGenerateDelete.Enabled := True;
|
||
for i:=0 to SelectedTableColumns.Count-1 do begin
|
||
Col := TTableColumn(SelectedTableColumns[i]);
|
||
ActiveQueryHelpers.Items.Add(Col.Name);
|
||
end;
|
||
end;
|
||
|
||
1: // SQL functions
|
||
begin
|
||
// State of items in popupmenu
|
||
menuHelp.Enabled := True;
|
||
for i := 0 to Length(MySQLFunctions) - 1 do
|
||
begin
|
||
// Don't display unsupported functions here
|
||
if MySqlFunctions[i].Version > Connection.ServerVersionInt then
|
||
continue;
|
||
ActiveQueryHelpers.Items.Add( MySQLFunctions[i].Name + MySQLFunctions[i].Declaration );
|
||
end;
|
||
end;
|
||
|
||
2: // SQL keywords
|
||
begin
|
||
// State of items in popupmenu
|
||
menuHelp.Enabled := True;
|
||
for i := 0 to MySQLKeywords.Count - 1 do
|
||
ActiveQueryHelpers.Items.Add(MySQLKeywords[i]);
|
||
end;
|
||
|
||
3: // SQL Snippets
|
||
begin
|
||
ActiveQueryHelpers.MultiSelect := False;
|
||
Files := getFilesFromDir( DirnameSnippets, '*.sql', true );
|
||
for i := 0 to Files.Count - 1 do
|
||
ActiveQueryHelpers.Items.Add(Files[i]);
|
||
Files.Free;
|
||
// State of items in popupmenu
|
||
SnippetsAccessible := ActiveQueryHelpers.Items.Count > 0;
|
||
menuDeleteSnippet.Enabled := SnippetsAccessible;
|
||
menuInsertSnippetAtCursor.Enabled := SnippetsAccessible;
|
||
menuLoadSnippet.Enabled := SnippetsAccessible;
|
||
menuExplore.Enabled := True;
|
||
end;
|
||
|
||
end;
|
||
|
||
// Restore last selected item in tab
|
||
for i := 0 to Length(ActiveQueryTab.HelperListSelectedItems[NewTab]) - 1 do begin
|
||
idx := ActiveQueryTab.HelperListSelectedItems[NewTab][i];
|
||
if idx < ActiveQueryHelpers.Count then
|
||
ActiveQueryHelpers.Selected[idx] := True;
|
||
end;
|
||
|
||
ActiveQueryHelpers.Items.EndUpdate;
|
||
end;
|
||
|
||
|
||
|
||
{**
|
||
Insert string from listbox with query helpers into SQL
|
||
memo at doubleclick
|
||
}
|
||
procedure TMainForm.lboxQueryHelpersDblClick(Sender: TObject);
|
||
var
|
||
text: WideString;
|
||
i: Integer;
|
||
begin
|
||
if ActiveQueryTabset.TabIndex = 3 then begin
|
||
// Load snippet file into query-memo
|
||
if ActiveQueryHelpers.ItemIndex > -1 then
|
||
QueryLoad( DirnameSnippets + ActiveQueryHelpers.Items[ActiveQueryHelpers.ItemIndex] + '.sql', False );
|
||
end else begin
|
||
// For all other tabs just insert selected list item(s)
|
||
for i := 0 to ActiveQueryHelpers.Items.Count - 1 do begin
|
||
if ActiveQueryHelpers.Selected[i] then
|
||
text := text + ActiveQueryHelpers.Items[i] + ', ';
|
||
end;
|
||
Delete(text, Length(text)-1, 2);
|
||
ActiveQueryMemo.SelText := text;
|
||
end;
|
||
ActiveQueryMemo.SetFocus;
|
||
end;
|
||
|
||
|
||
{**
|
||
Remember last used items in query helper tabs
|
||
}
|
||
procedure TMainForm.lboxQueryHelpersClick(Sender: TObject);
|
||
var
|
||
i, s, idx: Integer;
|
||
begin
|
||
s := ActiveQueryTabset.TabIndex;
|
||
SetLength(ActiveQueryTab.HelperListSelectedItems[s], 0);
|
||
for i := 0 to ActiveQueryHelpers.Count - 1 do if ActiveQueryHelpers.Selected[i] then begin
|
||
idx := Length(ActiveQueryTab.HelperListSelectedItems[s]);
|
||
SetLength(ActiveQueryTab.HelperListSelectedItems[s], idx+1);
|
||
ActiveQueryTab.HelperListSelectedItems[s][idx] := i;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Insert function name from popupmenu to query memo
|
||
}
|
||
procedure TMainForm.insertFunction(Sender: TObject);
|
||
var
|
||
f : String;
|
||
sm : TSynMemo;
|
||
begin
|
||
// Detect which memo is focused
|
||
if SynMemoFilter.Focused then
|
||
sm := SynMemoFilter
|
||
else
|
||
sm := ActiveQueryMemo;
|
||
// Restore function name from array
|
||
f := MySQLFunctions[TControl(Sender).tag].Name
|
||
+ MySQLFunctions[TControl(Sender).tag].Declaration;
|
||
sm.UndoList.AddGroupBreak;
|
||
sm.SelText := f;
|
||
sm.UndoList.AddGroupBreak;
|
||
if not SynMemoFilter.Focused then
|
||
ValidateQueryControls(Sender);
|
||
end;
|
||
|
||
|
||
{**
|
||
Delete a snippet file
|
||
}
|
||
procedure TMainForm.menuDeleteSnippetClick(Sender: TObject);
|
||
var
|
||
snippetfile : String;
|
||
mayChange : Boolean;
|
||
begin
|
||
// Don't do anything if no item was selected
|
||
if ActiveQueryHelpers.ItemIndex = -1 then
|
||
abort;
|
||
|
||
snippetfile := DirnameSnippets + ActiveQueryHelpers.Items[ ActiveQueryHelpers.ItemIndex ] + '.sql';
|
||
if MessageDlg( 'Delete snippet file? ' + CRLF + snippetfile, mtConfirmation, [mbOk, mbCancel], 0) = mrOk then
|
||
begin
|
||
Screen.Cursor := crHourGlass;
|
||
if DeleteFile( snippetfile ) then
|
||
begin
|
||
// Refresh list with snippets
|
||
mayChange := True; // Unused; satisfies callee parameter collection which is probably dictated by tabset.
|
||
tabsetQueryHelpersChange( Sender, ActiveQueryTabset.TabIndex, mayChange );
|
||
FillPopupQueryLoad;
|
||
end
|
||
else
|
||
begin
|
||
Screen.Cursor := crDefault;
|
||
MessageDlg( 'Failed deleting ' + snippetfile, mtError, [mbOK], 0 );
|
||
end;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Load snippet at cursor
|
||
}
|
||
procedure TMainForm.menuInsertSnippetAtCursorClick(Sender: TObject);
|
||
begin
|
||
QueryLoad( DirnameSnippets + ActiveQueryHelpers.Items[ActiveQueryHelpers.ItemIndex] + '.sql', False );
|
||
end;
|
||
|
||
|
||
{**
|
||
Load snippet and replace content
|
||
}
|
||
procedure TMainForm.menuLoadSnippetClick(Sender: TObject);
|
||
begin
|
||
QueryLoad( DirnameSnippets + ActiveQueryHelpers.Items[ActiveQueryHelpers.ItemIndex] + '.sql', True );
|
||
end;
|
||
|
||
|
||
{**
|
||
Open snippets-directory in Explorer
|
||
}
|
||
procedure TMainForm.menuExploreClick(Sender: TObject);
|
||
begin
|
||
// Normally the snippets folder is created at installation. But it sure
|
||
// can be the case that it has been deleted or that the application was
|
||
// not installed properly. Ask if we should create the folder now.
|
||
if DirectoryExists( DirnameSnippets ) then
|
||
ShellExec( '', DirnameSnippets )
|
||
else
|
||
if MessageDlg( 'Snippets folder does not exist: ' + DirnameSnippets + CRLF + CRLF + 'This folder is normally created when you install '+appname+'.' + CRLF + CRLF + 'Shall it be created now?',
|
||
mtWarning, [mbYes, mbNo], 0 ) = mrYes then
|
||
try
|
||
Screen.Cursor := crHourglass;
|
||
ForceDirectories( DirnameSnippets );
|
||
finally
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Tell a VirtualStringTree the mem size to allocate per node
|
||
}
|
||
procedure TMainForm.vstGetNodeDataSize(Sender: TBaseVirtualTree; var
|
||
NodeDataSize: Integer);
|
||
begin
|
||
NodeDataSize := SizeOf(TVTreeData);
|
||
end;
|
||
|
||
|
||
{**
|
||
Various lists initialize their nodes by calling the following procedure
|
||
once per node
|
||
}
|
||
procedure TMainForm.vstInitNode(Sender: TBaseVirtualTree; ParentNode,
|
||
Node: PVirtualNode; var InitialStates: TVirtualNodeInitStates);
|
||
var
|
||
NodeData : PVTreeData;
|
||
a : TVTreeDataArray;
|
||
begin
|
||
// Get the pointer to the node data
|
||
NodeData := Sender.GetNodeData(Node);
|
||
// Fetch data array
|
||
a := GetVTreeDataArray( Sender )^;
|
||
// Bind data to node
|
||
NodeData.Captions := a[Node.Index].Captions;
|
||
NodeData.ImageIndex := a[Node.Index].ImageIndex;
|
||
NodeData.NodeType := a[Node.Index].NodeType;
|
||
end;
|
||
|
||
|
||
{**
|
||
Free data of a node
|
||
}
|
||
procedure TMainForm.vstFreeNode(Sender: TBaseVirtualTree; Node: PVirtualNode);
|
||
var
|
||
b : PVTreeDataArray;
|
||
begin
|
||
// Detect which global array should be processed
|
||
b := GetVTreeDataArray( Sender );
|
||
// TODO: If you optimize 'b' out of the code, the compiler will
|
||
// sometimes generate code that causes a new array here instead of
|
||
// a reference to the global array, thus breaking SetLength. Find
|
||
// out why...
|
||
//TestVTreeDataArray(b);
|
||
if (Low(b^) < 0) or (High(b^) < 0) then raise Exception.Create('Internal error: unsupported array bounds.');
|
||
if Node.Index + 1 < Cardinal(High(b^)) then
|
||
begin
|
||
// Delete node somewhere in the middle of the array
|
||
// Taken from http://delphi.about.com/cs/adptips2004/a/bltip0204_2.htm
|
||
System.Move(
|
||
b^[Node.Index + 1],
|
||
b^[Node.Index],
|
||
(Cardinal(Length(b^)) - (Node.Index - Cardinal(Low(b^))) - 1) * SizeOf(TVTreeData)
|
||
);
|
||
end;
|
||
SetLength(b^, Length(b^) - 1);
|
||
end;
|
||
|
||
|
||
{**
|
||
A node in a VirtualStringTree gets visible and asks which text it shall display
|
||
}
|
||
procedure TMainForm.vstGetText(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType; var CellText:
|
||
WideString);
|
||
var
|
||
NodeData : PVTreeData;
|
||
i : Integer;
|
||
begin
|
||
// Get pointer to node which gets displayed
|
||
NodeData := Sender.GetNodeData(Node);
|
||
// Column is -1 if no column headers are defined
|
||
if Column = -1 then
|
||
i := 0
|
||
else
|
||
i := Column;
|
||
// Avoid AV, don't exceed Captions content
|
||
if NodeData.Captions.Count > i then
|
||
CellText := NodeData.Captions[i]
|
||
else
|
||
CellText := '';
|
||
end;
|
||
|
||
|
||
{**
|
||
A node in a VirtualStringTree gets visible and asks which icon it shall display
|
||
}
|
||
procedure TMainForm.vstGetImageIndex(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Kind: TVTImageKind; Column: TColumnIndex; var Ghosted:
|
||
Boolean; var ImageIndex: Integer);
|
||
var
|
||
NodeData : PVTreeData;
|
||
begin
|
||
// Display icon only for leftmost cell (0) or for tree nodes (-1)
|
||
if Column > 0 then
|
||
exit;
|
||
// Get pointer to node which gets displayed
|
||
NodeData := Sender.GetNodeData(Node);
|
||
ImageIndex := NodeData.ImageIndex;
|
||
end;
|
||
|
||
|
||
{**
|
||
A column header of a VirtualStringTree was clicked:
|
||
Toggle the sort direction
|
||
}
|
||
procedure TMainForm.vstHeaderClick(Sender: TVTHeader; HitInfo: TVTHeaderHitInfo);
|
||
begin
|
||
// Don't call sorting procedure on right click
|
||
// Some list-headers have a contextmenu which should popup then.
|
||
if HitInfo.Button = mbRight then
|
||
Exit;
|
||
// Beginning with VT's r181, this proc is also called when doubleclicking-to-autofit
|
||
// Seems buggy in VT as this suddenly calls it with Column=-1 in those cases.
|
||
// See also issue #1150
|
||
if HitInfo.Column = NoColumn then
|
||
Exit;
|
||
|
||
if Sender.SortColumn <> HitInfo.Column then
|
||
Sender.SortColumn := HitInfo.Column
|
||
else if Sender.SortDirection = sdAscending then
|
||
Sender.SortDirection := sdDescending
|
||
else
|
||
Sender.SortDirection := sdAscending;
|
||
Sender.Treeview.SortTree( HitInfo.Column, Sender.SortDirection );
|
||
end;
|
||
|
||
|
||
{**
|
||
Sorting a column of a VirtualTree by comparing two cells
|
||
}
|
||
procedure TMainForm.vstCompareNodes(Sender: TBaseVirtualTree; Node1,
|
||
Node2: PVirtualNode; Column: TColumnIndex; var Result: Integer);
|
||
var
|
||
VT: TVirtualStringTree;
|
||
CellText1, CellText2 : String;
|
||
Number1, Number2 : Extended;
|
||
begin
|
||
VT := Sender as TVirtualStringTree;
|
||
CellText1 := VT.Text[Node1, Column];
|
||
CellText2 := VT.Text[Node2, Column];
|
||
|
||
// Map value "0" to "N/A" strings
|
||
if CellText1 = '' then
|
||
CellText1 := '0';
|
||
if CellText2 = '' then
|
||
CellText2 := '0';
|
||
|
||
// Apply different comparisons for numbers and text
|
||
if StrToIntDef( copy(CellText1,0,1), -1 ) <> -1 then
|
||
begin
|
||
// Assuming numeric values
|
||
Number1 := MakeFloat( CellText1 );
|
||
Number2 := MakeFloat( CellText2 );
|
||
if Number1 > Number2 then
|
||
Result := 1
|
||
else if Number1 = Number2 then
|
||
Result := 0
|
||
else if Number1 < Number2 then
|
||
Result := -1;
|
||
end
|
||
else begin
|
||
// Compare Strings
|
||
Result := AnsiCompareText( CellText1, CellText2 );
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
VirtualTree was painted. Adjust background color of sorted column.
|
||
}
|
||
procedure TMainForm.vstAfterPaint(Sender: TBaseVirtualTree;
|
||
TargetCanvas: TCanvas);
|
||
var
|
||
i: Integer;
|
||
h: TVTHeader;
|
||
NewColor: TColor;
|
||
begin
|
||
h := (Sender as TVirtualStringTree).Header;
|
||
for i:=0 to h.Columns.Count-1 do begin
|
||
NewColor := clWindow;
|
||
if h.SortColumn = i then
|
||
NewColor := ColorAdjustBrightness(NewColor, COLORSHIFT_SORTCOLUMNS, True);
|
||
h.Columns[i].Color := NewColor;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Return the data array which belongs to a VirtualTree component
|
||
}
|
||
function TMainForm.GetVTreeDataArray( VT: TBaseVirtualTree ): PVTreeDataArray;
|
||
begin
|
||
if VT = ListVariables then
|
||
Result := @VTRowDataListVariables
|
||
else if VT = ListStatus then
|
||
Result := @VTRowDataListStatus
|
||
else if VT = ListCommandStats then
|
||
Result := @VTRowDataListCommandStats
|
||
else if VT = ListProcesses then
|
||
Result := @VTRowDataListProcesses
|
||
else if VT = ListTables then
|
||
Result := @VTRowDataListTables
|
||
else begin
|
||
raise Exception.Create( VT.ClassName + ' "' + VT.Name + '" doesn''t have an assigned array with data.' );
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Internal: Test quality of code/compiler.
|
||
}
|
||
procedure TMainForm.TestVTreeDataArray( P: PVTreeDataArray );
|
||
begin
|
||
if P = @VTRowDataListVariables then Exit;
|
||
if P = @VTRowDataListStatus then Exit;
|
||
if P = @VTRowDataListCommandStats then Exit;
|
||
if P = @VTRowDataListProcesses then Exit;
|
||
if P = @VTRowDataListTables then Exit;
|
||
raise Exception.Create('Assertion failed: Invalid global VT array.');
|
||
end;
|
||
|
||
{**
|
||
Click on popupDBGridHeader
|
||
}
|
||
procedure TMainForm.MenuTablelistColumnsClick(Sender: TObject);
|
||
var
|
||
menuitem : TMenuItem;
|
||
VisibleColumns : TWideStringList;
|
||
i : Integer;
|
||
begin
|
||
VisibleColumns := TWideStringList.Create;
|
||
menuitem := TMenuItem( Sender );
|
||
menuitem.Checked := not menuitem.Checked;
|
||
for i := 0 to ListTables.Header.Columns.Count - 1 do
|
||
begin
|
||
menuitem := popupDbGridHeader.Items[i];
|
||
if menuitem.Checked then
|
||
VisibleColumns.Add(IntToStr(i));
|
||
end;
|
||
SetVisibleListColumns( ListTables, VisibleColumns );
|
||
end;
|
||
|
||
|
||
{**
|
||
Save setup of a VirtualStringTree to registry
|
||
}
|
||
procedure TMainForm.SaveListSetup( List: TVirtualStringTree );
|
||
var
|
||
i : Byte;
|
||
ColWidths, ColsVisible, ColPos, Regname: String;
|
||
OwnerForm: TCustomForm;
|
||
begin
|
||
ColWidths := '';
|
||
ColsVisible := '';
|
||
ColPos := '';
|
||
for i := 0 to List.Header.Columns.Count - 1 do
|
||
begin
|
||
// Column widths
|
||
if ColWidths <> '' then
|
||
ColWidths := ColWidths + ',';
|
||
ColWidths := ColWidths + IntToStr(List.Header.Columns[i].Width);
|
||
|
||
// Column visibility
|
||
if coVisible in List.Header.Columns[i].Options then
|
||
begin
|
||
if ColsVisible <> '' then
|
||
ColsVisible := ColsVisible + ',';
|
||
ColsVisible := ColsVisible + IntToStr(i);
|
||
end;
|
||
|
||
// Column position
|
||
if ColPos <> '' then
|
||
ColPos := ColPos + ',';
|
||
ColPos := ColPos + IntToStr(List.Header.Columns[i].Position);
|
||
|
||
end;
|
||
OpenRegistry;
|
||
Regname := List.Name;
|
||
OwnerForm := GetParentForm(List);
|
||
if OwnerForm <> Self then begin
|
||
// On a windows shutdown, GetParentForm() seems sporadically unable to find the owner form
|
||
// In that case we would cause an exception when accessing it. Emergency break in that case.
|
||
// See issue #1462
|
||
if not Assigned(OwnerForm) then
|
||
Exit;
|
||
Regname := OwnerForm.Name + '.' + Regname;
|
||
end;
|
||
MainReg.WriteString( REGPREFIX_COLWIDTHS + Regname, ColWidths );
|
||
MainReg.WriteString( REGPREFIX_COLSVISIBLE + Regname, ColsVisible );
|
||
MainReg.WriteString( REGPREFIX_COLPOS + Regname, ColPos );
|
||
end;
|
||
|
||
|
||
{**
|
||
Restore setup of VirtualStringTree from registry
|
||
}
|
||
procedure TMainForm.RestoreListSetup( List: TVirtualStringTree );
|
||
var
|
||
i : Byte;
|
||
colwidth, colpos : Integer;
|
||
Value : WideString;
|
||
ValueList : TWideStringList;
|
||
Regname: String;
|
||
frm: TCustomForm;
|
||
begin
|
||
ValueList := TWideStringList.Create;
|
||
|
||
// Column widths
|
||
Regname := List.Name;
|
||
frm := GetParentForm(List);
|
||
if (frm <> Self) and (Assigned(frm)) then
|
||
Regname := frm.Name + '.' + Regname;
|
||
Value := GetRegValue(REGPREFIX_COLWIDTHS + Regname, '');
|
||
if Value <> '' then begin
|
||
ValueList := Explode( ',', Value );
|
||
for i := 0 to ValueList.Count - 1 do
|
||
begin
|
||
colwidth := MakeInt(ValueList[i]);
|
||
// Check if column number exists and width is at least 1 pixel
|
||
if (List.Header.Columns.Count > i) and (colwidth > 0) then
|
||
List.Header.Columns[i].Width := colwidth;
|
||
end;
|
||
end;
|
||
|
||
// Column visibility
|
||
Value := GetRegValue(REGPREFIX_COLSVISIBLE + Regname, '');
|
||
if Value <> '' then begin
|
||
ValueList := Explode( ',', Value );
|
||
SetVisibleListColumns( List, ValueList );
|
||
end;
|
||
|
||
// Column position
|
||
Value := GetRegValue(REGPREFIX_COLPOS + Regname, '');
|
||
if Value <> '' then begin
|
||
ValueList := Explode( ',', Value );
|
||
for i := 0 to ValueList.Count - 1 do
|
||
begin
|
||
colpos := MakeInt(ValueList[i]);
|
||
// Check if column number exists
|
||
if List.Header.Columns.Count > i then
|
||
List.Header.Columns[i].Position := colpos;
|
||
end;
|
||
end;
|
||
|
||
ValueList.Free;
|
||
end;
|
||
|
||
|
||
{**
|
||
(Un)hide columns in a VirtualStringTree.
|
||
}
|
||
procedure TMainForm.SetVisibleListColumns( List: TVirtualStringTree; Columns: TWideStringList );
|
||
var
|
||
i : Integer;
|
||
begin
|
||
for i := 0 to List.Header.Columns.Count - 1 do
|
||
begin
|
||
// Only ListTables' column visibility is currently customizable
|
||
// so, make sure to unhide the newer "Comment" column in ListColumns for some users
|
||
if (Columns.IndexOf( IntToStr(i) ) > -1) or (List <> ListTables) then
|
||
List.Header.Columns[i].Options := List.Header.Columns[i].Options + [coVisible]
|
||
else
|
||
List.Header.Columns[i].Options := List.Header.Columns[i].Options - [coVisible];
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Start writing logfile.
|
||
Called either in FormShow or after closing preferences dialog
|
||
}
|
||
procedure TMainForm.ActivateFileLogging;
|
||
var
|
||
LogfilePattern : String;
|
||
i : Integer;
|
||
begin
|
||
// Ensure directory exists
|
||
ForceDirectories( DirnameSessionLogs );
|
||
|
||
// Determine free filename
|
||
LogfilePattern := '%s %.6u.log';
|
||
i := 1;
|
||
FileNameSessionLog := DirnameSessionLogs + goodfilename(Format(LogfilePattern, [SessionName, i]));
|
||
while FileExists( FileNameSessionLog ) do
|
||
begin
|
||
inc(i);
|
||
FileNameSessionLog := DirnameSessionLogs + goodfilename(Format(LogfilePattern, [SessionName, i]));
|
||
end;
|
||
|
||
// Create file handle for writing
|
||
AssignFile( FileHandleSessionLog, FileNameSessionLog );
|
||
{$I-} // Supress errors
|
||
if FileExists(FileNameSessionLog) then
|
||
Append(FileHandleSessionLog)
|
||
else
|
||
Rewrite(FileHandleSessionLog);
|
||
{$I+}
|
||
if IOResult <> 0 then
|
||
begin
|
||
MessageDlg('Error opening session log file:'+CRLF+FileNameSessionLog+CRLF+CRLF+'Logging is disabled now.', mtError, [mbOK], 0);
|
||
prefLogToFile := False;
|
||
end else
|
||
prefLogToFile := True;
|
||
// Update popupMenu items
|
||
menuLogToFile.Checked := prefLogToFile;
|
||
menuOpenLogFolder.Enabled := prefLogToFile;
|
||
end;
|
||
|
||
|
||
{**
|
||
Close logfile.
|
||
Called in FormClose, in ActivateFileLogging and on closing preferences dialog
|
||
}
|
||
procedure TMainForm.DeactivateFileLogging;
|
||
begin
|
||
prefLogToFile := False;
|
||
{$I-} // Supress errors
|
||
CloseFile(FileHandleSessionLog);
|
||
{$I+}
|
||
// Reset IOResult so later checks in ActivateFileLogging doesn't get an old value
|
||
IOResult;
|
||
// Update popupMenu items
|
||
menuLogToFile.Checked := prefLogToFile;
|
||
menuOpenLogFolder.Enabled := prefLogToFile;
|
||
end;
|
||
|
||
|
||
{**
|
||
Display tooltips in VirtualTrees. Imitates default behaviour of TListView.
|
||
}
|
||
procedure TMainForm.vstGetHint(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Column: TColumnIndex; var LineBreakStyle:
|
||
TVTTooltipLineBreakStyle; var HintText: WideString);
|
||
var
|
||
r : TRect;
|
||
DisplayedWidth,
|
||
NeededWidth : Integer;
|
||
Tree: TVirtualStringTree;
|
||
begin
|
||
Tree := TVirtualStringTree(Sender);
|
||
HintText := Tree.Text[Node, Column];
|
||
// Check if the list has shortened the text
|
||
r := Tree.GetDisplayRect(Node, Column, True);
|
||
DisplayedWidth := r.Right-r.Left;
|
||
NeededWidth := Canvas.TextWidth(HintText) + Tree.TextMargin*2;
|
||
//debug(format('need: %d, given: %d, font: %s %d', [NeededWidth, DisplayedWidth, canvas.Font.Name, canvas.Font.Size]));
|
||
// Disable displaying hint if text is displayed completely in list
|
||
if NeededWidth <= DisplayedWidth then
|
||
HintText := '';
|
||
end;
|
||
|
||
|
||
{**
|
||
Enable/disable file logging by popupmenuclick
|
||
}
|
||
procedure TMainForm.menuLogToFileClick(Sender: TObject);
|
||
var
|
||
OldprefLogToFile: Boolean;
|
||
begin
|
||
OldprefLogToFile := prefLogToFile;
|
||
if not prefLogToFile then
|
||
ActivateFileLogging
|
||
else
|
||
DeactivateFileLogging;
|
||
|
||
// Save option
|
||
if prefLogToFile <> OldprefLogToFile then
|
||
begin
|
||
OpenRegistry;
|
||
MainReg.WriteBool('LogToFile', prefLogToFile);
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Open folder with session logs
|
||
}
|
||
procedure TMainForm.menuOpenLogFolderClick(Sender: TObject);
|
||
begin
|
||
ShellExec( '', DirnameSessionLogs );
|
||
end;
|
||
|
||
|
||
{**
|
||
A header column of a VirtualTree was "dragged out", which means:
|
||
dragged down or up, not to the left or right.
|
||
We imitate the behaviour of various applications (fx Outlook) and
|
||
hide this dragged column
|
||
}
|
||
procedure TMainForm.vstHeaderDraggedOut(Sender: TVTHeader; Column:
|
||
TColumnIndex; DropPosition: TPoint);
|
||
begin
|
||
if Sender.Treeview = ListTables then
|
||
begin
|
||
// Keep "Tables" column
|
||
if Column = 0 then
|
||
Exit;
|
||
// Uncheck menuitem in header's contextmenu
|
||
popupDBGridHeader.Items[Column].Checked := False;
|
||
end;
|
||
// Hide the draggedout column
|
||
Sender.Columns[Column].Options := Sender.Columns[Column].Options - [coVisible];
|
||
end;
|
||
|
||
|
||
{**
|
||
A cell in ListCommandStats gets painted.
|
||
Draw a progress bar on it to visualize its percentage value.
|
||
}
|
||
procedure TMainForm.ListCommandStatsBeforeCellPaint(Sender: TBaseVirtualTree;
|
||
TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
|
||
CellPaintMode: TVTCellPaintMode; CellRect: TRect; var ContentRect: TRect);
|
||
var
|
||
percent : Extended;
|
||
barwidth, cellwidth: Integer;
|
||
NodeData: PVTreeData;
|
||
begin
|
||
// Only paint bar in percentage column
|
||
if Column <> 4 then
|
||
Exit;
|
||
|
||
// Add minimal margin to cell edges
|
||
InflateRect(CellRect, -1, -1);
|
||
cellwidth := CellRect.Right - CellRect.Left;
|
||
|
||
// Calculate value to display
|
||
NodeData := Sender.GetNodeData(Node);
|
||
percent := MakeFloat(NodeData.Captions[Column]);
|
||
barwidth := Round(cellwidth / 100 * percent);
|
||
|
||
// Adjust width of rect and paint the bar
|
||
CellRect.Right := CellRect.Right - cellwidth + barwidth;
|
||
TargetCanvas.Pen.Color := clGray;
|
||
TargetCanvas.Brush.Color := clInfoBk;
|
||
TargetCanvas.Rectangle(CellRect);
|
||
end;
|
||
|
||
|
||
{**
|
||
A row in the process list was selected. Fill SynMemoProcessView with
|
||
the SQL of that row.
|
||
}
|
||
procedure TMainForm.ListProcessesFocusChanged(Sender: TBaseVirtualTree;
|
||
Node: PVirtualNode; Column: TColumnIndex);
|
||
var
|
||
NodeData : PVTreeData;
|
||
enableSQLView : Boolean;
|
||
begin
|
||
enableSQLView := Assigned(Node);
|
||
SynMemoProcessView.Enabled := enableSQLView;
|
||
pnlProcessView.Enabled := enableSQLView;
|
||
if enableSQLView then begin
|
||
NodeData := ListProcesses.GetNodeData(Node);
|
||
SynMemoProcessView.Text := NodeData.Captions[7];
|
||
end
|
||
else SynMemoProcessView.Clear;
|
||
end;
|
||
|
||
|
||
{***
|
||
Apply a filter to a Virtual Tree.
|
||
}
|
||
procedure TMainForm.editFilterVTChange(Sender: TObject);
|
||
begin
|
||
// Reset typing timer
|
||
TimerFilterVT.Enabled := False;
|
||
TimerFilterVT.Enabled := True;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.TimerFilterVTTimer(Sender: TObject);
|
||
var
|
||
Node : PVirtualNode;
|
||
VT : TVirtualStringTree;
|
||
i : Integer;
|
||
match : Boolean;
|
||
search : WideString;
|
||
tab: TTabSheet;
|
||
VisibleCount: Cardinal;
|
||
CellText: WideString;
|
||
begin
|
||
// Disable timer to avoid filtering in a loop
|
||
TimerFilterVT.Enabled := False;
|
||
// Find the correct VirtualTree that shall be filtered
|
||
tab := PageControlMain.ActivePage;
|
||
if tab = tabHost then
|
||
tab := PageControlHost.ActivePage;
|
||
VT := nil;
|
||
if tab = tabVariables then begin
|
||
VT := ListVariables;
|
||
FilterTextVariables := editFilterVT.Text;
|
||
end else if tab = tabStatus then begin
|
||
VT := ListStatus;
|
||
FilterTextStatus := editFilterVT.Text;
|
||
end else if tab = tabProcesslist then begin
|
||
VT := ListProcesses;
|
||
FilterTextProcessList := editFilterVT.Text;
|
||
end else if tab = tabCommandStats then begin
|
||
VT := ListCommandStats;
|
||
FilterTextCommandStats := editFilterVT.Text;
|
||
end else if tab = tabDatabase then begin
|
||
VT := ListTables;
|
||
FilterTextDatabase := editFilterVT.Text;
|
||
end else if tab = tabData then begin
|
||
VT := DataGrid;
|
||
FilterTextData := editFilterVT.Text;
|
||
end else if QueryTabActive and (tab = ActiveQueryTab.TabSheet) then begin
|
||
VT := ActiveGrid;
|
||
ActiveQueryTab.FilterText := editFilterVT.Text;
|
||
end;
|
||
if not Assigned(VT) then
|
||
Exit;
|
||
// Loop through all nodes and hide non matching
|
||
Node := VT.GetFirst;
|
||
search := LowerCase( editFilterVT.Text );
|
||
VisibleCount := 0;
|
||
while Assigned(Node) do begin
|
||
// Don't filter anything if the filter text is empty
|
||
match := search = '';
|
||
// Search for given text in node's captions
|
||
if not match then for i := 0 to VT.Header.Columns.Count - 1 do begin
|
||
CellText := VT.Text[Node, i];
|
||
if Pos( search, LowerCase(CellText) ) > 0 then begin
|
||
match := True;
|
||
break;
|
||
end;
|
||
end;
|
||
VT.IsVisible[Node] := match;
|
||
if match then
|
||
inc(VisibleCount);
|
||
Node := VT.GetNext(Node);
|
||
end;
|
||
if search <> '' then begin
|
||
lblFilterVTInfo.Caption := IntToStr(VisibleCount)+' out of '+IntToStr(VT.RootNodeCount)+' matching. '
|
||
+ IntToStr(VT.RootNodeCount - VisibleCount) + ' hidden.';
|
||
end else
|
||
lblFilterVTInfo.Caption := '';
|
||
VT.Repaint;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ListVariablesDblClick(Sender: TObject);
|
||
begin
|
||
menuEditVariable.Click;
|
||
end;
|
||
|
||
|
||
{**
|
||
Edit a server variable
|
||
}
|
||
procedure TMainForm.menuEditVariableClick(Sender: TObject);
|
||
var
|
||
NodeData: PVTreeData;
|
||
begin
|
||
if EditVariableForm = nil then
|
||
EditVariableForm := TfrmEditVariable.Create(Self);
|
||
NodeData := ListVariables.GetNodeData(ListVariables.FocusedNode);
|
||
EditVariableForm.VarName := NodeData.Captions[0];
|
||
EditVariableForm.VarValue := NodeData.Captions[1];
|
||
// Refresh relevant list node
|
||
if EditVariableForm.ShowModal = mrOK then
|
||
NodeData.Captions[1] := Connection.GetVar('SHOW VARIABLES LIKE '+esc(NodeData.Captions[0]), 1);
|
||
end;
|
||
|
||
|
||
{**
|
||
The database tree doesn't use any structure for its nodes.
|
||
}
|
||
procedure TMainForm.DBtreeGetNodeDataSize(Sender: TBaseVirtualTree; var
|
||
NodeDataSize: Integer);
|
||
begin
|
||
NodeDataSize := 0;
|
||
end;
|
||
|
||
|
||
{**
|
||
Set text of a treenode before it gets displayed or fetched in any way
|
||
}
|
||
procedure TMainForm.DBtreeGetText(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType; var CellText:
|
||
WideString);
|
||
var
|
||
DBObjects: TDBObjectList;
|
||
db: WideString;
|
||
i, j: Integer;
|
||
Bytes: Int64;
|
||
AllListsCached: Boolean;
|
||
begin
|
||
case Column of
|
||
0: case Sender.GetNodeLevel(Node) of
|
||
0: CellText := Connection.Username + '@' + Connection.Hostname;
|
||
1: CellText := Databases[Node.Index];
|
||
2: begin
|
||
DBObjects := Connection.GetDBObjects(Databases[Node.Parent.Index]);
|
||
CellText := DBObjects[Node.Index].Name;
|
||
end;
|
||
end;
|
||
1: case GetTreeNodeType(Sender, Node) of
|
||
// Calculate and display the sum of all table sizes in ALL dbs if all table lists are cached
|
||
lntNone: begin
|
||
AllListsCached := true;
|
||
for i := 0 to Databases.Count - 1 do begin
|
||
if not Connection.DbObjectsCached(Databases[i]) then begin
|
||
AllListsCached := false;
|
||
break;
|
||
end;
|
||
end;
|
||
// Will be also set to a negative value by GetTableSize and results of SHOW TABLES
|
||
Bytes := -1;
|
||
if AllListsCached then begin
|
||
Bytes := 0;
|
||
for i := 0 to Databases.Count - 1 do begin
|
||
DBObjects := Connection.GetDBObjects(Databases[i]);
|
||
for j:=0 to DBObjects.Count-1 do
|
||
Bytes := Bytes + DBObjects[j].Size;
|
||
end;
|
||
end;
|
||
if Bytes >= 0 then CellText := FormatByteNumber(Bytes)
|
||
else CellText := '';
|
||
end;
|
||
// Calculate and display the sum of all table sizes in ONE db, if the list is already cached.
|
||
lntDb: begin
|
||
db := (Sender as TVirtualStringTree).Text[Node, 0];
|
||
if not Connection.DbObjectsCached(db) then
|
||
CellText := ''
|
||
else begin
|
||
Bytes := 0;
|
||
DBObjects := Connection.GetDBObjects(db);
|
||
for i:=0 to DBObjects.Count-1 do
|
||
Bytes := Bytes + DBObjects[i].Size;
|
||
if Bytes >= 0 then CellText := FormatByteNumber(Bytes)
|
||
else CellText := '';
|
||
end;
|
||
end;
|
||
lntTable: begin
|
||
db := (Sender as TVirtualStringTree).Text[Node.Parent, 0];
|
||
DBObjects := Connection.GetDBObjects(db);
|
||
CellText := FormatByteNumber(DBObjects[Node.Index].Size);
|
||
end
|
||
else CellText := ''; // Applies for views and crashed tables
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Set icon of a treenode before it gets displayed
|
||
}
|
||
procedure TMainForm.DBtreeGetImageIndex(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Kind: TVTImageKind; Column: TColumnIndex; var Ghosted:
|
||
Boolean; var ImageIndex: Integer);
|
||
var
|
||
DBObjects: TDBObjectList;
|
||
begin
|
||
if Column > 0 then
|
||
Exit;
|
||
case Sender.GetNodeLevel(Node) of
|
||
0: ImageIndex := ICONINDEX_SERVER;
|
||
1: if (Kind = ikSelected) or ((Sender.GetFirstSelected<>nil) and (Node=Sender.GetFirstSelected.Parent)) then
|
||
ImageIndex := ICONINDEX_DB_HIGHLIGHT
|
||
else ImageIndex := ICONINDEX_DB;
|
||
2: begin
|
||
DBObjects := Connection.GetDBObjects(Databases[Node.Parent.Index]);
|
||
case DBObjects[Node.Index].NodeType of
|
||
lntTable:
|
||
if Kind = ikSelected then
|
||
ImageIndex := ICONINDEX_TABLE_HIGHLIGHT
|
||
else ImageIndex := ICONINDEX_TABLE;
|
||
lntView:
|
||
if Kind = ikSelected then
|
||
ImageIndex := ICONINDEX_VIEW_HIGHLIGHT
|
||
else ImageIndex := ICONINDEX_VIEW;
|
||
lntCrashedTable:
|
||
if Kind = ikSelected then
|
||
ImageIndex := ICONINDEX_CRASHED_TABLE_HIGHLIGHT
|
||
else ImageIndex := ICONINDEX_CRASHED_TABLE;
|
||
lntProcedure:
|
||
ImageIndex := ICONINDEX_STOREDPROCEDURE;
|
||
lntFunction:
|
||
ImageIndex := ICONINDEX_STOREDFUNCTION;
|
||
lntTrigger:
|
||
ImageIndex := ICONINDEX_TRIGGER;
|
||
end;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Set childcount of an expanding treenode
|
||
}
|
||
procedure TMainForm.DBtreeInitChildren(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; var ChildCount: Cardinal);
|
||
var
|
||
VT: TVirtualStringTree;
|
||
i, j: Integer;
|
||
DatabasesWanted: TWideStringList;
|
||
rx: TRegExpr;
|
||
FilterError: Boolean;
|
||
begin
|
||
VT := Sender as TVirtualStringTree;
|
||
case VT.GetNodeLevel(Node) of
|
||
// Root node has only one single child (user@host)
|
||
0: begin
|
||
Screen.Cursor := crHourglass;
|
||
try
|
||
if not Assigned(AllDatabases) then begin
|
||
Showstatus( 'Reading Databases...' );
|
||
AllDatabases := Connection.GetCol('SHOW DATABASES');
|
||
end;
|
||
if not Assigned(Databases) then
|
||
Databases := TWideStringList.Create;
|
||
Databases.Clear;
|
||
DatabasesWanted := Explode(';', comboOnlyDBs.Text);
|
||
FilterError := False;
|
||
if DatabasesWanted.Count > 0 then begin
|
||
// Add dbs by regular expression, avoiding duplicates
|
||
rx := TRegExpr.Create;
|
||
rx.Expression := '('+ImplodeStr('|', DatabasesWanted)+')';
|
||
for j:=0 to AllDatabases.Count-1 do try
|
||
// The regular expression can have syntax errors which lead to an AV
|
||
if rx.Exec(AllDatabases[j]) then
|
||
Databases.Add(AllDatabases[j]);
|
||
except
|
||
FilterError := True;
|
||
break;
|
||
end;
|
||
rx.Free;
|
||
if Databases.Count = 0 then
|
||
FilterError := True;
|
||
end;
|
||
if FilterError then
|
||
comboOnlyDBs.Color := clWebPink
|
||
else
|
||
comboOnlyDBs.Color := clWindow;
|
||
FreeAndNil(DatabasesWanted);
|
||
if Databases.Count = 0 then
|
||
Databases.Assign(AllDatabases);
|
||
Databases.Sort;
|
||
|
||
// Prioritised position of virtual system database
|
||
i := Databases.IndexOf(DBNAME_INFORMATION_SCHEMA);
|
||
if i > -1 then
|
||
Databases.Move(i, 0);
|
||
|
||
showstatus( IntToStr( Databases.Count ) + ' Databases', 0 );
|
||
ChildCount := Databases.Count;
|
||
finally
|
||
ShowStatus( STATUS_MSG_READY );
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
// DB node expanding
|
||
1: begin
|
||
Screen.Cursor := crHourglass;
|
||
Showstatus( 'Reading Tables...' );
|
||
try
|
||
ChildCount := Connection.GetDBObjects(Databases[Node.Index]).Count;
|
||
finally
|
||
ShowStatus( STATUS_MSG_READY );
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
else Exit;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Set initial options of a treenode
|
||
}
|
||
procedure TMainForm.DBtreeInitNode(Sender: TBaseVirtualTree; ParentNode, Node:
|
||
PVirtualNode; var InitialStates: TVirtualNodeInitStates);
|
||
var
|
||
level: Cardinal;
|
||
begin
|
||
level := Sender.GetNodeLevel(Node);
|
||
// Ensure plus sign is visible for root and dbs
|
||
if level in [0,1] then
|
||
Include( InitialStates, ivsHasChildren);
|
||
// Host node is always expanded
|
||
if level = 0 then
|
||
Include( InitialStates, ivsExpanded );
|
||
end;
|
||
|
||
|
||
{**
|
||
Selection in database tree has changed
|
||
}
|
||
procedure TMainForm.DBtreeFocusChanged(Sender: TBaseVirtualTree;
|
||
Node: PVirtualNode; Column: TColumnIndex);
|
||
var
|
||
newDb, newDbObject: WideString;
|
||
begin
|
||
debug('DBtreeFocusChanged()');
|
||
SelectedTableCreateStatement := '';
|
||
if not Assigned(Node) then
|
||
Exit;
|
||
// Post pending UPDATE
|
||
if DataGridHasChanges then
|
||
actDataPostChangesExecute(Sender);
|
||
case Sender.GetNodeLevel(Node) of
|
||
0: ShowHost;
|
||
1: begin
|
||
newDb := Databases[Node.Index];
|
||
Connection.Database := newDb;
|
||
ShowDatabase( newDb );
|
||
end;
|
||
2: begin
|
||
newDb := Databases[Node.Parent.Index];
|
||
Connection.Database := newDb;
|
||
newDbObject := SelectedTable.Text;
|
||
tabEditor.TabVisible := True;
|
||
tabData.TabVisible := SelectedTable.NodeType in [lntTable, lntCrashedTable, lntView];
|
||
SelectedTableColumns.Clear;
|
||
SelectedTableKeys.Clear;
|
||
SelectedTableForeignKeys.Clear;
|
||
try
|
||
case SelectedTable.NodeType of
|
||
lntTable, lntCrashedTable: begin
|
||
SelectedTableCreateStatement := Connection.GetVar('SHOW CREATE TABLE '+Mainform.mask(SelectedTable.Text), 1);
|
||
ParseTableStructure(SelectedTableCreateStatement, SelectedTableColumns, SelectedTableKeys, SelectedTableForeignKeys);
|
||
end;
|
||
lntView: ParseViewStructure(SelectedTable.Text, SelectedTableColumns);
|
||
end;
|
||
except on E:Exception do
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
end;
|
||
if tabEditor.TabVisible then begin
|
||
actEditObjectExecute(Sender);
|
||
// When a table is clicked in the tree, and the current
|
||
// tab is a Host or Database tab, switch to showing table columns.
|
||
if (PagecontrolMain.ActivePage = tabHost) or (PagecontrolMain.ActivePage = tabDatabase) then
|
||
PagecontrolMain.ActivePage := tabEditor;
|
||
// When a table is clicked in the tree, and the data
|
||
// tab is active, update the data tab
|
||
if PagecontrolMain.ActivePage = tabData then
|
||
ViewData(Sender);
|
||
// When a table is clicked in the tree, and the query
|
||
// tab is active, update the list of columns
|
||
if QueryTabActive then
|
||
RefreshQueryHelpers;
|
||
end;
|
||
end;
|
||
end;
|
||
if newDb <> '' then
|
||
LoadDatabaseProperties(newDb);
|
||
FixQueryTabCloseButtons;
|
||
SetWindowCaption;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DatabaseChanged(Database: WideString);
|
||
begin
|
||
if (Database <> ActiveDatabase) and (Databases.IndexOf(Database) > -1) then
|
||
ActiveDatabase := Database;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DBtreeDblClick(Sender: TObject);
|
||
var
|
||
Node: PVirtualNode;
|
||
begin
|
||
// Paste DB or table name into query window on treeview double click.
|
||
Node := DBtree.GetFirstSelected;
|
||
if not Assigned(Node) then Exit;
|
||
if DBtree.GetNodeLevel(Node) = 0 then Exit;
|
||
if not QueryTabActive then Exit;
|
||
ActiveQueryMemo.SelText := DBtree.Text[Node, 0];
|
||
ActiveQueryMemo.SetFocus;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DBtreePaintText(Sender: TBaseVirtualTree; const
|
||
TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; TextType:
|
||
TVSTTextType);
|
||
begin
|
||
// Grey out rather unimportant "Size" column
|
||
if Column <> 1 then
|
||
Exit;
|
||
case Sender.GetNodeLevel(Node) of
|
||
0, 1: TargetCanvas.Font.Color := clWindowText;
|
||
2: TargetCanvas.Font.Color := $00444444;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Refresh the whole tree
|
||
}
|
||
procedure TMainForm.RefreshTree(DoResetTableCache: Boolean; SelectDatabase: WideString = '');
|
||
var
|
||
oldActiveDatabase: WideString;
|
||
oldSelectedTable: TListNode;
|
||
begin
|
||
// Remember currently active database and table
|
||
oldActiveDatabase := ActiveDatabase;
|
||
oldSelectedTable := SelectedTable;
|
||
DBtree.FocusedNode := nil;
|
||
|
||
// ReInit tree population
|
||
if DoResetTableCache then begin
|
||
Connection.ClearDbObjects;
|
||
FreeAndNil(AllDatabases);
|
||
end;
|
||
DBtree.ReinitChildren(DBTree.GetFirst, False);
|
||
|
||
// Reselect active or new database if present. Could have been deleted or renamed.
|
||
try
|
||
if SelectDatabase <> '' then
|
||
ActiveDatabase := SelectDatabase
|
||
else if oldActiveDatabase <> '' then
|
||
ActiveDatabase := oldActiveDatabase;
|
||
if oldSelectedTable.Text <> '' then
|
||
SelectDBObject(oldSelectedTable.Text, oldSelectedTable.NodeType);
|
||
except
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Refresh one database node in the db tree
|
||
}
|
||
procedure TMainForm.RefreshTreeDB(db: WideString);
|
||
var
|
||
oldActiveDatabase: WideString;
|
||
DBNode, FNode: PVirtualNode;
|
||
oldSelectedTable: TListNode;
|
||
TableHereHadFocus: Boolean;
|
||
DBObjects: TDBObjectList;
|
||
i: Integer;
|
||
FocusChangeEvent: procedure(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex) of object;
|
||
begin
|
||
oldActiveDatabase := ActiveDatabase;
|
||
oldSelectedTable := SelectedTable;
|
||
DBNode := FindDBNode(db);
|
||
FNode := DBtree.FocusedNode;
|
||
TableHereHadFocus := FNode.Parent = DBNode;
|
||
// Suspend focus changing event, to avoid tab jumping
|
||
FocusChangeEvent := DBtree.OnFocusChanged;
|
||
DBtree.OnFocusChanged := nil;
|
||
// Refresh db node
|
||
Connection.ClearDbObjects(db);
|
||
DBTree.ReinitNode(DBNode, true);
|
||
DBtree.InvalidateChildren(DBNode, false);
|
||
// Set focus on previously focused table node
|
||
if TableHereHadFocus then begin
|
||
DBObjects := Connection.GetDBObjects(db);
|
||
for i:=0 to DBObjects.Count-1 do begin
|
||
// Need to check if table was renamed, in which case oldSelectedTable is no longer available
|
||
if (DBObjects[i].Name = oldSelectedTable.Text)
|
||
and (DBObjects[i].NodeType = oldSelectedTable.NodeType) then begin
|
||
SelectDBObject(oldSelectedTable.Text, oldSelectedTable.NodeType);
|
||
break;
|
||
end;
|
||
end;
|
||
end;
|
||
// Reactivate focus changing event
|
||
DBtree.OnFocusChanged := FocusChangeEvent;
|
||
end;
|
||
|
||
|
||
{**
|
||
Find a database node in the tree by passing its name
|
||
}
|
||
function TMainForm.FindDBNode(db: WideString): PVirtualNode;
|
||
var
|
||
i, s: Integer;
|
||
n: PVirtualNode;
|
||
begin
|
||
Result := nil;
|
||
// Ensure Databases list is instantiated (by DBtree.InitChildren)
|
||
if Databases = nil then
|
||
DBtree.ReinitNode(DBtree.GetFirst, False);
|
||
// TStringList.CaseSensitive= True|False is only used in .IndexOf and .Sort procs,
|
||
// it does not avoid or remove duplicate items
|
||
Databases.CaseSensitive := True;
|
||
s := Databases.IndexOf(db);
|
||
if s = -1 then begin
|
||
Databases.CaseSensitive := False;
|
||
s := Databases.IndexOf(db);
|
||
end;
|
||
if s > -1 then begin
|
||
n := DBtree.GetFirstChild(DBtree.GetFirst);
|
||
for i := 0 to DBtree.GetFirst.ChildCount - 1 do begin
|
||
if Integer(n.Index) = s then begin
|
||
Result := n;
|
||
Exit;
|
||
end;
|
||
n := DBtree.GetNextSibling(n);
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Expand all db nodes
|
||
}
|
||
procedure TMainForm.menuTreeExpandAllClick(Sender: TObject);
|
||
begin
|
||
DBtree.FullExpand;
|
||
DBtree.ScrollIntoView(DBtree.GetFirstSelected, False);
|
||
end;
|
||
|
||
{**
|
||
Collapse all db nodes
|
||
}
|
||
procedure TMainForm.menuTreeCollapseAllClick(Sender: TObject);
|
||
var
|
||
n: PVirtualNode;
|
||
i: Integer;
|
||
begin
|
||
n := DBtree.GetFirstChild(DBtree.GetFirst);
|
||
for i := 0 to DBtree.GetFirst.ChildCount - 1 do begin
|
||
DBtree.FullCollapse(n);
|
||
n := DBtree.GetNextSibling(n);
|
||
end;
|
||
DBtree.ScrollIntoView(DBtree.GetFirstSelected, False);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.editFilterSearchChange(Sender: TObject);
|
||
var
|
||
Add, Clause: WideString;
|
||
i: Integer;
|
||
ed: TEdit;
|
||
Col: TTableColumn;
|
||
begin
|
||
ed := TEdit(Sender);
|
||
Clause := '';
|
||
Add := '';
|
||
if ed.Text <> '' then begin
|
||
for i:=0 to SelectedTableColumns.Count-1 do begin
|
||
Col := TTableColumn(SelectedTableColumns[i]);
|
||
if i > 0 then
|
||
Add := Add + ' OR ';
|
||
Add := Add + mask(Col.Name) + ' LIKE ' + esc('%'+ed.Text+'%');
|
||
if Length(Add) > 45 then begin
|
||
Clause := Clause + Add + CRLF;
|
||
Add := '';
|
||
end;
|
||
end;
|
||
if Add <> '' then
|
||
Clause := Clause + Add;
|
||
end;
|
||
SynMemoFilter.UndoList.AddGroupBreak;
|
||
SynMemoFilter.SelectAll;
|
||
SynMemoFilter.SelText := Clause;
|
||
SynMemoFilterChange(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SynMemoFilterChange(Sender: TObject);
|
||
var
|
||
SomeText: Boolean;
|
||
begin
|
||
SomeText := (SynMemoFilter.GetTextLen > 0) or (editFilterSearch.Text <> '');
|
||
actClearFilterEditor.Enabled := SomeText;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ToggleFilterPanel(ForceVisible: Boolean = False);
|
||
var
|
||
ShowIt: Boolean;
|
||
begin
|
||
ShowIt := ForceVisible or (not pnlFilter.Visible);
|
||
tbtnDataFilter.Down := ShowIt;
|
||
pnlFilter.Visible := ShowIt;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.editFilterSearchEnter(Sender: TObject);
|
||
begin
|
||
// Enables triggering apply button with Enter
|
||
btnFilterApply.Default := True;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.editFilterSearchExit(Sender: TObject);
|
||
begin
|
||
btnFilterApply.Default := False;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.EnsureNodeLoaded(Sender: TBaseVirtualTree; Node: PVirtualNode; WhereClause: WideString);
|
||
var
|
||
res: TGridResult;
|
||
query: WideString;
|
||
Results: TMySQLQuery;
|
||
i, j: LongInt;
|
||
begin
|
||
res := GridResult(Sender);
|
||
if (not res.Rows[Node.Index].Loaded) and (res.Rows[Node.Index].State <> grsInserted) then begin
|
||
query := DataGridCurrentSelect + DataGridCurrentFrom;
|
||
// Passed WhereClause has prio over current filter, fixes bug #754
|
||
if WhereClause <> '' then begin
|
||
query := query + ' WHERE ' + WhereClause;
|
||
end else if DataGridCurrentFilter <> '' then begin
|
||
query := query + ' WHERE ' + DataGridCurrentFilter;
|
||
end;
|
||
|
||
// start query
|
||
ShowStatus('Retrieving data...');
|
||
Results := Connection.GetResults(query);
|
||
// If new data does not match current filter, remove from tree.
|
||
if Results.RecordCount < 1 then begin
|
||
// Remove entry from dynamic array.
|
||
for i := Node.Index to Length(res.Rows) - 1 do begin
|
||
if i < Length(res.Rows) - 1 then res.Rows[i] := res.Rows[i + 1];
|
||
end;
|
||
SetLength(res.Rows, Length(res.Rows) - 1);
|
||
// Remove entry from node list.
|
||
Sender.DeleteNode(Node);
|
||
end;
|
||
|
||
// fill in data
|
||
ShowStatus('Filling grid with record-data...');
|
||
if Results.RecordCount > 0 then begin
|
||
SetLength(res.Rows[Node.Index].Cells, Results.ColumnCount);
|
||
i := Node.Index;
|
||
for j := 0 to Results.ColumnCount - 1 do begin
|
||
case res.Columns[j].DatatypeCat of
|
||
dtcInteger, dtcReal: res.Rows[i].Cells[j].Text := FormatNumber(Results.Col(j), False);
|
||
dtcBinary: res.Rows[i].Cells[j].Text := '0x' + BinToWideHex(Results.Col(j));
|
||
else res.Rows[i].Cells[j].Text := Results.Col(j);
|
||
end;
|
||
res.Rows[i].Cells[j].IsNull := Results.IsNull(j);
|
||
end;
|
||
res.Rows[Node.Index].Loaded := True;
|
||
end;
|
||
|
||
ShowStatus( STATUS_MSG_READY );
|
||
FreeAndNil(Results);
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.EnsureChunkLoaded(Sender: TBaseVirtualTree; Node: PVirtualNode; FullWidth: Boolean = False);
|
||
var
|
||
res: TGridResult;
|
||
start, limit: Cardinal;
|
||
query: WideString;
|
||
Results: TMySQLQuery;
|
||
i, j: LongInt;
|
||
hi: LongInt;
|
||
regCrashIndicName: String;
|
||
begin
|
||
res := GridResult(Sender);
|
||
if (not res.Rows[Node.Index].Loaded) and (res.Rows[Node.Index].State <> grsInserted) then begin
|
||
start := Node.Index - (Node.Index mod GridMaxRows);
|
||
limit := TVirtualStringTree(Sender).RootNodeCount - start;
|
||
if limit > GridMaxRows then limit := GridMaxRows;
|
||
if FullWidth then
|
||
query := DataGridCurrentFullSelect + DataGridCurrentFrom
|
||
else
|
||
query := DataGridCurrentSelect + DataGridCurrentFrom;
|
||
if DataGridCurrentFilter <> '' then query := query + ' WHERE ' + DataGridCurrentFilter;
|
||
if DataGridCurrentSort <> '' then query := query + ' ORDER BY ' + DataGridCurrentSort;
|
||
query := query + WideFormat(' LIMIT %d, %d', [start, limit]);
|
||
|
||
// Set indicator for possibly crashing query
|
||
OpenRegistry(SessionName);
|
||
regCrashIndicName := Utf8Encode(REGPREFIX_CRASH_IN_DATA + ActiveDatabase + '.' + SelectedTable.Text);
|
||
MainReg.WriteBool(regCrashIndicName, True);
|
||
|
||
// start query
|
||
ShowStatus('Retrieving data...');
|
||
debug(Format('mem: loading data chunk from row %d to %d', [start, limit]));
|
||
try
|
||
Results := Connection.GetResults(query);
|
||
except
|
||
// if something bad happened, nuke cache, reset cursor and display error.
|
||
TVirtualStringTree(Sender).RootNodeCount := 0;
|
||
SetLength(res.Rows, 0);
|
||
ReachedEOT := true;
|
||
ShowStatus(STATUS_MSG_READY);
|
||
Screen.Cursor := crDefault;
|
||
raise;
|
||
end;
|
||
if Cardinal(Results.RecordCount) < limit then begin
|
||
limit := Results.RecordCount;
|
||
TVirtualStringTree(Sender).RootNodeCount := start + limit;
|
||
SetLength(res.Rows, start + limit);
|
||
ReachedEOT := true;
|
||
end;
|
||
if not ReachedEOT then begin
|
||
hi := start + limit;
|
||
if hi < SIMULATE_INITIAL_ROWS then hi := SIMULATE_INITIAL_ROWS;
|
||
hi := hi * (100 + SIMULATE_MORE_ROWS) div 100;
|
||
Sender.BeginUpdate;
|
||
TVirtualStringTree(Sender).RootNodeCount := Cardinal(hi);
|
||
SetLength(res.Rows, hi);
|
||
Sender.EndUpdate;
|
||
end;
|
||
debug(Format('mem: loaded data chunk from row %d to %d', [start, limit]));
|
||
|
||
// Query was completed successfully. Reset crash indicator.
|
||
MainReg.DeleteValue(regCrashIndicName);
|
||
|
||
// fill in data
|
||
ShowStatus('Filling grid with record-data...');
|
||
for i:=start to start+limit-1 do begin
|
||
SetLength(res.Rows[i].Cells, Results.ColumnCount);
|
||
for j:=0 to Results.ColumnCount-1 do begin
|
||
case res.Columns[j].DatatypeCat of
|
||
dtcInteger, dtcReal: res.Rows[i].Cells[j].Text := FormatNumber(Results.Col(j), False);
|
||
dtcBinary: res.Rows[i].Cells[j].Text := '0x' + BinToWideHex(Results.Col(j));
|
||
else res.Rows[i].Cells[j].Text := Results.Col(j);
|
||
end;
|
||
res.Rows[i].Cells[j].IsNull := Results.IsNull(j);
|
||
end;
|
||
res.Rows[i].Loaded := True;
|
||
Results.Next;
|
||
end;
|
||
|
||
if res = DataGridResult then begin
|
||
if ReachedEOT then DisplayRowCountStats(Length(res.Rows))
|
||
else DisplayRowCountStats(-1);
|
||
end;
|
||
|
||
ShowStatus( STATUS_MSG_READY );
|
||
FreeAndNil(Results);
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.DiscardNodeData(Sender: TVirtualStringTree; Node: PVirtualNode);
|
||
begin
|
||
// Avoid discarding query data as it will never be reloaded.
|
||
if Sender <> DataGrid then Exit;
|
||
// Avoid rows being edited.
|
||
if DataGridResult.Rows[Node.Index].State = grsDefault then begin
|
||
DataGridResult.Rows[Node.Index].Loaded := false;
|
||
SetLength(DataGridResult.Rows[Node.Index].Cells, 0);
|
||
end;
|
||
end;
|
||
|
||
{**
|
||
A grid cell fetches its text content
|
||
}
|
||
procedure TMainForm.GridGetText(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Column: TColumnIndex; TextType: TVSTTextType; var CellText:
|
||
WideString);
|
||
var
|
||
c: PGridCell;
|
||
gr: TGridResult;
|
||
EditingCell: Boolean;
|
||
begin
|
||
if Column = -1 then
|
||
Exit;
|
||
gr := GridResult(Sender);
|
||
if Node.Index >= Cardinal(Length(gr.Rows)) then Exit;
|
||
EnsureChunkLoaded(Sender, Node);
|
||
if Node.Index >= Cardinal(Length(gr.Rows)) then Exit;
|
||
c := @gr.Rows[Node.Index].Cells[Column];
|
||
EditingCell := Sender.IsEditing and (Node = Sender.FocusedNode) and (Column = Sender.FocusedColumn);
|
||
if c.Modified then begin
|
||
if c.NewIsNull then begin
|
||
if EditingCell then CellText := ''
|
||
else CellText := TEXT_NULL;
|
||
end else CellText := c.NewText;
|
||
end else begin
|
||
if c.IsNull then begin
|
||
if EditingCell then CellText := ''
|
||
else CellText := TEXT_NULL;
|
||
end else begin
|
||
CellText := c.Text;
|
||
if Length(c.Text) = GridMaxData then CellText := CellText + ' [...]';
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.CalcNullColors;
|
||
var
|
||
i: Integer;
|
||
begin
|
||
for i:=Low(DatatypeCategories) to High(DatatypeCategories) do
|
||
DatatypeCategories[i].NullColor := ColorAdjustBrightness(DatatypeCategories[i].Color, COLORSHIFT_NULLFIELDS, False);
|
||
end;
|
||
|
||
|
||
{**
|
||
Cell in data- or query grid gets painted. Colorize font. This procedure is
|
||
called extremely often for repainting the grid cells. Keep it highly optimized.
|
||
}
|
||
procedure TMainForm.GridPaintText(Sender: TBaseVirtualTree; const
|
||
TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex; TextType:
|
||
TVSTTextType);
|
||
var
|
||
cl: TColor;
|
||
r: TGridResult;
|
||
begin
|
||
if Column = -1 then
|
||
Exit;
|
||
|
||
r := GridResult(Sender);
|
||
|
||
if Node.Index >= Cardinal(Length(r.Rows)) then
|
||
Exit;
|
||
|
||
// Make primary key columns bold
|
||
if r.Columns[Column].IsPriPart then
|
||
TargetCanvas.Font.Style := TargetCanvas.Font.Style + [fsBold];
|
||
|
||
// Do not apply any color on a selected, highlighted cell to keep readability
|
||
if vsSelected in Node.States then
|
||
cl := clBlack
|
||
else if r.Rows[Node.Index].Cells[Column].IsNull then
|
||
cl := DatatypeCategories[Integer(r.Columns[Column].DatatypeCat)].NullColor
|
||
else
|
||
cl := DatatypeCategories[Integer(r.Columns[Column].DatatypeCat)].Color;
|
||
TargetCanvas.Font.Color := cl;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DataGridAfterCellPaint(Sender: TBaseVirtualTree;
|
||
TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
|
||
CellRect: TRect);
|
||
begin
|
||
// Don't waist time
|
||
if Column = -1 then Exit;
|
||
if Node.Index >= Cardinal(Length(DataGridResult.Rows)) then Exit;
|
||
// Paint a red triangle at the top left corner of the cell
|
||
if DataGridResult.Rows[Node.Index].Cells[Column].Modified then
|
||
PngImageListMain.Draw(TargetCanvas, CellRect.Left, CellRect.Top, 111);
|
||
end;
|
||
|
||
|
||
{**
|
||
Header column in datagrid clicked.
|
||
Left button: handle ORDER BY
|
||
Right button: show column selection box
|
||
}
|
||
procedure TMainForm.DataGridHeaderClick(Sender: TVTHeader; HitInfo: TVTHeaderHitInfo);
|
||
var
|
||
frm: TForm;
|
||
i, j : Integer;
|
||
columnexists : Boolean;
|
||
ColName: WideString;
|
||
begin
|
||
if HitInfo.Column = NoColumn then
|
||
Exit;
|
||
if HitInfo.Button = mbLeft then begin
|
||
ColName := Sender.Columns[HitInfo.Column].Text;
|
||
// Add a new order column after a columns title has been clicked
|
||
// Check if order column is already existant
|
||
columnexists := False;
|
||
for i := Low(FDataGridSort) to High(FDataGridSort) do begin
|
||
if FDataGridSort[i].ColumnName = ColName then begin
|
||
// AddOrderCol is already in the list. Switch its direction:
|
||
// ASC > DESC > [delete col]
|
||
columnexists := True;
|
||
if FDataGridSort[i].SortDirection = ORDER_ASC then
|
||
FDataGridSort[i].SortDirection := ORDER_DESC
|
||
else begin
|
||
// Delete order col
|
||
for j := i to High(FDataGridSort) - 1 do
|
||
FDataGridSort[j] := FDataGridSort[j+1];
|
||
SetLength(FDataGridSort, Length(FDataGridSort)-1);
|
||
end;
|
||
// We found the matching column, no need to loop further
|
||
break;
|
||
end;
|
||
end;
|
||
|
||
if not columnexists then begin
|
||
i := Length(FDataGridSort);
|
||
SetLength(FDataGridSort, i+1);
|
||
FDataGridSort[i] := TOrderCol.Create;
|
||
FDataGridSort[i].ColumnName := ColName;
|
||
FDataGridSort[i].SortDirection := ORDER_ASC;
|
||
end;
|
||
ViewData(Sender);
|
||
end else begin
|
||
frm := TColumnSelectionForm.Create(self);
|
||
// Position new form relative to btn's position
|
||
frm.Top := HitInfo.Y + DataGrid.ClientOrigin.Y - Integer(DataGrid.Header.Height);
|
||
frm.Left := HitInfo.X + DataGrid.ClientOrigin.X;
|
||
// Display form
|
||
frm.Show;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Only allow grid editing if there is a good key available
|
||
}
|
||
procedure TMainForm.setNULL1Click(Sender: TObject);
|
||
begin
|
||
if not CheckUniqueKeyClause then
|
||
Exit;
|
||
// Internally calls OnNewText event:
|
||
DataGrid.Text[DataGrid.FocusedNode, DataGrid.FocusedColumn] := '';
|
||
DataGridResult.Rows[DataGrid.FocusedNode.Index].Cells[DataGrid.FocusedColumn].NewIsNull := True;
|
||
DataGrid.RepaintNode(DataGrid.FocusedNode);
|
||
end;
|
||
|
||
|
||
{**
|
||
Content of a grid cell was modified
|
||
}
|
||
procedure TMainForm.DataGridNewText(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Column: TColumnIndex; NewText: WideString);
|
||
var
|
||
Row: PGridRow;
|
||
begin
|
||
Row := @DataGridResult.Rows[Node.Index];
|
||
// Remember new value
|
||
Row.Cells[Column].NewText := NewText;
|
||
Row.Cells[Column].NewIsNull := False;
|
||
Row.Cells[Column].Modified := True;
|
||
// Set state of row for UPDATE mode, don't touch grsInserted
|
||
if Row.State = grsDefault then
|
||
DataGridResult.Rows[Node.Index].State := grsModified;
|
||
DataGridHasChanges := True;
|
||
ValidateControls(Sender);
|
||
end;
|
||
|
||
|
||
{**
|
||
Checks if there is a unique key available which can be used for UPDATEs and INSERTs
|
||
}
|
||
function TMainForm.CheckUniqueKeyClause: Boolean;
|
||
begin
|
||
Result := GetKeyColumns.Count > 0;
|
||
if not Result then begin
|
||
Screen.Cursor := crDefault;
|
||
MessageDlg('Grid editing and selective row operations are blocked because this table either'+CRLF+
|
||
'* has no primary or unique key'+CRLF+
|
||
'* or it only contains a unique key which allows NULLs (which turns that '+
|
||
'key to be non unique again.)'+CRLF+CRLF+
|
||
'You should create a primary key on the "Table" tab.',
|
||
mtWarning, [mbOK], 0);
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
DataGrid: node focus has changed
|
||
}
|
||
procedure TMainForm.DataGridChange(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode);
|
||
begin
|
||
ValidateControls(Sender);
|
||
end;
|
||
|
||
|
||
{**
|
||
DataGrid: node and/or column focus is about to change. See if we allow that.
|
||
}
|
||
procedure TMainForm.DataGridFocusChanging(Sender: TBaseVirtualTree; OldNode,
|
||
NewNode: PVirtualNode; OldColumn, NewColumn: TColumnIndex; var Allowed:
|
||
Boolean);
|
||
begin
|
||
// Detect changed focus and update row
|
||
if Assigned(OldNode) and (OldNode <> NewNode) then
|
||
Allowed := DataGridPostUpdateOrInsert(OldNode)
|
||
else
|
||
Allowed := True;
|
||
end;
|
||
|
||
|
||
{**
|
||
DataGrid: invoke update or insert routine
|
||
}
|
||
function TMainForm.DataGridPostUpdateOrInsert(Node: PVirtualNode): Boolean;
|
||
begin
|
||
Result := True;
|
||
if not Assigned(Node) then
|
||
Exit;
|
||
if Cardinal(High(DataGridResult.Rows)) >= Node.Index then
|
||
case DataGridResult.Rows[Node.Index].State of
|
||
grsModified: Result := GridPostUpdate(DataGrid);
|
||
grsInserted: Result := GridPostInsert(DataGrid);
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
DataGrid: compose and fire UPDATE query
|
||
}
|
||
function TMainForm.GridPostUpdate(Sender: TBaseVirtualTree): Boolean;
|
||
var
|
||
i: Integer;
|
||
sql, Val: WideString;
|
||
Row: PGridRow;
|
||
begin
|
||
sql := 'UPDATE '+mask(DataGridDB)+'.'+mask(DataGridTable)+' SET';
|
||
Row := @DataGridResult.Rows[Sender.FocusedNode.Index];
|
||
for i := 0 to Length(DataGridResult.Columns) - 1 do begin
|
||
if Row.Cells[i].Modified then begin
|
||
Val := Row.Cells[i].NewText;
|
||
case DataGridResult.Columns[i].DatatypeCat of
|
||
dtcInteger, dtcReal: Val := UnformatNumber(Val);
|
||
dtcBinary: begin
|
||
CheckHex(Copy(Val, 3), 'Invalid hexadecimal string given in field "' + DataGridResult.Columns[i].Name + '".');
|
||
if Val = '0x' then Val := esc('');
|
||
end;
|
||
else Val := esc(Val);
|
||
end;
|
||
if Row.Cells[i].NewIsNull then Val := 'NULL';
|
||
sql := sql + ' ' + mask(DataGridResult.Columns[i].Name) + '=' + Val + ', ';
|
||
end;
|
||
end;
|
||
// Cut trailing comma
|
||
sql := Copy(sql, 1, Length(sql)-2);
|
||
sql := sql + ' WHERE ' + GetWhereClause(Row, @DataGridResult.Columns);
|
||
try
|
||
// Send UPDATE query
|
||
Connection.Query(sql);
|
||
if Connection.RowsAffected = 0 then begin
|
||
MessageDlg('Your change did not affect any row! This can have several causes:' + CRLF + CRLF +
|
||
'a) Your changes were silently converted by the server. For instance, if you tried to ' +
|
||
'update an unsigned TINYINT field from its maximum value 255 to a higher value.' + CRLF + CRLF +
|
||
'b) The server could not find the source row because it was deleted ' +
|
||
'from outside.' + CRLF + CRLF +
|
||
'c) The server could not find the source row because its primary key fields were modified ' +
|
||
'from outside.',
|
||
mtInformation, [mbOK], 0);
|
||
end;
|
||
Result := True;
|
||
except
|
||
on E:Exception do begin
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
Result := False;
|
||
end;
|
||
end;
|
||
|
||
if Result then begin
|
||
// Reselect just updated row in grid from server to ensure displaying
|
||
// correct values which were silently converted by the server
|
||
for i := 0 to Length(DataGridResult.Columns) - 1 do begin
|
||
if not Row.Cells[i].Modified then
|
||
Continue;
|
||
Row.Cells[i].Text := Row.Cells[i].NewText;
|
||
Row.Cells[i].IsNull := Row.Cells[i].NewIsNull;
|
||
end;
|
||
GridFinalizeEditing(Sender);
|
||
Row.Loaded := false;
|
||
EnsureNodeLoaded(Sender, Sender.FocusedNode, GetWhereClause(Row, @DataGridResult.Columns));
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
Repaint edited node and reset state of grid row
|
||
}
|
||
procedure TMainForm.GridFinalizeEditing(Sender: TBaseVirtualTree);
|
||
var
|
||
i, c: Integer;
|
||
begin
|
||
c := Sender.FocusedNode.Index;
|
||
DataGridResult.Rows[c].State := grsDefault;
|
||
for i := 0 to Length(DataGridResult.Rows[c].Cells) - 1 do begin
|
||
DataGridResult.Rows[c].Cells[i].NewText := '';
|
||
DataGridResult.Rows[c].Cells[i].Modified := False;
|
||
end;
|
||
Sender.RepaintNode(Sender.FocusedNode);
|
||
DataGridHasChanges := False;
|
||
ValidateControls(Sender);
|
||
end;
|
||
|
||
|
||
{**
|
||
Compose a WHERE clause used for UPDATEs and DELETEs
|
||
}
|
||
function TMainForm.GetWhereClause(Row: PGridRow; Columns: PGridColumns): WideString;
|
||
var
|
||
i, j: Integer;
|
||
KeyVal: WideString;
|
||
KeyCols: TWideStringlist;
|
||
begin
|
||
Result := '';
|
||
KeyCols := GetKeyColumns;
|
||
for i := 0 to KeyCols.Count - 1 do begin
|
||
for j := 0 to Length(Columns^) - 1 do begin
|
||
if Columns^[j].Name = KeyCols[i] then
|
||
break;
|
||
end;
|
||
// Find old value of key column
|
||
KeyVal := Row.Cells[j].Text;
|
||
// Quote if needed
|
||
case DataGridResult.Columns[j].DatatypeCat of
|
||
dtcInteger, dtcReal: KeyVal := UnformatNumber(KeyVal);
|
||
dtcBinary: if KeyVal = '0x' then KeyVal := esc('');
|
||
else KeyVal := esc(KeyVal);
|
||
end;
|
||
|
||
if Row.Cells[j].IsNull then KeyVal := ' IS NULL'
|
||
else KeyVal := '=' + KeyVal;
|
||
Result := Result + mask(KeyCols[i]) + KeyVal + ' AND ';
|
||
end;
|
||
// Cut trailing AND
|
||
Result := Copy(Result, 1, Length(Result)-5);
|
||
end;
|
||
|
||
|
||
{**
|
||
Find key columns for a WHERE clause by analysing a SHOW KEYS FROM ... resultset
|
||
}
|
||
function TMainForm.GetKeyColumns: TWideStringlist;
|
||
var
|
||
i, j, k: Integer;
|
||
AllowsNull: Boolean;
|
||
Key: TTableKey;
|
||
Col: TTableColumn;
|
||
begin
|
||
Result := TWideStringlist.Create;
|
||
// Find best key for updates
|
||
// 1. round: find a primary key
|
||
for i:=0 to SelectedTableKeys.Count-1 do begin
|
||
Key := TTableKey(SelectedTableKeys[i]);
|
||
if Key.Name = 'PRIMARY' then begin
|
||
Result := Key.Columns;
|
||
Exit;
|
||
end;
|
||
end;
|
||
// no primary key available -> 2. round: find a unique key
|
||
for i:=0 to SelectedTableKeys.Count-1 do begin
|
||
Key := TTableKey(SelectedTableKeys[i]);
|
||
if Key.IndexType = UKEY then begin
|
||
// We found a UNIQUE key - better than nothing. Check if one of the key
|
||
// columns allows NULLs which makes it dangerous to use in UPDATES + DELETES.
|
||
AllowsNull := False;
|
||
for j:=0 to Key.Columns.Count-1 do begin
|
||
for k:=0 to SelectedTableColumns.Count-1 do begin
|
||
Col := TTableColumn(SelectedTableColumns[k]);
|
||
if Col.Name = Key.Columns[j] then
|
||
AllowsNull := Col.AllowNull;
|
||
if AllowsNull then break;
|
||
end;
|
||
if AllowsNull then break;
|
||
end;
|
||
if not AllowsNull then begin
|
||
Result := Key.Columns;
|
||
break;
|
||
end;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
DataGrid: compose and fire UPDATE query
|
||
}
|
||
procedure TMainForm.DataGridInsertRow;
|
||
var
|
||
i, j: Integer;
|
||
begin
|
||
// Scroll to the bottom to ensure we append the new row at the very last DataGridResult chunk
|
||
DataGrid.FocusedNode := DataGrid.GetLast;
|
||
DataGrid.Repaint;
|
||
// Steeling focus now to invoke posting a pending row update
|
||
DataGrid.FocusedNode := nil;
|
||
i := Length(DataGridResult.Rows);
|
||
SetLength(DataGridResult.Rows, i+1);
|
||
SetLength(DataGridResult.Rows[i].Cells, Length(DataGridResult.Columns));
|
||
DataGridResult.Rows[i].State := grsInserted;
|
||
for j := 0 to Length(DataGridResult.Rows[i].Cells) - 1 do begin
|
||
DataGridResult.Rows[i].Cells[j].Text := '';
|
||
end;
|
||
DataGrid.FocusedNode := DataGrid.AddChild(nil);
|
||
DataGrid.ClearSelection;
|
||
DataGrid.Selected[DataGrid.FocusedNode] := True;
|
||
DataGridHasChanges := True;
|
||
ValidateControls(DataGrid);
|
||
end;
|
||
|
||
|
||
{**
|
||
DataGrid: compose and fire INSERT query
|
||
}
|
||
function TMainForm.GridPostInsert(Sender: TBaseVirtualTree): Boolean;
|
||
var
|
||
Row: PGridRow;
|
||
sql, Cols, Val, Vals: WideString;
|
||
i: Integer;
|
||
Node: PVirtualNode;
|
||
begin
|
||
Node := Sender.FocusedNode;
|
||
Row := @DataGridResult.Rows[Node.Index];
|
||
Cols := '';
|
||
Vals := '';
|
||
for i := 0 to Length(DataGridResult.Columns) - 1 do begin
|
||
if Row.Cells[i].Modified then begin
|
||
Cols := Cols + mask(DataGridResult.Columns[i].Name) + ', ';
|
||
Val := Row.Cells[i].NewText;
|
||
case DataGridResult.Columns[i].DatatypeCat of
|
||
dtcInteger, dtcReal: Val := UnformatNumber(Val);
|
||
dtcBinary: begin
|
||
CheckHex(Copy(Val, 3), 'Invalid hexadecimal string given in field "' + DataGridResult.Columns[i].Name + '".');
|
||
if Val = '0x' then
|
||
Val := esc('');
|
||
end;
|
||
else Val := esc(Val);
|
||
end;
|
||
if Row.Cells[i].NewIsNull then Val := 'NULL';
|
||
Vals := Vals + Val + ', ';
|
||
end;
|
||
end;
|
||
if Length(Cols) = 0 then begin
|
||
// No field was manually modified, cancel the INSERT in that case
|
||
Sender.BeginUpdate;
|
||
Sender.DeleteNode(Node);
|
||
SetLength(DataGridResult.Rows, Length(DataGridResult.Rows) - 1);
|
||
Sender.EndUpdate;
|
||
DataGridHasChanges := False;
|
||
ValidateControls(Sender);
|
||
Result := True; // Important for DataGridFocusChanging to allow moving focus
|
||
end else begin
|
||
// At least one field was modified, assume this INSERT should be posted
|
||
Vals := Copy(Vals, 1, Length(Vals)-2);
|
||
Cols := Copy(Cols, 1, Length(Cols)-2);
|
||
sql := 'INSERT INTO '+mask(DataGridDB)+'.'+mask(DataGridTable)+' ('+Cols+') VALUES ('+Vals+')';
|
||
// Send INSERT query
|
||
try
|
||
Connection.Query(sql);
|
||
if Connection.RowsAffected = 0 then
|
||
MessageBox(Self.Handle, 'Server failed to insert row.', 'Error', 0);
|
||
Result := True;
|
||
Row.Loaded := false;
|
||
EnsureNodeLoaded(Sender, Node, GetWhereClause(Row, @DataGridResult.Columns));
|
||
GridFinalizeEditing(Sender);
|
||
except
|
||
on E:Exception do begin
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
Result := False;
|
||
end;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
DataGrid: compose and fire DELETE query
|
||
}
|
||
function TMainForm.GridPostDelete(Sender: TBaseVirtualTree): Boolean;
|
||
var
|
||
Node, FocusAfterDelete: PVirtualNode;
|
||
Nodes: TNodeArray;
|
||
sql: WideString;
|
||
Affected: Int64;
|
||
Selected, i, j: Integer;
|
||
msg: String;
|
||
begin
|
||
Node := Sender.GetFirstSelected;
|
||
FocusAfterDelete := nil;
|
||
sql := 'DELETE FROM '+mask(SelectedTable.Text)+' WHERE';
|
||
while Assigned(Node) do begin
|
||
EnsureChunkLoaded(Sender, Node);
|
||
sql := sql + ' (' +
|
||
GetWhereClause(@DataGridResult.Rows[Node.Index], @DataGridResult.Columns) +
|
||
') OR';
|
||
FocusAfterDelete := Node;
|
||
Node := Sender.GetNextSelected(Node);
|
||
end;
|
||
if Assigned(FocusAfterDelete) then
|
||
FocusAfterDelete := Sender.GetNext(FocusAfterDelete);
|
||
sql := Copy(sql, 1, Length(sql)-3);
|
||
|
||
try
|
||
// Send DELETE query
|
||
Connection.Query(sql);
|
||
Result := True;
|
||
except
|
||
on E:Exception do begin
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
Result := False;
|
||
end;
|
||
end;
|
||
|
||
if Result then begin
|
||
// Remove deleted row nodes out of the grid
|
||
Affected := Connection.RowsAffected;
|
||
Selected := Sender.SelectedCount;
|
||
if Affected = Selected then begin
|
||
// Fine. Number of deleted rows equals the selected node count.
|
||
// In this case, just remove the selected nodes, avoid a full reload
|
||
Sender.BeginUpdate;
|
||
Nodes := Sender.GetSortedSelection(True);
|
||
for i:=High(Nodes) downto Low(Nodes) do begin
|
||
for j := Nodes[i].Index to High(DataGridResult.Rows)-1 do begin
|
||
// Move upper rows by one so the selected row gets overwritten
|
||
DataGridResult.Rows[j] := DataGridResult.Rows[j+1];
|
||
end;
|
||
end;
|
||
SetLength(DataGridResult.Rows, Length(DataGridResult.Rows) - Selected);
|
||
Sender.DeleteSelectedNodes;
|
||
if not Assigned(FocusAfterDelete) then
|
||
FocusAfterDelete := Sender.GetLast;
|
||
if Assigned(FocusAfterDelete) then
|
||
SelectNode(Sender as TVirtualStringTree, FocusAfterDelete);
|
||
Sender.EndUpdate;
|
||
end else begin
|
||
// Should never get called as we block DELETEs on tables without a unique key
|
||
ViewData(Sender);
|
||
msg := 'Warning: Consistency problem detected.' + CRLF + CRLF
|
||
+ 'The last DELETE query affected ' + FormatNumber(Affected) + ' rows, when it should have touched '+FormatNumber(Selected)+' row(s)!'
|
||
+ CRLF + CRLF
|
||
+ 'This is most likely caused by not having a primary key in the table''s definition.';
|
||
LogSQL( msg );
|
||
MessageDlg( msg, mtWarning, [mbOK], 0);
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
{**
|
||
DataGrid: cancel INSERT or UPDATE mode, reset modified node data
|
||
}
|
||
procedure TMainForm.DataGridCancel(Sender: TObject);
|
||
var
|
||
i: Integer;
|
||
begin
|
||
case DataGridResult.Rows[DataGrid.FocusedNode.Index].State of
|
||
grsModified: GridFinalizeEditing(DataGrid);
|
||
grsInserted: begin
|
||
i := Length(DataGridResult.Rows);
|
||
DataGrid.DeleteNode(DataGrid.FocusedNode, False);
|
||
SetLength(DataGridResult.Rows, i-1);
|
||
// Focus+select last node if possible
|
||
actDataLastExecute(Sender);
|
||
end;
|
||
end;
|
||
DataGridHasChanges := False;
|
||
ValidateControls(Sender);
|
||
end;
|
||
|
||
|
||
|
||
procedure TMainForm.GridKeyDown(Sender: TObject; var Key: Word; Shift:
|
||
TShiftState);
|
||
var
|
||
g: TVirtualStringTree;
|
||
begin
|
||
g := TVirtualStringTree(Sender);
|
||
case Key of
|
||
VK_HOME: g.FocusedColumn := 0;
|
||
VK_END: g.FocusedColumn := g.Header.Columns.Count-1;
|
||
VK_RETURN: if Assigned(g.FocusedNode) then g.EditNode(g.FocusedNode, g.FocusedColumn);
|
||
VK_DOWN: if (g = DataGrid) and Assigned(g.FocusedNode) and (g.FocusedNode.Index = g.RootNodeCount-1) then
|
||
actDataInsertExecute(Sender);
|
||
end;
|
||
end;
|
||
|
||
|
||
// TODO: Version of EnsureFullWidth() that fetches all width limited columns
|
||
// for a row, and fetches 500 rows at a time, for use with GridTo{Xml,Csv,Html}.
|
||
// Would reduce number of database roundtrips; also the per-query overhead
|
||
// right now is horrendous for some reason (thinking mysqlquerythread).
|
||
function TMainForm.EnsureFullWidth(Grid: TBaseVirtualTree; Column: TColumnIndex; Node: PVirtualNode): Boolean;
|
||
var
|
||
Cell: PGridCell;
|
||
Row: PGridRow;
|
||
Col: PGridColumn;
|
||
sql: WideString;
|
||
len: Int64;
|
||
Results: TMySQLQuery;
|
||
begin
|
||
Result := True;
|
||
|
||
// Only the data grid uses delayed loading of full-width data.
|
||
if Grid <> DataGrid then Exit;
|
||
|
||
// Load entire data for field.
|
||
Col := @DataGridResult.Columns[Column];
|
||
Row := @DataGridResult.Rows[Node.Index];
|
||
Cell := @DataGridResult.Rows[Node.Index].Cells[Column];
|
||
len := Length(Cell.Text);
|
||
// Recalculate due to textual formatting of raw binary data.
|
||
if (Col.DatatypeCat = dtcBinary) and (len > 2) then len := (len - 2) div 2;
|
||
// Assume width limit in effect if data exactly at limit threshold.
|
||
if len = GridMaxData then begin
|
||
if CheckUniqueKeyClause then begin
|
||
sql :=
|
||
'SELECT ' + mask(Col.Name) +
|
||
' FROM ' + mask(SelectedTable.Text) +
|
||
' WHERE ' + GetWhereClause(Row, @DataGridResult.Columns)
|
||
;
|
||
Results := Connection.GetResults(sql);
|
||
case Col.DatatypeCat of
|
||
dtcInteger, dtcReal: Cell.Text := FormatNumber(Results.Col(0), False);
|
||
dtcBinary: Cell.Text := '0x' + BinToWideHex(Results.Col(0));
|
||
else Cell.Text := Results.Col(0);
|
||
end;
|
||
Cell.IsNull := Results.IsNull(0);
|
||
end else
|
||
Result := False;
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.DataGridEditing(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Column: TColumnIndex; var Allowed: Boolean);
|
||
begin
|
||
Allowed := True;
|
||
if DataGridResult.Rows[Node.Index].State = grsDefault then
|
||
Allowed := CheckUniqueKeyClause;
|
||
if Allowed then begin
|
||
// Move Esc shortcut from "Cancel row editing" to "Cancel cell editing"
|
||
actDataCancelChanges.ShortCut := 0;
|
||
actDataPostChanges.ShortCut := 0;
|
||
EnsureFullWidth(Sender, Column, Node);
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.DataGridEdited(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Column: TColumnIndex);
|
||
begin
|
||
// Reassign Esc to "Cancel row editing" action
|
||
if ([tsEditing, tsEditPending] * Sender.TreeStates) = [] then begin
|
||
actDataCancelChanges.ShortCut := TextToShortcut('Esc');
|
||
actDataPostChanges.ShortCut := TextToShortcut('Ctrl+Enter');
|
||
end;
|
||
end;
|
||
|
||
procedure TMainForm.DataGridEditCancelled(Sender: TBaseVirtualTree; Column:
|
||
TColumnIndex);
|
||
begin
|
||
// Reassign Esc to "Cancel row editing" action
|
||
actDataCancelChanges.ShortCut := TextToShortcut('Esc');
|
||
actDataPostChanges.ShortCut := TextToShortcut('Ctrl+Enter');
|
||
end;
|
||
|
||
procedure TMainForm.DataGridCreateEditor(Sender: TBaseVirtualTree; Node:
|
||
PVirtualNode; Column: TColumnIndex; out EditLink: IVTEditLink);
|
||
var
|
||
VT: TVirtualStringTree;
|
||
HexEditor: THexEditorLink;
|
||
DateTimeEditor: TDateTimeEditorLink;
|
||
EnumEditor: TEnumEditorLink;
|
||
SetEditor: TSetEditorLink;
|
||
InplaceEditor: TInplaceEditorLink;
|
||
TypeCat: TDatatypeCategoryIndex;
|
||
begin
|
||
VT := Sender as TVirtualStringTree;
|
||
TypeCat := DataGridResult.Columns[Column].DatatypeCat;
|
||
if TypeCat = dtcText then begin
|
||
InplaceEditor := TInplaceEditorLink.Create(VT);
|
||
InplaceEditor.DataType := DataGridResult.Columns[Column].Datatype;
|
||
InplaceEditor.MaxLength := DataGridResult.Columns[Column].MaxLength;
|
||
InplaceEditor.ButtonVisible := True;
|
||
EditLink := InplaceEditor;
|
||
end else if (TypeCat = dtcBinary) and prefEnableBinaryEditor then begin
|
||
HexEditor := THexEditorLink.Create(VT);
|
||
HexEditor.DataType := DataGridResult.Columns[Column].Datatype;
|
||
HexEditor.MaxLength := DataGridResult.Columns[Column].MaxLength;
|
||
EditLink := HexEditor;
|
||
end else if (TypeCat = dtcTemporal) and prefEnableDatetimeEditor then begin
|
||
DateTimeEditor := TDateTimeEditorLink.Create(VT);
|
||
DateTimeEditor.DataType := DataGridResult.Columns[Column].Datatype;
|
||
EditLink := DateTimeEditor;
|
||
end else if (TypeCat = dtcIntegerNamed) and prefEnableEnumEditor then begin
|
||
EnumEditor := TEnumEditorLink.Create(VT);
|
||
EnumEditor.DataType := DataGridResult.Columns[Column].Datatype;
|
||
EnumEditor.ValueList := DataGridResult.Columns[Column].ValueList;
|
||
EditLink := EnumEditor;
|
||
end else if (TypeCat = dtcSetNamed) and prefEnableSetEditor then begin
|
||
SetEditor := TSetEditorLink.Create(VT);
|
||
SetEditor.DataType := DataGridResult.Columns[Column].Datatype;
|
||
SetEditor.ValueList := DataGridResult.Columns[Column].ValueList;
|
||
EditLink := SetEditor;
|
||
end else begin
|
||
InplaceEditor := TInplaceEditorLink.Create(VT);
|
||
InplaceEditor.DataType := DataGridResult.Columns[Column].Datatype;
|
||
InplaceEditor.ButtonVisible := False;
|
||
EditLink := InplaceEditor;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.menuShowSizeColumnClick(Sender: TObject);
|
||
var
|
||
NewVal: Boolean;
|
||
begin
|
||
NewVal := not TMenuItem(Sender).Checked;
|
||
TMenuItem(Sender).Checked := newVal;
|
||
if NewVal then
|
||
DBtree.Header.Columns[1].Options := DBtree.Header.Columns[1].Options + [coVisible]
|
||
else
|
||
DBtree.Header.Columns[1].Options := DBtree.Header.Columns[1].Options - [coVisible];
|
||
OpenRegistry;
|
||
MainReg.WriteBool(REGNAME_SIZECOL_TREE, NewVal);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.AutoCalcColWidths(Tree: TVirtualStringTree; PrevLayout: TWideStringlist = nil);
|
||
var
|
||
Node: PVirtualNode;
|
||
i, j, ColTextWidth: Integer;
|
||
Rect: TRect;
|
||
Col: TVirtualTreeColumn;
|
||
begin
|
||
// Find optimal default width for columns. Needs to be done late, after the SQL
|
||
// composing to enable text width calculation based on actual table content
|
||
Tree.BeginUpdate;
|
||
try
|
||
// Weird: Fixes first time calculation always based on Tahoma/8pt font
|
||
Tree.Canvas.Font := Tree.Font;
|
||
for i := 0 to Tree.Header.Columns.Count - 1 do begin
|
||
Col := Tree.Header.Columns[i];
|
||
if not (coVisible in Col.Options) then
|
||
continue;
|
||
if (PrevLayout <> nil) and (PrevLayout.IndexOfName(Col.Text) > -1) then begin
|
||
Col.Width := MakeInt(PrevLayout.Values[Col.Text]);
|
||
continue;
|
||
end;
|
||
ColTextWidth := Tree.Canvas.TextWidth(Tree.Header.Columns[i].Text);
|
||
// Add space for sort glyph
|
||
if Col.ImageIndex > -1 then
|
||
ColTextWidth := ColTextWidth + 20;
|
||
Node := Tree.GetFirstVisible;
|
||
// Go backwards 50 nodes from focused one if tree was scrolled
|
||
j := 0;
|
||
if Assigned(Tree.FocusedNode) then begin
|
||
Node := Tree.FocusedNode;
|
||
while Assigned(Node) do begin
|
||
inc(j);
|
||
if (Node = Tree.GetFirst) or (j > 50) then
|
||
break;
|
||
Node := Tree.GetPreviousVisible(Node);
|
||
end;
|
||
end;
|
||
j := 0;
|
||
while Assigned(Node) do begin
|
||
// Note: this causes the node to load, an exception can propagate
|
||
// here if the query or connection dies.
|
||
Rect := Tree.GetDisplayRect(Node, i, True, True);
|
||
ColTextWidth := Max(ColTextWidth, Rect.Right - Rect.Left);
|
||
inc(j);
|
||
if j > 100 then break;
|
||
// GetDisplayRect may have implicitely taken the node away.
|
||
// Strange that Node keeps being assigned though, probably a timing issue.
|
||
if Tree.RootNodeCount = 0 then break;
|
||
Node := Tree.GetNextVisible(Node);
|
||
end;
|
||
// text margins and minimal extra space
|
||
ColTextWidth := ColTextWidth + Tree.TextMargin*2 + 5;
|
||
ColTextWidth := Min(ColTextWidth, prefMaxColWidth);
|
||
Col.Width := ColTextWidth;
|
||
end;
|
||
finally
|
||
Tree.EndUpdate;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DataGridColumnResize(Sender: TVTHeader;
|
||
Column: TColumnIndex);
|
||
var
|
||
col: TVirtualTreeColumn;
|
||
begin
|
||
// Avoid AVs
|
||
if Column < 0 then
|
||
Exit;
|
||
// Don't waste time storing changes while a column is automatically resized
|
||
if tsUpdating in Sender.Treeview.TreeStates then
|
||
Exit;
|
||
if PrevTableColWidths = nil then
|
||
PrevTableColWidths := TWideStringList.Create;
|
||
col := Sender.Columns[Column];
|
||
PrevTableColWidths.Values[col.Text] := inttostr(col.Width);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.GridBeforeCellPaint(Sender: TBaseVirtualTree;
|
||
TargetCanvas: TCanvas; Node: PVirtualNode; Column: TColumnIndex;
|
||
CellPaintMode: TVTCellPaintMode; CellRect: TRect; var ContentRect: TRect);
|
||
var
|
||
gr: TGridResult;
|
||
begin
|
||
if Column = -1 then
|
||
Exit;
|
||
gr := GridResult(Sender);
|
||
EnsureChunkLoaded(Sender, Node);
|
||
if Node.Index >= Cardinal(Length(gr.Rows)) then Exit;
|
||
if (Node = Sender.FocusedNode) and (Column = Sender.FocusedColumn) then begin
|
||
if not Sender.IsEditing then begin
|
||
// Editors may not cover the whole cell rectangle, so any colored area looks broken then
|
||
TargetCanvas.Brush.Color := $00FFCCCC;
|
||
TargetCanvas.FillRect(CellRect);
|
||
end;
|
||
end else if vsSelected in Node.States then begin
|
||
TargetCanvas.Brush.Color := $00EEEEEE;
|
||
TargetCanvas.FillRect(CellRect);
|
||
end else if prefEnableNullBG and gr.Rows[Node.Index].Cells[Column].IsNull then begin
|
||
TargetCanvas.Brush.Color := prefNullBG;
|
||
TargetCanvas.FillRect(CellRect);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.FillDataViewPopup;
|
||
var
|
||
i: Integer;
|
||
DataViews: TStringList;
|
||
mi: TMenuItem;
|
||
begin
|
||
// Load all view names into popupmenu
|
||
for i := popupDataView.Items.Count-1 downto 0 do begin
|
||
if popupDataView.Items[i].Caption = '-' then
|
||
break;
|
||
popupDataView.Items.Delete(i);
|
||
end;
|
||
// Unhide "Load xyz by default" item if default is set
|
||
menuViewDefault.Visible := False;
|
||
OpenRegistry;
|
||
if MainReg.OpenKey(GetRegKeyTable, False) then begin
|
||
if MainReg.ValueExists(REGNAME_DEFAULTVIEW) then begin
|
||
menuViewDefault.Caption := 'Load view "'+MainReg.ReadString(REGNAME_DEFAULTVIEW)+'" by default';
|
||
menuViewDefault.Visible := True;
|
||
end;
|
||
end;
|
||
// Add views
|
||
DataViews := TStringList.Create;
|
||
GetDataViews(DataViews);
|
||
for i := 0 to DataViews.Count - 1 do begin
|
||
mi := TMenuItem.Create(popupDataView);
|
||
mi.Caption := DataViews[i];
|
||
mi.OnClick := DataViewClick;
|
||
popupDataView.Items.Add(mi);
|
||
end;
|
||
// Highlight drop down button if views are available
|
||
if DataViews.Count = 0 then
|
||
tbtnDataView.ImageIndex := 113
|
||
else
|
||
tbtnDataView.ImageIndex := 112;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.popupDataViewPopup(Sender: TObject);
|
||
begin
|
||
// Only enable "Save view" menu if any view part is set
|
||
menuViewSave.Enabled := (FDataGridSelect.Count > 0) or
|
||
(Length(FDataGridSort)>0) or (SynMemoFilter.GetTextLen > 0);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.GetDataViews(List: TStrings);
|
||
var
|
||
i: Integer;
|
||
begin
|
||
// Load all view names into popupmenu
|
||
OpenRegistry;
|
||
if MainReg.OpenKey(GetRegKeyTable, False) then begin
|
||
MainReg.GetKeyNames(List);
|
||
for i := List.Count - 1 downto 0 do begin
|
||
if Copy(List[i], 0, Length(REGPREFIX_DATAVIEW)) <> REGPREFIX_DATAVIEW then
|
||
List.Delete(i)
|
||
else
|
||
List[i] := Copy(List[i], Length(REGPREFIX_DATAVIEW)+1, Length(List[i]));
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.menuViewSaveClick(Sender: TObject);
|
||
var
|
||
frm: TFrmDataViewSave;
|
||
begin
|
||
frm := TFrmDataViewSave.Create(Self);
|
||
if frm.ShowModal = mrOK then
|
||
FillDataViewPopup;
|
||
frm.Free;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.menuViewDefaultClick(Sender: TObject);
|
||
begin
|
||
menuViewDefault.Visible := False;
|
||
OpenRegistry;
|
||
if MainReg.OpenKey(GetRegKeyTable, False) then begin
|
||
if MainReg.ValueExists(REGNAME_DEFAULTVIEW) then
|
||
MainReg.DeleteValue(REGNAME_DEFAULTVIEW)
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DataViewClick(Sender: TObject);
|
||
begin
|
||
LoadDataView((Sender as TMenuItem).Caption);
|
||
ViewData(tbtnDataView);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.LoadDataView(ViewName: String);
|
||
var
|
||
rx: TRegExpr;
|
||
idx, i: Integer;
|
||
Col: TTableColumn;
|
||
HiddenCols: TWideStringList;
|
||
begin
|
||
OpenRegistry;
|
||
if MainReg.OpenKey(GetRegKeyTable + '\' + REGPREFIX_DATAVIEW + ViewName, False) then begin
|
||
// Columns
|
||
HiddenCols := TWideStringlist.Create;
|
||
HiddenCols.Delimiter := REGDELIM;
|
||
HiddenCols.StrictDelimiter := True;
|
||
HiddenCols.DelimitedText := Utf8Decode(MainReg.ReadString(REGNAME_HIDDENCOLUMNS));
|
||
FDataGridSelect.Clear;
|
||
for i:=0 to SelectedTableColumns.Count-1 do begin
|
||
Col := TTableColumn(SelectedTableColumns[i]);
|
||
if HiddenCols.IndexOf(Col.Name) = -1 then
|
||
FDataGridSelect.Add(Col.Name);
|
||
end;
|
||
FreeAndNil(HiddenCols);
|
||
// Filter
|
||
SynMemoFilter.Text := Utf8Decode(MainReg.ReadString(REGNAME_FILTER));
|
||
if SynMemoFilter.GetTextLen > 0 then
|
||
ToggleFilterPanel(True);
|
||
// Sort
|
||
SetLength(FDataGridSort, 0);
|
||
rx := TRegExpr.Create;
|
||
rx.Expression := '\b(\d)_(.+)\'+REGDELIM;
|
||
rx.ModifierG := False;
|
||
if rx.Exec(Utf8Decode(MainReg.ReadString(REGNAME_SORT))) then while true do begin
|
||
idx := Length(FDataGridSort);
|
||
SetLength(FDataGridSort, idx+1);
|
||
FDataGridSort[idx] := TOrderCol.Create;
|
||
FDataGridSort[idx].ColumnName := rx.Match[2];
|
||
FDataGridSort[idx].SortDirection := StrToIntDef(rx.Match[1], ORDER_ASC);
|
||
if not rx.ExecNext then
|
||
break;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
function TMainForm.GetRegKeyTable: String;
|
||
begin
|
||
// Return the slightly complex registry path to \Servers\ThisServer\curdb|curtable
|
||
Result := REGPATH + REGKEY_SESSIONS + SessionName + '\' +
|
||
Utf8Encode(ActiveDatabase) + REGDELIM + Utf8Encode(SelectedTable.Text);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.QueryGridFocusChanged(Sender: TBaseVirtualTree; Node: PVirtualNode; Column: TColumnIndex);
|
||
begin
|
||
ValidateControls(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.pnlQueryHelpersCanResize(Sender: TObject; var NewWidth,
|
||
NewHeight: Integer; var Resize: Boolean);
|
||
begin
|
||
// Ensure minimum width for query helpers while resizing
|
||
Resize := NewWidth >= 20;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.pnlQueryMemoCanResize(Sender: TObject; var NewWidth,
|
||
NewHeight: Integer; var Resize: Boolean);
|
||
begin
|
||
// Ensure visibility of query memo while resizing
|
||
Resize := NewWidth >= pnlQueryHelpers.Width + spltQueryHelpers.Width + 40;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DataGridMouseUp(Sender: TObject; Button: TMouseButton;
|
||
Shift: TShiftState; X, Y: Integer);
|
||
var
|
||
Grid: TVirtualStringTree;
|
||
Hit: THitInfo;
|
||
begin
|
||
// Detect mouse hit in grid whitespace and apply changes.
|
||
Grid := Sender as TVirtualStringTree;
|
||
if not Assigned(Grid.FocusedNode) then
|
||
Exit;
|
||
Grid.GetHitTestInfoAt(X, Y, False, Hit);
|
||
if (Hit.HitNode = nil) or (Hit.HitColumn = NoColumn) or (Hit.HitColumn = InvalidColumn) then
|
||
DataGridPostUpdateOrInsert(Grid.FocusedNode);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ListVariablesBeforePaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas);
|
||
var
|
||
i : Integer;
|
||
vt: TVirtualStringTree;
|
||
Results: TMySQLQuery;
|
||
Sel: TWideStringList;
|
||
begin
|
||
// Display server variables
|
||
vt := Sender as TVirtualStringTree;
|
||
if vt.Tag <> VTREE_NOTLOADED then
|
||
Exit;
|
||
Sel := GetVTCaptions(vt, True);
|
||
DeInitializeVTNodes(vt);
|
||
Screen.Cursor := crHourglass;
|
||
try
|
||
Results := Connection.GetResults('SHOW VARIABLES');
|
||
SetLength(VTRowDataListVariables, Results.RecordCount);
|
||
for i:=0 to Results.RecordCount-1 do begin
|
||
VTRowDataListVariables[i].ImageIndex := 25;
|
||
VTRowDataListVariables[i].Captions := TWideStringList.Create;
|
||
VTRowDataListVariables[i].Captions.Add(Results.Col(0));
|
||
VTRowDataListVariables[i].Captions.Add(Results.Col(1));
|
||
Results.Next;
|
||
end;
|
||
FreeAndNil(Results);
|
||
vt.RootNodeCount := Length(VTRowDataListVariables);
|
||
vt.SortTree(vt.Header.SortColumn, vt.Header.SortDirection);
|
||
SetVTSelection(vt, Sel);
|
||
// Apply or reset filter
|
||
editFilterVTChange(Sender);
|
||
// Display number of listed values on tab
|
||
tabVariables.Caption := 'Variables (' + IntToStr(vt.RootNodeCount) + ')';
|
||
finally
|
||
// Important to flag the tree as "loaded", otherwise OnPaint will cause an endless loop
|
||
vt.Tag := VTREE_LOADED;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ListStatusBeforePaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas);
|
||
var
|
||
i: Integer;
|
||
valcount: Int64;
|
||
tmpval: Double;
|
||
Results: TMySQLQuery;
|
||
val, avg_perhour, avg_persec: WideString;
|
||
valIsBytes, valIsNumber: Boolean;
|
||
vt: TVirtualStringTree;
|
||
Sel: TWideStringList;
|
||
begin
|
||
// Display server status key/value pairs
|
||
vt := Sender as TVirtualStringTree;
|
||
if vt.Tag <> VTREE_NOTLOADED then
|
||
Exit;
|
||
Sel := GetVTCaptions(vt, True);
|
||
DeInitializeVTNodes(vt);
|
||
Screen.Cursor := crHourglass;
|
||
try
|
||
Results := Connection.GetResults('SHOW /*!50002 GLOBAL */ STATUS');
|
||
SetLength(VTRowDataListStatus, Results.RecordCount);
|
||
for i:=0 to Results.RecordCount-1 do begin
|
||
VTRowDataListStatus[i].ImageIndex := 25;
|
||
VTRowDataListStatus[i].Captions := TWideStringList.Create;
|
||
VTRowDataListStatus[i].Captions.Add(Results.Col(0));
|
||
val := Results.Col(1);
|
||
avg_perhour := '';
|
||
avg_persec := '';
|
||
|
||
// Detect value type
|
||
valIsNumber := IntToStr(MakeInt(val)) = val;
|
||
valIsBytes := valIsNumber and (Copy(Results.Col(0), 1, 6) = 'Bytes_');
|
||
|
||
// Calculate average values ...
|
||
if valIsNumber then begin
|
||
valCount := MakeInt(val);
|
||
// ... per hour
|
||
tmpval := valCount / ( Connection.ServerUptime / 60 / 60 );
|
||
if valIsBytes then avg_perhour := FormatByteNumber( Trunc(tmpval) )
|
||
else avg_perhour := FormatNumber( tmpval, 1 );
|
||
// ... per second
|
||
tmpval := valCount / Connection.ServerUptime;
|
||
if valIsBytes then avg_persec := FormatByteNumber( Trunc(tmpval) )
|
||
else avg_persec := FormatNumber( tmpval, 1 );
|
||
end;
|
||
|
||
// Format numeric or byte values
|
||
if valIsBytes then
|
||
val := FormatByteNumber(val)
|
||
else if valIsNumber then
|
||
val := FormatNumber(val);
|
||
|
||
VTRowDataListStatus[i].Captions.Add( val );
|
||
VTRowDataListStatus[i].Captions.Add(avg_perhour);
|
||
VTRowDataListStatus[i].Captions.Add(avg_persec);
|
||
Results.Next;
|
||
end;
|
||
FreeAndNil(Results);
|
||
// Tell VirtualTree the number of nodes it will display
|
||
vt.RootNodeCount := Length(VTRowDataListStatus);
|
||
vt.SortTree(vt.Header.SortColumn, vt.Header.SortDirection);
|
||
SetVTSelection(vt, Sel);
|
||
// Apply or reset filter
|
||
editFilterVTChange(Sender);
|
||
// Display number of listed values on tab
|
||
tabStatus.Caption := 'Status (' + IntToStr(vt.RootNodeCount) + ')';
|
||
finally
|
||
vt.Tag := VTREE_LOADED;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ListProcessesBeforePaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas);
|
||
var
|
||
i, j: Integer;
|
||
Results: TMySQLQuery;
|
||
vt: TVirtualStringTree;
|
||
Sel: TWideStringList;
|
||
Text: WideString;
|
||
const
|
||
InfoLen = SIZE_KB*10;
|
||
begin
|
||
// Display client threads
|
||
vt := Sender as TVirtualStringTree;
|
||
if vt.Tag <> VTREE_NOTLOADED then
|
||
Exit;
|
||
Sel := GetVTCaptions(vt, True);
|
||
DeInitializeVTNodes(vt);
|
||
Screen.Cursor := crHourglass;
|
||
try
|
||
if Connection.InformationSchemaObjects.IndexOf('PROCESSLIST') > -1 then begin
|
||
// Minimize network traffic on newer servers by fetching only first KB of SQL query in "Info" column
|
||
Results := Connection.GetResults('SELECT '+mask('ID')+', '+mask('USER')+', '+mask('HOST')+', '+mask('DB')+', '
|
||
+ mask('COMMAND')+', '+mask('TIME')+', '+mask('STATE')+', LEFT('+mask('INFO')+', '+IntToStr(InfoLen)+') AS '+mask('Info')
|
||
+ ' FROM '+mask(DBNAME_INFORMATION_SCHEMA)+'.'+mask('PROCESSLIST'));
|
||
end else begin
|
||
// Older servers fetch the whole query length, but at least we cut them off below, so a high memory usage is just a peak
|
||
Results := Connection.GetResults('SHOW FULL PROCESSLIST');
|
||
end;
|
||
SetLength(VTRowDataListProcesses, Results.RecordCount);
|
||
for i:=0 to Results.RecordCount-1 do begin
|
||
if AnsiCompareText(Results.Col(4), 'Killed') = 0 then
|
||
VTRowDataListProcesses[i].ImageIndex := 26 // killed
|
||
else begin
|
||
if Results.Col('Info') = '' then
|
||
VTRowDataListProcesses[i].ImageIndex := 55 // idle
|
||
else
|
||
VTRowDataListProcesses[i].ImageIndex := 57 // running query
|
||
end;
|
||
VTRowDataListProcesses[i].Captions := TWideStringList.Create;
|
||
for j:=0 to Results.ColumnCount-1 do begin
|
||
Text := Results.Col(j);
|
||
if Results.ColumnNames[j] = 'Info' then
|
||
Text := sstr(Text, InfoLen);
|
||
VTRowDataListProcesses[i].Captions.Add(Text);
|
||
end;
|
||
Results.Next;
|
||
end;
|
||
FreeAndNil(Results);
|
||
vt.RootNodeCount := Length(VTRowDataListProcesses);
|
||
vt.SortTree(vt.Header.SortColumn, vt.Header.SortDirection);
|
||
SetVTSelection(vt, Sel);
|
||
// Apply or reset filter
|
||
editFilterVTChange(Sender);
|
||
// Display number of listed values on tab
|
||
tabProcessList.Caption := 'Process-List (' + IntToStr(vt.RootNodeCount) + ')';
|
||
except
|
||
on E: Exception do begin
|
||
LogSQL('Error loading process list (automatic refresh disabled): ' + e.Message);
|
||
TimerRefresh.Enabled := false;
|
||
end;
|
||
end;
|
||
vt.Tag := VTREE_LOADED;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ListCommandStatsBeforePaint(Sender: TBaseVirtualTree; TargetCanvas: TCanvas);
|
||
procedure addLVitem( idx: Integer; caption: WideString; commandCount: Int64; totalCount: Int64 );
|
||
var
|
||
tmpval : Double;
|
||
begin
|
||
VTRowDataListCommandStats[idx].ImageIndex := 25;
|
||
VTRowDataListCommandStats[idx].Captions := TWideStringList.Create;
|
||
caption := Copy( caption, 5, Length(caption) );
|
||
caption := WideStringReplace( caption, '_', ' ', [rfReplaceAll] );
|
||
VTRowDataListCommandStats[idx].Captions.Add( caption );
|
||
// Total Frequency
|
||
VTRowDataListCommandStats[idx].Captions.Add( FormatNumber( commandCount ) );
|
||
// Average per hour
|
||
tmpval := commandCount / ( Connection.ServerUptime / 60 / 60 );
|
||
VTRowDataListCommandStats[idx].Captions.Add( FormatNumber( tmpval, 1 ) );
|
||
// Average per second
|
||
tmpval := commandCount / Connection.ServerUptime;
|
||
VTRowDataListCommandStats[idx].Captions.Add( FormatNumber( tmpval, 1 ) );
|
||
// Percentage. Take care of division by zero errors and Int64's
|
||
if commandCount < 1 then
|
||
commandCount := 1;
|
||
if totalCount < 1 then
|
||
totalCount := 1;
|
||
tmpval := 100 / totalCount * commandCount;
|
||
VTRowDataListCommandStats[idx].Captions.Add( FormatNumber( tmpval, 1 ) + ' %' );
|
||
end;
|
||
|
||
var
|
||
i: Integer;
|
||
questions: Int64;
|
||
Results: TMySQLQuery;
|
||
vt: TVirtualStringTree;
|
||
Sel: TWideStringList;
|
||
begin
|
||
// Display command statistics
|
||
vt := Sender as TVirtualStringTree;
|
||
if vt.Tag <> VTREE_NOTLOADED then
|
||
Exit;
|
||
|
||
Sel := GetVTCaptions(vt, True);
|
||
DeInitializeVTNodes(vt);
|
||
Screen.Cursor := crHourglass;
|
||
try
|
||
Results := Connection.GetResults('SHOW /*!50002 GLOBAL */ STATUS LIKE ''Com\_%''' );
|
||
questions := 0;
|
||
while not Results.Eof do begin
|
||
Inc(questions, MakeInt(Results.Col(1)));
|
||
Results.Next;
|
||
end;
|
||
SetLength(VTRowDataListCommandStats, Results.RecordCount+1);
|
||
addLVitem(0, ' All commands', questions, questions );
|
||
Results.First;
|
||
for i:=1 to Results.RecordCount do begin
|
||
addLVitem(i, Results.Col(0), MakeInt(Results.Col(1)), questions );
|
||
Results.Next;
|
||
end;
|
||
FreeAndNil(Results);
|
||
// Tell VirtualTree the number of nodes it will display
|
||
vt.RootNodeCount := Length(VTRowDataListCommandStats);
|
||
vt.SortTree(vt.Header.SortColumn, vt.Header.SortDirection);
|
||
SetVTSelection(vt, Sel);
|
||
// Apply or reset filter
|
||
editFilterVTChange(Sender);
|
||
// Display number of listed values on tab
|
||
tabCommandStats.Caption := 'Command-Statistics (' + IntToStr(vt.RootNodeCount) + ')';
|
||
finally
|
||
vt.Tag := VTREE_LOADED;
|
||
Screen.Cursor := crDefault;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actCopyOrCutExecute(Sender: TObject);
|
||
var
|
||
Control: TWinControl;
|
||
Edit: TCustomEdit;
|
||
Combo: TCustomComboBox;
|
||
Grid: TVirtualStringTree;
|
||
SynMemo: TSynMemo;
|
||
Success, DoCut: Boolean;
|
||
begin
|
||
// Copy text from a focused control to clipboard
|
||
Success := False;
|
||
Control := Screen.ActiveControl;
|
||
// Do not handle Search/replace dialog
|
||
if not Control.Focused then Exit;
|
||
DoCut := Sender = actCut;
|
||
if Control is TCustomEdit then begin
|
||
Edit := TCustomEdit(Control);
|
||
if Edit.SelLength > 0 then begin
|
||
if DoCut then Edit.CutToClipboard
|
||
else Edit.CopyToClipboard;
|
||
Success := True;
|
||
end;
|
||
end else if Control is TCustomComboBox then begin
|
||
Combo := TCustomComboBox(Control);
|
||
if Combo.SelLength > 0 then begin
|
||
CopyToClipboard(Combo.SelText);
|
||
if DoCut then Combo.SelText := '';
|
||
Success := True;
|
||
end;
|
||
end else if Control is TVirtualStringTree then begin
|
||
Grid := Control as TVirtualStringTree;
|
||
if Assigned(Grid.FocusedNode) then begin
|
||
if Grid = ActiveGrid then
|
||
EnsureFullWidth(Grid, Grid.FocusedColumn, Grid.FocusedNode);
|
||
CopyToClipboard(Grid.Text[Grid.FocusedNode, Grid.FocusedColumn]);
|
||
if (Grid = ActiveGrid) and DoCut then
|
||
Grid.Text[Grid.FocusedNode, Grid.FocusedColumn] := '';
|
||
Success := True;
|
||
end;
|
||
end else if Control is TSynMemo then begin
|
||
SynMemo := Control as TSynMemo;
|
||
if SynMemo.SelAvail then begin
|
||
if DoCut then SynMemo.CutToClipboard
|
||
else SynMemo.CopyToClipboard;
|
||
Success := True;
|
||
end;
|
||
end;
|
||
if not Success then
|
||
MessageBeep(MB_ICONASTERISK);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actPasteExecute(Sender: TObject);
|
||
var
|
||
Control: TWinControl;
|
||
Edit: TCustomEdit;
|
||
Combo: TComboBox;
|
||
TNTCombo: TTNTComboBox;
|
||
Grid: TVirtualStringTree;
|
||
SynMemo: TSynMemo;
|
||
Success: Boolean;
|
||
CB: TUniClipboard;
|
||
begin
|
||
// Paste text into the focused control
|
||
Success := False;
|
||
Control := Screen.ActiveControl;
|
||
CB := TUniClipboard.Create;
|
||
// Do not handle Search/replace dialog
|
||
if not Control.Focused then Exit;
|
||
if not Clipboard.HasFormat(CF_TEXT) then begin
|
||
// Do nothing, we cannot paste a picture or so
|
||
end else if Control is TCustomEdit then begin
|
||
Edit := TCustomEdit(Control);
|
||
if not Edit.ReadOnly then begin
|
||
Edit.PasteFromClipboard;
|
||
Success := True;
|
||
end;
|
||
end else if Control is TComboBox then begin
|
||
Combo := TComboBox(Control);
|
||
if Combo.Style = csDropDown then begin
|
||
Combo.SelText := CB.AsWideString;
|
||
Success := True;
|
||
end;
|
||
end else if Control is TTNTComboBox then begin
|
||
TNTCombo := TTNTComboBox(Control);
|
||
if TNTCombo.Style = csDropDown then begin
|
||
TNTCombo.SelText := CB.AsWideString;
|
||
Success := True;
|
||
end;
|
||
end else if Control is TVirtualStringTree then begin
|
||
Grid := Control as TVirtualStringTree;
|
||
if Assigned(Grid.FocusedNode) and (Grid = ActiveGrid) then begin
|
||
Grid.Text[Grid.FocusedNode, Grid.FocusedColumn] := CB.AsWideString;
|
||
Success := True;
|
||
end;
|
||
end else if Control is TSynMemo then begin
|
||
SynMemo := TSynMemo(Control);
|
||
if not SynMemo.ReadOnly then begin
|
||
SynMemo.PasteFromClipboard;
|
||
Success := True;
|
||
end;
|
||
end;
|
||
if not Success then
|
||
MessageBeep(MB_ICONASTERISK);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actSelectAllExecute(Sender: TObject);
|
||
var
|
||
Control: TWinControl;
|
||
Grid: TVirtualStringTree;
|
||
ListBox: TTNTListBox;
|
||
Success: Boolean;
|
||
begin
|
||
// Select all items, text or whatever
|
||
Success := False;
|
||
Control := Screen.ActiveControl;
|
||
// Do not handle Search/replace dialog
|
||
if not Control.Focused then Exit;
|
||
if Control is TCustomEdit then begin
|
||
TCustomEdit(Control).SelectAll;
|
||
Success := True;
|
||
end else if Control is TVirtualStringTree then begin
|
||
Grid := TVirtualStringTree(Control);
|
||
if toMultiSelect in Grid.TreeOptions.SelectionOptions then begin
|
||
Grid.SelectAll(False);
|
||
Success := True;
|
||
end;
|
||
end else if Control is TSynMemo then begin
|
||
TSynMemo(Control).SelectAll;
|
||
Success := True;
|
||
end else if Control is TTNTListBox then begin
|
||
ListBox := TTNTListBox(Control);
|
||
if ListBox.MultiSelect then begin
|
||
ListBox.SelectAll;
|
||
Success := True;
|
||
end;
|
||
end;
|
||
if not Success then
|
||
MessageBeep(MB_ICONASTERISK);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.EnumerateRecentFilters;
|
||
var
|
||
flt: TStringList;
|
||
i: Integer;
|
||
item: TMenuItem;
|
||
rx: TRegExpr;
|
||
capt: String;
|
||
begin
|
||
// Reset menu and combobox
|
||
menuRecentFilters.Enabled := False;
|
||
for i := menuRecentFilters.Count - 1 downto 0 do
|
||
menuRecentFilters.Delete(i);
|
||
comboRecentFilters.Items.Clear;
|
||
// Enumerate recent filters from registry
|
||
if MainReg.OpenKey(GetRegKeyTable+'\'+REGNAME_FILTERS, False) then begin
|
||
flt := TStringList.Create;
|
||
rx := TRegExpr.Create;
|
||
rx.Expression := '\s+';
|
||
MainReg.GetValueNames(flt);
|
||
for i := 0 to flt.Count - 1 do begin
|
||
item := TMenuItem.Create(popupFilter);
|
||
capt := MainReg.ReadString(flt[i]);
|
||
capt := rx.Replace(capt, ' ', True);
|
||
item.Hint := capt;
|
||
item.Caption := sstr(capt, 50);
|
||
item.Tag := MakeInt(flt[i]);
|
||
item.OnClick := LoadRecentFilter;
|
||
menuRecentFilters.Add(item);
|
||
capt := Utf8Decode(capt);
|
||
comboRecentFilters.Items.Add(sstr(capt, 100));
|
||
end;
|
||
FreeAndNil(rx);
|
||
FreeAndNil(flt);
|
||
menuRecentFilters.Enabled := menuRecentFilters.Count > 0;
|
||
end;
|
||
comboRecentFilters.Visible := comboRecentFilters.Items.Count > 0;
|
||
lblRecentFilters.Visible := comboRecentFilters.Visible;
|
||
SynMemoFilter.Height := pnlFilter.Height - 3;
|
||
SynMemoFilter.Top := comboRecentFilters.Top;
|
||
if comboRecentFilters.Visible then begin
|
||
SynMemoFilter.Height := SynMemoFilter.Height - comboRecentFilters.Height;
|
||
SynMemoFilter.Top := SynMemoFilter.Top + comboRecentFilters.Height;
|
||
comboRecentFilters.ItemIndex := 0;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.LoadRecentFilter(Sender: TObject);
|
||
var
|
||
key: Integer;
|
||
begin
|
||
// Event handler for both dynamic popup menu items and filter combobox
|
||
if Sender is TMenuItem then
|
||
key := (Sender as TMenuItem).Tag
|
||
else
|
||
key := (Sender as TTNTComboBox).ItemIndex+1;
|
||
if MainReg.OpenKey(GetRegKeyTable+'\'+REGNAME_FILTERS, False) then begin
|
||
SynMemoFilter.UndoList.AddGroupBreak;
|
||
SynMemoFilter.BeginUpdate;
|
||
SynMemoFilter.SelectAll;
|
||
SynMemoFilter.SelText := Utf8Decode( MainReg.ReadString(IntToStr(key)) );
|
||
SynMemoFilter.EndUpdate;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DataGridScroll(Sender: TBaseVirtualTree; DeltaX, DeltaY: Integer);
|
||
var
|
||
query: String;
|
||
count: Int64;
|
||
begin
|
||
// If the user moves the scrollbar all the way to the bottom of the data grid,
|
||
// for example by pressing CTRL+END, jump to the bottom of table data.
|
||
if ReachedEOT then Exit;
|
||
if tsThumbTracking in Sender.TreeStates then Exit;
|
||
if Int64(- Sender.OffsetY - DeltaY) < Int64(Sender.RootNode.TotalHeight) then Exit;
|
||
|
||
// First, figure out how many rows the table contains.
|
||
ShowStatus('Counting rows...');
|
||
query := 'SELECT COUNT(*)' + DataGridCurrentFrom;
|
||
if DataGridCurrentFilter <> '' then query := query + ' WHERE ' + DataGridCurrentFilter;
|
||
try
|
||
count := MakeInt(Connection.GetVar(query));
|
||
// Work around a memory allocation bug in VirtualTree.
|
||
if count > prefMaxTotalRows then count := prefMaxTotalRows;
|
||
except
|
||
on E: Exception do begin
|
||
MessageDlg(E.Message, mtError, [mbOK], 0);
|
||
Exit;
|
||
end;
|
||
end;
|
||
ShowStatus(STATUS_MSG_READY);
|
||
|
||
// Then, adjust the data grid and data containers.
|
||
debug('mem: initializing browse rows (internal data).');
|
||
try
|
||
SetLength(DataGridResult.Rows, count);
|
||
debug('mem: initializing browse rows (grid).');
|
||
DataGrid.RootNodeCount := count;
|
||
ReachedEOT := True;
|
||
DisplayRowCountStats(count);
|
||
except
|
||
DataGrid.RootNodeCount := 0;
|
||
SetLength(DataGridResult.Rows, 0);
|
||
PageControlMain.ActivePage := tabDatabase;
|
||
raise;
|
||
end;
|
||
|
||
// Finally, jump to the last row.
|
||
Sender.ScrollIntoView(Sender.GetLast, False);
|
||
end;
|
||
|
||
|
||
function TMainForm.PlaceObjectEditor(Which: TListNodeType): TDBObjectEditor;
|
||
begin
|
||
// Place the relevant editor frame onto the editor tab, hide all others
|
||
Result := nil;
|
||
if (not (Which in [lntTable, lntCrashedTable])) and Assigned(TableEditor) then
|
||
FreeAndNil(TableEditor);
|
||
if (Which <> lntView) and Assigned(ViewEditor) then
|
||
FreeAndNil(ViewEditor);
|
||
if (not (Which in [lntProcedure, lntFunction])) and Assigned(RoutineEditor) then
|
||
FreeAndNil(RoutineEditor);
|
||
if (Which <> lntTrigger) and Assigned(TriggerEditor) then
|
||
FreeAndNil(TriggerEditor);
|
||
if Which in [lntTable, lntCrashedTable] then begin
|
||
if not Assigned(TableEditor) then
|
||
TableEditor := TfrmTableEditor.Create(tabEditor);
|
||
Result := TableEditor;
|
||
end else if Which = lntView then begin
|
||
if not Assigned(ViewEditor) then
|
||
ViewEditor := TfrmView.Create(tabEditor);
|
||
Result := ViewEditor;
|
||
end else if Which in [lntProcedure, lntFunction] then begin
|
||
if not Assigned(RoutineEditor) then
|
||
RoutineEditor := TfrmRoutineEditor.Create(tabEditor);
|
||
Result := RoutineEditor;
|
||
end else if Which = lntTrigger then begin
|
||
if not Assigned(TriggerEditor) then
|
||
TriggerEditor := TfrmTriggerEditor.Create(tabEditor);
|
||
Result := TriggerEditor;
|
||
end else
|
||
Exit;
|
||
Result.Parent := tabEditor;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SetEditorTabCaption(Editor: TDBObjectEditor; ObjName: WideString);
|
||
var
|
||
ObjType, Cap: WideString;
|
||
IconIndex: Integer;
|
||
begin
|
||
if Editor = TableEditor then begin
|
||
ObjType := 'Table';
|
||
IconIndex := ICONINDEX_TABLE;
|
||
end else if Editor = ViewEditor then begin
|
||
ObjType := 'View';
|
||
IconIndex := ICONINDEX_VIEW;
|
||
end else if Editor = RoutineEditor then begin
|
||
ObjType := 'Routine';
|
||
IconIndex := ICONINDEX_STOREDPROCEDURE;
|
||
end else if Editor = TriggerEditor then begin
|
||
ObjType := 'Trigger';
|
||
IconIndex := ICONINDEX_Trigger;
|
||
end else
|
||
Exit;
|
||
tabEditor.ImageIndex := IconIndex;
|
||
Cap := ObjType+': ';
|
||
if ObjName = '' then
|
||
Cap := Cap + '[Untitled]'
|
||
else
|
||
Cap := sstr(Cap + ObjName, 30);
|
||
SetTabCaption(tabEditor.PageIndex, Cap);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actEditObjectExecute(Sender: TObject);
|
||
var
|
||
NodeData: PVTreeData;
|
||
db: WideString;
|
||
begin
|
||
debug('actEditObjectExecute()');
|
||
if ListTables.Focused then begin
|
||
// Got here from ListTables.OnDblClick or ListTables's context menu item "Edit"
|
||
NodeData := ListTables.GetNodeData(ListTables.FocusedNode);
|
||
if (NodeData.Captions[0] <> SelectedTable.Text) or (NodeData.NodeType <> SelectedTable.NodeType) then
|
||
SelectDBObject(NodeData.Captions[0], NodeData.NodeType);
|
||
end;
|
||
|
||
case GetFocusedTreeNodeType of
|
||
lntDb: begin
|
||
if CreateDatabaseForm = nil then
|
||
CreateDatabaseForm := TCreateDatabaseForm.Create(Self);
|
||
CreateDatabaseForm.modifyDB := ActiveDatabase;
|
||
if CreateDatabaseForm.ShowModal = mrOk then begin
|
||
db := CreateDatabaseForm.editDBName.Text;
|
||
// Add new DB to database filter if it's not empty
|
||
if comboOnlyDBs.Text <> '' then begin
|
||
comboOnlyDBs.Text := comboOnlyDBs.Text + ';' + db;
|
||
comboOnlyDBs.Items.Insert(0, comboOnlyDBs.Text);
|
||
end;
|
||
FreeAndNil(AllDatabases);
|
||
// reload db nodes and switch to new one
|
||
RefreshTree(False, db);
|
||
end;
|
||
end;
|
||
|
||
lntTable, lntCrashedTable: begin
|
||
PlaceObjectEditor(SelectedTable.NodeType);
|
||
TableEditor.Init(SelectedTable.Text);
|
||
end;
|
||
|
||
lntView: begin
|
||
PlaceObjectEditor(SelectedTable.NodeType);
|
||
ViewEditor.Init(SelectedTable.Text);
|
||
end;
|
||
|
||
lntFunction, lntProcedure: begin
|
||
PlaceObjectEditor(SelectedTable.NodeType);
|
||
RoutineEditor.Init(SelectedTable.Text, SelectedTable.NodeType);
|
||
end;
|
||
|
||
lntTrigger: begin
|
||
PlaceObjectEditor(SelectedTable.NodeType);
|
||
TriggerEditor.Init(SelectedTable.Text);
|
||
end;
|
||
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.ListTablesDblClick(Sender: TObject);
|
||
var
|
||
NodeData: PVTreeData;
|
||
begin
|
||
// DoubleClick: Display editor
|
||
debug('ListTablesDblClick()');
|
||
if Assigned(ListTables.FocusedNode) then begin
|
||
NodeData := ListTables.GetNodeData(ListTables.FocusedNode);
|
||
SelectDBObject(ListTables.Text[ListTables.FocusedNode, ListTables.FocusedColumn], NodeData.NodeType);
|
||
PageControlMainChange(Sender);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actNewQueryTabExecute(Sender: TObject);
|
||
var
|
||
i: Integer;
|
||
QueryTab: TQueryTab;
|
||
begin
|
||
i := TQueryTab(QueryTabs[QueryTabs.Count-1]).Number + 1;
|
||
|
||
QueryTabs.Add(TQueryTab.Create);
|
||
QueryTab := QueryTabs[QueryTabs.Count-1] as TQueryTab;
|
||
QueryTab.Number := i;
|
||
QueryTab.GridResult := TGridResult.Create;
|
||
|
||
QueryTab.TabSheet := TTntTabSheet.Create(PageControlMain);
|
||
QueryTab.TabSheet.PageControl := PageControlMain;
|
||
QueryTab.TabSheet.ImageIndex := tabQuery.ImageIndex;
|
||
|
||
QueryTab.CloseButton := TPngSpeedButton.Create(QueryTab.TabSheet);
|
||
QueryTab.CloseButton.Parent := PageControlMain;
|
||
QueryTab.CloseButton.Width := 16;
|
||
QueryTab.CloseButton.Height := 16;
|
||
QueryTab.CloseButton.Flat := True;
|
||
QueryTab.CloseButton.PngImage := PngImageListMain.PngImages[134].PngImage;
|
||
QueryTab.CloseButton.OnMouseUp := CloseButtonOnMouseUp;
|
||
SetTabCaption(QueryTab.TabSheet.PageIndex, '');
|
||
|
||
// Dumb code which replicates all controls from tabQuery
|
||
QueryTab.pnlMemo := TPanel.Create(QueryTab.TabSheet);
|
||
QueryTab.pnlMemo.Parent := QueryTab.TabSheet;
|
||
QueryTab.pnlMemo.Tag := pnlQueryMemo.Tag;
|
||
QueryTab.pnlMemo.BevelOuter := pnlQueryMemo.BevelOuter;
|
||
QueryTab.pnlMemo.Align := pnlQueryMemo.Align;
|
||
|
||
QueryTab.Memo := TSynMemo.Create(QueryTab.pnlMemo);
|
||
QueryTab.Memo.Parent := QueryTab.pnlMemo;
|
||
QueryTab.Memo.Tag := SynMemoQuery.Tag;
|
||
QueryTab.Memo.Align := SynMemoQuery.Align;
|
||
QueryTab.Memo.Options := SynMemoQuery.Options;
|
||
QueryTab.Memo.PopupMenu := SynMemoQuery.PopupMenu;
|
||
QueryTab.Memo.TabWidth := SynMemoQuery.TabWidth;
|
||
QueryTab.Memo.RightEdge := SynMemoQuery.RightEdge;
|
||
QueryTab.Memo.WantTabs := SynMemoQuery.WantTabs;
|
||
QueryTab.Memo.Highlighter := SynMemoQuery.Highlighter;
|
||
QueryTab.Memo.SearchEngine := SynMemoQuery.SearchEngine;
|
||
QueryTab.Memo.Gutter.Assign(SynMemoQuery.Gutter);
|
||
QueryTab.Memo.Font.Assign(SynMemoQuery.Font);
|
||
QueryTab.Memo.ActiveLineColor := SynMemoQuery.ActiveLineColor;
|
||
QueryTab.Memo.OnDragDrop := SynMemoQuery.OnDragDrop;
|
||
QueryTab.Memo.OnDragOver := SynMemoQuery.OnDragOver;
|
||
QueryTab.Memo.OnDropFiles := SynMemoQuery.OnDropFiles;
|
||
QueryTab.Memo.OnStatusChange := SynMemoQuery.OnStatusChange;
|
||
SynCompletionProposal.AddEditor(QueryTab.Memo);
|
||
|
||
QueryTab.spltHelpers := TSplitter.Create(QueryTab.pnlMemo);
|
||
QueryTab.spltHelpers.Parent := QueryTab.pnlMemo;
|
||
QueryTab.spltHelpers.Tag := spltQueryHelpers.Tag;
|
||
QueryTab.spltHelpers.Align := spltQueryHelpers.Align;
|
||
QueryTab.spltHelpers.Cursor := spltQueryHelpers.Cursor;
|
||
QueryTab.spltHelpers.ResizeStyle := spltQueryHelpers.ResizeStyle;
|
||
QueryTab.spltHelpers.Width := spltQueryHelpers.Width;
|
||
|
||
QueryTab.pnlHelpers := TPanel.Create(QueryTab.pnlMemo);
|
||
QueryTab.pnlHelpers.Parent := QueryTab.pnlMemo;
|
||
QueryTab.pnlHelpers.Tag := pnlQueryHelpers.Tag;
|
||
QueryTab.pnlHelpers.BevelOuter := pnlQueryHelpers.BevelOuter;
|
||
QueryTab.pnlHelpers.Align := pnlQueryHelpers.Align;
|
||
|
||
QueryTab.lboxHelpers := TTntListBox.Create(QueryTab.pnlHelpers);
|
||
QueryTab.lboxHelpers.Parent := QueryTab.pnlHelpers;
|
||
QueryTab.lboxHelpers.Tag := lboxQueryHelpers.Tag;
|
||
QueryTab.lboxHelpers.Align := lboxQueryHelpers.Align;
|
||
QueryTab.lboxHelpers.PopupMenu := lboxQueryHelpers.PopupMenu;
|
||
QueryTab.lboxHelpers.MultiSelect := lboxQueryHelpers.MultiSelect;
|
||
QueryTab.lboxHelpers.DragMode := lboxQueryHelpers.DragMode;
|
||
QueryTab.lboxHelpers.Font.Assign(lboxQueryHelpers.Font);
|
||
QueryTab.lboxHelpers.OnClick := lboxQueryHelpers.OnClick;
|
||
QueryTab.lboxHelpers.OnDblClick := lboxQueryHelpers.OnDblClick;
|
||
|
||
QueryTab.tabsetHelpers := TTabSet.Create(QueryTab.pnlHelpers);
|
||
QueryTab.tabsetHelpers.Parent := QueryTab.pnlHelpers;
|
||
QueryTab.tabsetHelpers.Tag := tabsetQueryHelpers.Tag;
|
||
QueryTab.tabsetHelpers.Height := tabsetQueryHelpers.Height;
|
||
QueryTab.tabsetHelpers.Align := tabsetQueryHelpers.Align;
|
||
QueryTab.tabsetHelpers.Tabs := tabsetQueryHelpers.Tabs;
|
||
QueryTab.tabsetHelpers.Style := tabsetQueryHelpers.Style;
|
||
QueryTab.tabsetHelpers.Font.Assign(tabsetQueryHelpers.Font);
|
||
QueryTab.tabsetHelpers.OnChange := tabsetQueryHelpers.OnChange;
|
||
|
||
QueryTab.spltQuery := TSplitter.Create(QueryTab.TabSheet);
|
||
QueryTab.spltQuery.Parent := QueryTab.TabSheet;
|
||
QueryTab.spltQuery.Tag := spltQuery.Tag;
|
||
QueryTab.spltQuery.Align := spltQuery.Align;
|
||
QueryTab.spltQuery.Height := spltQuery.Height;
|
||
QueryTab.spltQuery.Cursor := spltQuery.Cursor;
|
||
QueryTab.spltQuery.ResizeStyle := spltQuery.ResizeStyle;
|
||
QueryTab.spltQuery.AutoSnap := spltQuery.AutoSnap;
|
||
|
||
QueryTab.LabelResultInfo := TLabel.Create(QueryTab.TabSheet);
|
||
QueryTab.LabelResultInfo.Parent := QueryTab.TabSheet;
|
||
QueryTab.LabelResultInfo.Tag := LabelResultInfo.Tag;
|
||
QueryTab.LabelResultInfo.Align := LabelResultInfo.Align;
|
||
QueryTab.LabelResultInfo.Font.Assign(LabelResultInfo.Font);
|
||
QueryTab.LabelResultInfo.Caption := '';
|
||
|
||
QueryTab.Grid := TVirtualStringTree.Create(QueryTab.TabSheet);
|
||
QueryTab.Grid.Parent := QueryTab.TabSheet;
|
||
QueryTab.Grid.Tag := QueryGrid.Tag;
|
||
QueryTab.Grid.Align := QueryGrid.Align;
|
||
QueryTab.Grid.TreeOptions := QueryGrid.TreeOptions;
|
||
QueryTab.Grid.PopupMenu := QueryGrid.PopupMenu;
|
||
QueryTab.Grid.LineStyle := QueryGrid.LineStyle;
|
||
QueryTab.Grid.Font.Assign(QueryGrid.Font);
|
||
QueryTab.Grid.Header.ParentFont := QueryGrid.Header.ParentFont;
|
||
QueryTab.Grid.WantTabs := QueryGrid.WantTabs;
|
||
QueryTab.Grid.AutoScrollDelay := QueryGrid.AutoScrollDelay;
|
||
QueryTab.Grid.OnBeforeCellPaint := QueryGrid.OnBeforeCellPaint;
|
||
QueryTab.Grid.OnFocusChanged := QueryGrid.OnFocusChanged;
|
||
QueryTab.Grid.OnGetText := QueryGrid.OnGetText;
|
||
QueryTab.Grid.OnKeyDown := QueryGrid.OnKeyDown;
|
||
QueryTab.Grid.OnPaintText := QueryGrid.OnPaintText;
|
||
FixVT(QueryTab.Grid);
|
||
SetupSynEditors;
|
||
|
||
// Set splitter positions
|
||
QueryTab.pnlMemo.Height := pnlQueryMemo.Height;
|
||
QueryTab.pnlMemo.Top := pnlQueryMemo.Top;
|
||
QueryTab.spltQuery.Top := spltQuery.Top;
|
||
QueryTab.pnlHelpers.Width := pnlQueryHelpers.Width;
|
||
|
||
// Show new tab
|
||
PageControlMain.ActivePage := QueryTab.TabSheet;
|
||
PageControlMainChange(Sender);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.panelTopDblClick(Sender: TObject);
|
||
var
|
||
aRect: TRect;
|
||
aPoint: TPoint;
|
||
begin
|
||
// Catch doubleclick on PageControlMain's underlying panel, which gets fired
|
||
// when user clicks right besides the visible tabs
|
||
aPoint := PageControlMain.ClientOrigin;
|
||
aRect := Rect(aPoint.X, aPoint.Y, aPoint.X + PageControlMain.Width, aPoint.Y + PageControlMain.Height - tabQuery.Height);
|
||
GetCursorPos(aPoint);
|
||
if PtInRect(aRect, aPoint) then
|
||
actNewQueryTab.Execute;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actCloseQueryTabExecute(Sender: TObject);
|
||
begin
|
||
// Close active query tab by main action
|
||
CloseQueryTab(PageControlMain.ActivePageIndex);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.menuCloseQueryTab(Sender: TObject);
|
||
var
|
||
aPoint: TPoint;
|
||
begin
|
||
// Close query tab by menu item
|
||
aPoint := PageControlMain.ScreenToClient(popupMainTabs.PopupPoint);
|
||
CloseQueryTab(GetMainTabAt(aPoint.X, aPoint.Y));
|
||
end;
|
||
|
||
|
||
procedure TMainForm.popupMainTabsPopup(Sender: TObject);
|
||
var
|
||
aPoint: TPoint;
|
||
PageIndex: Integer;
|
||
begin
|
||
// Detect if there is a tab under mouse position
|
||
aPoint := PageControlMain.ScreenToClient(popupMainTabs.PopupPoint);
|
||
PageIndex := GetMainTabAt(aPoint.X, aPoint.Y);
|
||
menuCloseTab.Enabled := IsQueryTab(PageIndex, False);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.CloseQueryTab(PageIndex: Integer);
|
||
var
|
||
NewPageIndex: Integer;
|
||
begin
|
||
if not IsQueryTab(PageIndex, False) then
|
||
Exit;
|
||
// Ask user if query content shall be saved to disk
|
||
if not ConfirmTabClose(PageIndex) then
|
||
Exit;
|
||
// Work around bugs in ComCtrls.TPageControl.RemovePage
|
||
NewPageIndex := PageControlMain.ActivePageIndex;
|
||
if NewPageIndex >= PageIndex then
|
||
Dec(NewPageIndex);
|
||
// Avoid excessive flicker:
|
||
LockWindowUpdate(PageControlMain.Handle);
|
||
PageControlMain.Pages[PageIndex].Free;
|
||
QueryTabs.Delete(PageIndex-tabQuery.PageIndex);
|
||
PageControlMain.ActivePageIndex := NewPageIndex;
|
||
FixQueryTabCloseButtons;
|
||
LockWindowUpdate(0);
|
||
PageControlMain.OnChange(PageControlMain);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.CloseButtonOnMouseUp(Sender: TObject; Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
|
||
var
|
||
aPoint: TPoint;
|
||
begin
|
||
// Click on "Close" button of Query tab
|
||
if Button <> mbLeft then
|
||
Exit;
|
||
aPoint := PageControlMain.ScreenToClient((Sender as TPngSpeedButton).ClientToScreen(Point(X,Y)));
|
||
CloseQueryTab(GetMainTabAt(aPoint.X, aPoint.Y));
|
||
end;
|
||
|
||
|
||
procedure TMainForm.PageControlMainMouseUp(Sender: TObject;
|
||
Button: TMouseButton; Shift: TShiftState; X, Y: Integer);
|
||
var
|
||
CurTickcount: Cardinal;
|
||
TabNumber: Integer;
|
||
begin
|
||
// Simulate doubleclick on tab to close it
|
||
CurTickcount := GetTickCount;
|
||
TabNumber := GetMainTabAt(X, Y);
|
||
if (TabNumber = FLastTabNumberOnMouseUp)
|
||
and (CurTickcount - FLastMouseUpOnPageControl <= GetDoubleClickTime) then
|
||
CloseQueryTab(TabNumber)
|
||
else begin
|
||
FLastMouseUpOnPageControl := CurTickcount;
|
||
FLastTabNumberOnMouseUp := TabNumber;
|
||
end;
|
||
end;
|
||
|
||
|
||
function TMainForm.GetMainTabAt(X, Y: Integer): Integer;
|
||
var
|
||
i: Integer;
|
||
begin
|
||
// Return page index of main tab by coordinates
|
||
Result := PageControlMain.IndexOfTabAt(X, Y);
|
||
for i:=0 to PageControlMain.PageCount-1 do begin
|
||
if (i<=Result) and (not PageControlMain.Pages[i].TabVisible) then
|
||
Inc(Result);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.FixQueryTabCloseButtons;
|
||
var
|
||
i, PageIndex, VisiblePageIndex: Integer;
|
||
Rect: TRect;
|
||
btn: TPngSpeedButton;
|
||
begin
|
||
// Fix positions of "Close" buttons on Query tabs
|
||
// Avoid AV on Startup, when Mainform.OnResize is called once or twice implicitely.
|
||
if not Assigned(btnAddTab) then
|
||
Exit;
|
||
LockWindowUpdate(PageControlMain.Handle);
|
||
for PageIndex:=tabQuery.PageIndex+1 to PageControlMain.PageCount-1 do begin
|
||
VisiblePageIndex := PageIndex;
|
||
for i:=0 to PageControlMain.PageCount-1 do begin
|
||
if (i<=VisiblePageIndex) and (not PageControlMain.Pages[i].TabVisible) then
|
||
Dec(VisiblePageIndex);
|
||
end;
|
||
Rect := PageControlMain.TabRect(VisiblePageIndex);
|
||
btn := TQueryTab(QueryTabs[PageIndex-tabQuery.PageIndex]).CloseButton;
|
||
btn.Top := Rect.Top + 2;
|
||
btn.Left := Rect.Right - 19;
|
||
end;
|
||
// Set position of "Add tab" button
|
||
VisiblePageIndex := PageControlMain.PageCount-1;
|
||
for i:=0 to PageControlMain.PageCount-1 do begin
|
||
if not PageControlMain.Pages[i].TabVisible then
|
||
Dec(VisiblePageIndex);
|
||
end;
|
||
Rect := PageControlMain.TabRect(VisiblePageIndex);
|
||
btnAddTab.Top := Rect.Top;
|
||
btnAddTab.Left := Rect.Right + 5;
|
||
|
||
LockWindowUpdate(0);
|
||
end;
|
||
|
||
|
||
function TMainForm.ActiveQueryTab: TQueryTab;
|
||
var
|
||
idx: Integer;
|
||
begin
|
||
idx := PageControlMain.ActivePageIndex-tabQuery.PageIndex;
|
||
if (idx >= 0) and (idx < QueryTabs.Count) then
|
||
Result := QueryTabs[idx] as TQueryTab
|
||
else
|
||
Result := nil;
|
||
end;
|
||
|
||
|
||
function TMainForm.ActiveQueryMemo: TSynMemo;
|
||
begin
|
||
// Return current query memo
|
||
Result := ActiveQueryTab.Memo;
|
||
end;
|
||
|
||
|
||
function TMainForm.ActiveQueryHelpers: TTntListBox;
|
||
begin
|
||
// Return current query helpers listbox
|
||
Result := ActiveQueryTab.lboxHelpers;
|
||
end;
|
||
|
||
|
||
function TMainForm.ActiveQueryTabset: TTabset;
|
||
begin
|
||
// Return current query helpers tabset
|
||
Result := ActiveQueryTab.tabsetHelpers
|
||
end;
|
||
|
||
|
||
function TMainForm.ActiveGrid: TVirtualStringTree;
|
||
begin
|
||
Result := nil;
|
||
if PageControlMain.ActivePage = tabData then Result := DataGrid
|
||
else if ActiveQueryTab <> nil then
|
||
Result := ActiveQueryTab.Grid;
|
||
end;
|
||
|
||
|
||
function TMainForm.GridResult(Grid: TBaseVirtualTree): TGridResult;
|
||
begin
|
||
// All grids (data- and query-grids) are placed directly on a TTabSheet
|
||
Result := GridResult((Grid.Parent as TTabSheet).PageIndex)
|
||
end;
|
||
|
||
|
||
function TMainForm.GridResult(PageIndex: Integer): TGridResult;
|
||
begin
|
||
// Return the grid result for "Data" or one of the "Query" tabs.
|
||
// Results are enumerated like the tabs on which they get displayed, starting at tabData
|
||
Dec(PageIndex, tabQuery.PageIndex);
|
||
if PageIndex < 0 then
|
||
Result := DataGridResult
|
||
else if PageIndex < QueryTabs.Count then
|
||
Result := TQueryTab(QueryTabs[PageIndex]).GridResult
|
||
else
|
||
Result := nil;
|
||
end;
|
||
|
||
|
||
function TMainForm.QueryTabActive: Boolean;
|
||
begin
|
||
// Find out if the active main tab is a query tab
|
||
Result := IsQueryTab(PageControlMain.ActivePageIndex, True);
|
||
end;
|
||
|
||
function TMainForm.IsQueryTab(PageIndex: Integer; IncludeFixed: Boolean): Boolean;
|
||
var
|
||
Min: Integer;
|
||
begin
|
||
// Find out if the given main tab is a query tab
|
||
Min := tabQuery.PageIndex+1;
|
||
if IncludeFixed then Dec(Min);
|
||
Result := PageIndex >= Min;
|
||
end;
|
||
|
||
procedure TMainForm.SetWindowCaption;
|
||
var
|
||
Cap: String;
|
||
begin
|
||
// Set window caption and taskbar text
|
||
Cap := SessionName;
|
||
if WindowNumber <> 0 then
|
||
Cap := Cap + Format( ' (%d)', [WindowNumber] );
|
||
if ActiveDatabase <> '' then
|
||
Cap := Cap + ' /' + ActiveDatabase;
|
||
if SelectedTable.Text <> '' then
|
||
Cap := Cap + '/' + SelectedTable.Text;
|
||
Cap := Cap + ' - ' + APPNAME + ' ' + FullAppVersion;
|
||
Caption := Cap;
|
||
Application.Title := Cap;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.OnMessageHandler(var Msg: TMsg; var Handled: Boolean);
|
||
begin
|
||
// Clicks on system window menu get handled here
|
||
if Msg.message = WM_SYSCOMMAND then begin
|
||
Handled := True;
|
||
case Msg.wParam of
|
||
MSG_UPDATECHECK: Mainform.actUpdateCheck.Execute;
|
||
MSG_ABOUT: Mainform.actAboutBox.Execute;
|
||
else Handled := False;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.SetTabCaption(PageIndex: Integer; Text: WideString);
|
||
begin
|
||
// Special case if passed text is empty: Reset query tab caption to "Query #123"
|
||
if (PageIndex = tabQuery.PageIndex) and (Text = '') then
|
||
Text := 'Query';
|
||
if IsQueryTab(PageIndex, False) then begin
|
||
if Text = '' then
|
||
Text := 'Query #'+IntToStr(PageIndex-tabQuery.PageIndex);
|
||
// Leave space for close button on closable query tabs
|
||
Text := Text + ' ';
|
||
end;
|
||
TTntTabSheet(PageControlMain.Pages[PageIndex]).Caption := Text;
|
||
FixQueryTabCloseButtons;
|
||
end;
|
||
|
||
|
||
function TMainForm.ConfirmTabClose(PageIndex: Integer): Boolean;
|
||
var
|
||
msg: String;
|
||
Tab: TQueryTab;
|
||
begin
|
||
Tab := QueryTabs[PageIndex-tabQuery.PageIndex] as TQueryTab;
|
||
if not Tab.Memo.Modified then
|
||
Result := True
|
||
else begin
|
||
// Unhide tabsheet so the user sees the memo content
|
||
Tab.TabSheet.PageControl.ActivePage := Tab.TabSheet;
|
||
if Tab.MemoFilename <> '' then
|
||
msg := 'Save changes to file '+CRLF+CRLF+Tab.MemoFilename+' ?'
|
||
else
|
||
msg := 'Save content of tab "'+Trim(Tab.TabSheet.Caption)+'" ?';
|
||
case MessageDlg(msg, mtConfirmation, [mbYes, mbNo, mbCancel], 0) of
|
||
mrNo: Result := True;
|
||
mrYes: begin
|
||
if Tab.MemoFilename <> '' then
|
||
SaveQueryMemo(Tab, Tab.MemoFilename, False)
|
||
else if SaveDialogSQLFile.Execute then
|
||
SaveQueryMemo(Tab, SaveDialogSQLFile.FileName, False);
|
||
// The save dialog can be cancelled.
|
||
Result := not Tab.Memo.Modified;
|
||
end;
|
||
else Result := False;
|
||
end;
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.comboOnlyDBsChange(Sender: TObject);
|
||
begin
|
||
// Immediately apply database filter
|
||
RefreshTree(False);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.comboOnlyDBsExit(Sender: TObject);
|
||
var
|
||
i, idx: Integer;
|
||
FilterText: WideString;
|
||
begin
|
||
// Add (move) custom filter text to (in) drop down history, if not empty
|
||
FilterText := comboOnlyDBs.Text;
|
||
idx := -1;
|
||
for i:=0 to comboOnlyDBs.Items.Count-1 do begin
|
||
if comboOnlyDBs.Items[i] = FilterText then begin
|
||
idx := i;
|
||
break;
|
||
end;
|
||
end;
|
||
if idx > -1 then
|
||
comboOnlyDBs.Items.Move(idx, 0)
|
||
else
|
||
comboOnlyDBs.Items.Insert(0, FilterText);
|
||
comboOnlyDBs.Text := FilterText;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.comboOnlyDBsDragOver(Sender, Source: TObject; X, Y: Integer; State: TDragState;
|
||
var Accept: Boolean);
|
||
begin
|
||
// DBtree dragging node over DB filter dropdown
|
||
Accept := (Source = DBtree) and (DBtree.GetNodeLevel(DBtree.FocusedNode) = 1);
|
||
end;
|
||
|
||
|
||
procedure TMainForm.comboOnlyDBsDragDrop(Sender, Source: TObject; X, Y: Integer);
|
||
var
|
||
dbs: TWideStringList;
|
||
newdb: WideString;
|
||
begin
|
||
// DBtree node dropped on DB filter dropdown
|
||
dbs := Explode(';', comboOnlyDBs.Text);
|
||
newdb := DBtree.Text[DBtree.FocusedNode, DBtree.FocusedColumn];
|
||
if dbs.IndexOf(newdb) = -1 then begin
|
||
if (comboOnlyDBs.Text <> '') and (comboOnlyDBs.Text[Length(comboOnlyDBs.Text)-1] <> ';') then
|
||
comboOnlyDBs.Text := comboOnlyDBs.Text + ';';
|
||
comboOnlyDBs.Text := comboOnlyDBs.Text + newdb;
|
||
comboOnlyDBs.Items.Insert(0, comboOnlyDBs.Text);
|
||
comboOnlyDBs.OnChange(Sender);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.comboOnlyDBsKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);
|
||
var
|
||
i: Integer;
|
||
begin
|
||
// Pressing Delete key while filters are dropped down, deletes the filter from the list
|
||
i := comboOnlyDBs.ItemIndex;
|
||
if comboOnlyDBs.DroppedDown and (Key=VK_DELETE) and (i > -1) then begin
|
||
Key := 0;
|
||
comboOnlyDBs.Items.Delete(i);
|
||
if comboOnlyDBs.Items.Count > i then
|
||
comboOnlyDBs.ItemIndex := i
|
||
else
|
||
comboOnlyDBs.ItemIndex := i-1;
|
||
comboOnlyDBs.OnChange(Sender);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.actFilterPanelExecute(Sender: TObject);
|
||
var
|
||
MakeVisible: Boolean;
|
||
begin
|
||
// (De-)activate or focus filter panel
|
||
MakeVisible := Sender <> btnCloseFilterPanel;
|
||
pnlFilterVT.Visible := MakeVisible;
|
||
pnlFilterVT.Tag := Integer(MakeVisible);
|
||
// On startup, we cannot SetFocus, throws exceptons. Call with nil in that special case - see FormCreate
|
||
if Assigned(Sender) and MakeVisible then
|
||
editFilterVT.SetFocus;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.UpdateFilterPanel(Sender: TObject);
|
||
var
|
||
tab: TTabSheet;
|
||
f: WideString;
|
||
FilterPanelVisible: Boolean;
|
||
begin
|
||
// Called when active tab changes
|
||
pnlFilterVT.Enabled := PageControlMain.ActivePage <> tabEditor;
|
||
lblFilterVT.Enabled := pnlFilterVT.Enabled;
|
||
editFilterVT.Enabled := pnlFilterVT.Enabled;
|
||
lblFilterVTInfo.Enabled := pnlFilterVT.Enabled;
|
||
if pnlFilterVT.Enabled then
|
||
editFilterVT.Color := clWindow
|
||
else
|
||
editFilterVT.Color := clBtnFace;
|
||
|
||
tab := PageControlMain.ActivePage;
|
||
if tab = tabHost then
|
||
tab := PageControlHost.ActivePage;
|
||
FilterPanelVisible := pnlFilterVT.Tag = Integer(True);
|
||
if not FilterPanelVisible then begin
|
||
if editFilterVT.Text <> '' then
|
||
editFilterVT.Text := ''
|
||
else
|
||
editFilterVTChange(Sender);
|
||
end else begin
|
||
if tab = tabVariables then f := FilterTextVariables
|
||
else if tab = tabStatus then f := FilterTextStatus
|
||
else if tab = tabProcesslist then f := FilterTextProcessList
|
||
else if tab = tabCommandStats then f := FilterTextCommandStats
|
||
else if tab = tabDatabase then f := FilterTextDatabase
|
||
else if tab = tabData then f := FilterTextData
|
||
else if QueryTabActive and (tab = ActiveQueryTab.TabSheet) then f := ActiveQueryTab.FilterText;
|
||
if editFilterVT.Text <> f then
|
||
editFilterVT.Text := f
|
||
end;
|
||
|
||
end;
|
||
|
||
|
||
procedure TMainform.SetupSynEditors;
|
||
var
|
||
i, j: Integer;
|
||
Editors: TObjectList;
|
||
BaseEditor, Editor: TSynMemo;
|
||
FontName: String;
|
||
FontSize, TabWidth: Integer;
|
||
KeyStroke: TSynEditKeyStroke;
|
||
ActiveLineColor: TColor;
|
||
Attri: TSynHighlighterAttributes;
|
||
begin
|
||
// Restore font, highlighter and shortcuts for each instantiated TSynMemo
|
||
Editors := TObjectList.Create;
|
||
BaseEditor := SynMemoQuery;
|
||
for i:=0 to QueryTabs.Count-1 do
|
||
Editors.Add(TQueryTab(QueryTabs[i]).Memo);
|
||
Editors.Add(SynMemoFilter);
|
||
Editors.Add(SynMemoProcessView);
|
||
Editors.Add(SynMemoSQLLog);
|
||
if Assigned(TableEditor) then begin
|
||
Editors.Add(TableEditor.SynMemoCREATEcode);
|
||
Editors.Add(TableEditor.SynMemoALTERcode);
|
||
end;
|
||
if Assigned(ViewEditor) then
|
||
Editors.Add(ViewEditor.SynMemoSelect);
|
||
if Assigned(RoutineEditor) then
|
||
Editors.Add(RoutineEditor.SynMemoBody);
|
||
if Assigned(TriggerEditor) then
|
||
Editors.Add(TriggerEditor.SynMemoStatement);
|
||
if Assigned(CreateDatabaseForm) then
|
||
Editors.Add(CreateDatabaseForm.SynMemoPreview);
|
||
if Assigned(OptionsForm) then
|
||
Editors.Add(OptionsForm.SynMemoSQLSample);
|
||
if Assigned(SQLHelpForm) then begin
|
||
Editors.Add(SQLHelpForm.memoDescription);
|
||
Editors.Add(SQLHelpForm.MemoExample);
|
||
end;
|
||
|
||
FontName := GetRegValue(REGNAME_FONTNAME, DEFAULT_FONTNAME);
|
||
FontSize := GetRegValue(REGNAME_FONTSIZE, DEFAULT_FONTSIZE);
|
||
TabWidth := GetRegValue(REGNAME_TABWIDTH, DEFAULT_TABWIDTH);
|
||
ActiveLineColor := StringToColor(GetRegValue(REGNAME_SQLCOLACTIVELINE, ColorToString(DEFAULT_SQLCOLACTIVELINE)));
|
||
for i:=0 to Editors.Count-1 do begin
|
||
Editor := Editors[i] as TSynMemo;
|
||
Editor.Font.Name := FontName;
|
||
Editor.Font.Size := FontSize;
|
||
Editor.Gutter.Font.Name := FontName;
|
||
Editor.Gutter.Font.Size := FontSize;
|
||
Editor.Gutter.AutoSize := BaseEditor.Gutter.AutoSize;
|
||
Editor.Gutter.DigitCount := BaseEditor.Gutter.DigitCount;
|
||
Editor.Gutter.LeftOffset := BaseEditor.Gutter.LeftOffset;
|
||
Editor.Gutter.RightOffset := BaseEditor.Gutter.RightOffset;
|
||
Editor.Gutter.ShowLineNumbers := BaseEditor.Gutter.ShowLineNumbers;
|
||
Editor.ActiveLineColor := ActiveLineColor;
|
||
Editor.Options := BaseEditor.Options;
|
||
Editor.TabWidth := TabWidth;
|
||
Editor.MaxScrollWidth := BaseEditor.MaxScrollWidth;
|
||
Editor.WantTabs := BaseEditor.WantTabs;
|
||
// Shortcuts
|
||
if Editor = BaseEditor then for j:=0 to Editor.Keystrokes.Count-1 do begin
|
||
KeyStroke := Editor.Keystrokes[j];
|
||
Keystroke.ShortCut := GetRegValue(REGPREFIX_SHORTCUT1+EditorCommandToCodeString(Keystroke.Command), KeyStroke.ShortCut);
|
||
Keystroke.ShortCut2 := GetRegValue(REGPREFIX_SHORTCUT2+EditorCommandToCodeString(Keystroke.Command), KeyStroke.ShortCut2);
|
||
end else
|
||
Editor.Keystrokes := BaseEditor.KeyStrokes;
|
||
end;
|
||
// Highlighting
|
||
for i:=0 to SynSQLSyn1.AttrCount - 1 do begin
|
||
Attri := SynSQLSyn1.Attribute[i];
|
||
Attri.Foreground := GetRegValue(REGPREFIX_SQLATTRI+Attri.FriendlyName+REGPOSTFIX_SQL_FG, Attri.Foreground);
|
||
Attri.Background := GetRegValue(REGPREFIX_SQLATTRI+Attri.FriendlyName+REGPOSTFIX_SQL_BG, Attri.Background);
|
||
Attri.IntegerStyle := GetRegValue(REGPREFIX_SQLATTRI+Attri.FriendlyName+REGPOSTFIX_SQL_STYLE, Attri.IntegerStyle);
|
||
if Assigned(OptionsForm) then
|
||
OptionsForm.SynSQLSynSQLSample.Attribute[i].AssignColorAndStyle(Attri);
|
||
end;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.PageControlMainContextPopup(Sender: TObject; MousePos: TPoint; var Handled: Boolean);
|
||
var
|
||
ClickPoint: TPoint;
|
||
TabsHeight: Integer;
|
||
begin
|
||
// Activate tab popup menu only when clicked on tabs area.
|
||
TabsHeight := PageControlMain.TabHeight * PageControlMain.RowCount;
|
||
if MousePos.Y <= TabsHeight then begin
|
||
ClickPoint := PageControlMain.ClientToScreen(MousePos);
|
||
popupMainTabs.Popup(ClickPoint.X, ClickPoint.Y);
|
||
Handled := True;
|
||
end else
|
||
Handled := False;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.menuQueryHelpersGenerateStatementClick(Sender: TObject);
|
||
var
|
||
MenuItem: TMenuItem;
|
||
sql, Val, WhereClause: WideString;
|
||
i, idx: Integer;
|
||
ColumnNames, DefaultValues, KeyColumns: TWideStringlist;
|
||
Column: TTableColumn;
|
||
begin
|
||
// Generate INSERT, UPDATE or DELETE query using selected columns
|
||
MenuItem := (Sender as TMenuItem);
|
||
ColumnNames := TWideStringlist.Create;
|
||
DefaultValues := TWideStringlist.Create;
|
||
for i:=0 to ActiveQueryHelpers.Items.Count-1 do begin
|
||
if ActiveQueryHelpers.Selected[i] then begin
|
||
ColumnNames.Add(mask(ActiveQueryHelpers.Items[i]));
|
||
Column := SelectedTableColumns[i] as TTableColumn;
|
||
case Column.DataType.Category of
|
||
dtcInteger, dtcReal: Val := '0';
|
||
dtcText, dtcIntegerNamed, dtcSetNamed: begin
|
||
Val := esc(Column.DefaultText);
|
||
if Column.DefaultType in [cdtNull, cdtNullUpdateTS] then
|
||
Val := esc('')
|
||
else
|
||
Val := esc(Column.DefaultText);
|
||
end;
|
||
dtcTemporal: Val := 'NOW()';
|
||
else Val := 'NULL';
|
||
end;
|
||
if Column.DefaultType = cdtAutoInc then
|
||
Val := 'NULL';
|
||
DefaultValues.Add(Val);
|
||
end;
|
||
end;
|
||
KeyColumns := GetKeyColumns;
|
||
if KeyColumns.Count > 0 then begin
|
||
WhereClause := '';
|
||
for i:=0 to KeyColumns.Count-1 do begin
|
||
idx := ColumnNames.IndexOf(mask(KeyColumns[i]));
|
||
if idx > -1 then
|
||
WhereClause := WhereClause + mask(KeyColumns[i])+'='+DefaultValues[idx] + ' AND ';
|
||
end;
|
||
Delete(WhereClause, Length(sql)-3, 4);
|
||
end else
|
||
WhereClause := '??? # No primary or unique key available!';
|
||
|
||
if MenuItem = menuQueryHelpersGenerateInsert then begin
|
||
sql := 'INSERT INTO '+mask(SelectedTable.Text)+CRLF+
|
||
#9'('+ImplodeStr(', ', ColumnNames)+')'+CRLF+
|
||
#9'VALUES ('+ImplodeStr(', ', DefaultValues)+')';
|
||
|
||
end else if MenuItem = menuQueryHelpersGenerateUpdate then begin
|
||
sql := 'UPDATE '+mask(SelectedTable.Text)+CRLF+#9'SET'+CRLF;
|
||
if ColumnNames.Count > 0 then begin
|
||
for i:=0 to ColumnNames.Count-1 do begin
|
||
sql := sql + #9#9 + ColumnNames[i] + '=' + DefaultValues[i] + ',' + CRLF;
|
||
end;
|
||
Delete(sql, Length(sql)-2, 1);
|
||
end else
|
||
sql := sql + #9#9'??? # No column names selected!'+CRLF;
|
||
sql := sql + #9'WHERE ' + WhereClause;
|
||
|
||
end else if MenuItem = menuQueryHelpersGenerateDelete then begin
|
||
sql := 'DELETE FROM '+mask(SelectedTable.Text)+' WHERE ' + WhereClause;
|
||
|
||
end;
|
||
ActiveQueryMemo.UndoList.AddGroupBreak;
|
||
ActiveQueryMemo.SelText := sql;
|
||
end;
|
||
|
||
|
||
procedure TMainForm.DBtreeChange(Sender: TBaseVirtualTree; Node: PVirtualNode);
|
||
var
|
||
VT: TVirtualStringTree;
|
||
begin
|
||
// Resize "Size" column in dbtree to hold widest possible byte numbers without cutting text
|
||
VT := Sender as TVirtualStringTree;
|
||
if coVisible in VT.Header.Columns[1].Options then
|
||
VT.Header.Columns[1].Width := TextWidth(VT.Canvas, FormatByteNumber(SIZE_MB-1))+VT.TextMargin*2;
|
||
end;
|
||
|
||
|
||
end.
|
||
|