mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-11 01:43:50 +02:00
54 lines
1.7 KiB
ObjectPascal
54 lines
1.7 KiB
ObjectPascal
unit SqlDbStrConst;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
resourcestring
|
|
|
|
lrsGeneratesqlstatements = 'Edit/Generate SQL statements';
|
|
lrsSQLDataSetOpen = 'Dataset not open: %s';
|
|
lrsSQLGenSelect = 'You must select fields to be updated and key fields.';
|
|
|
|
SSQLScript = 'SQL Script file';
|
|
SSQLScriptDesc = 'Create a new SQL Script file';
|
|
SSQLSource = 'Insert your SQL statements here';
|
|
SEditSQL = 'Edit SQL ...';
|
|
SGenerateUpdateSQL = 'Generate update SQL';
|
|
SEditUpdateSQL = 'Edit all SQL statements';
|
|
SErrConnectionNotAssigned = 'Database not assigned. Assign Database first.';
|
|
|
|
SFireBirdDatabases = 'Firebird databases';
|
|
SSQLite3Databases = 'SQLite3 databases';
|
|
SInterbaseDatabases = 'Interbase databases';
|
|
SSQLStringsPropertyEditorDlgTitle = 'Editing %s';
|
|
|
|
sLibraries = 'Shared libraries';
|
|
|
|
SResultTabCaption = 'Results';
|
|
SSQLTabCaption = 'SQL Code';
|
|
SMetaTabCaption = 'Metadata';
|
|
SMetaTables = 'Tables';
|
|
SMetaColumns = 'Columns';
|
|
SMetaProcedures = 'Procedures';
|
|
SMetaPleaseSpecifyATableInTheObjectField = 'Please specify a table in the '
|
|
+'object field.';
|
|
SMetaSysTables = 'SysTables';
|
|
|
|
SLoadSQLCodeHint = 'Load SQL code ...';
|
|
SSaveSQLCodeHint = 'Save SQL code ...';
|
|
SRunSQLCodeHint = 'Run SQL code';
|
|
SQuickCheckOfSQLSyntaxHint = 'Quick check of SQL syntax';
|
|
|
|
// SQL Parser results:
|
|
// Note: sql parser is not quite exact, so indicate it's not completely sure
|
|
SSQLOK = 'Quick SQL check OK';
|
|
SQLSyntaxOK = 'No syntax errors in SQL statement found.';
|
|
SSQLError = 'Probable SQL error';
|
|
SSQLSyntaxError = 'Probable syntax error in SQL statement:'+slineBreak+'%s';
|
|
|
|
implementation
|
|
|
|
end.
|
|
|