SQL export: Add popup menu action for copying mysqldump command line

This commit is contained in:
Ansgar Becker
2021-06-25 08:56:18 +02:00
parent ee69a049fd
commit ed28bcbf6f
11 changed files with 158 additions and 55 deletions

11
source/generic_types.pas Normal file
View File

@ -0,0 +1,11 @@
unit generic_types;
interface
type
TThreeStateBoolean = (nbUnset, nbFalse, nbTrue);
implementation
end.