mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-05-17 06:02:44 +02:00
28 lines
804 B
ObjectPascal
28 lines
804 B
ObjectPascal
unit reslazsqldbrest;
|
|
|
|
{$mode objfpc}{$H+}
|
|
|
|
interface
|
|
|
|
uses
|
|
Classes, SysUtils;
|
|
|
|
Resourcestring
|
|
SSQLDBRESTModule = 'SQLDB REST Bridge Module';
|
|
SSQLDBRESTModuleDesc = 'SQLDB REST Bridge: A Web datamodule for producing strict HTML.';
|
|
SExposeAConnection = 'Expose a connection';
|
|
SSaveSettingsToIni = 'Save settings to INI file';
|
|
SLoadSettingsFromIni = 'Load settings from INI file';
|
|
SJSONFilesFilter = 'JSON Files|*.json|All files|%s';
|
|
SSaveSchemaToJSONFile = 'Save schema to JSON file';
|
|
SLoadSchemaFromJSONFile = 'Load schema from JSON file';
|
|
SLoadSchemaFromConnection = 'Load schema from connection';
|
|
SErrNoConnectionsFound = 'No connections found on form/frame or datamodule';
|
|
SAddedNTables = 'Added %d tables as resources';
|
|
SClearSchema = 'Clear schema';
|
|
|
|
implementation
|
|
|
|
end.
|
|
|