1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
unit sqldbschemaedittools;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, sqldbrestschema, sqldbrestbridge, sqldb, controls, forms;
Const
// Index in imagelist.
idxConnection = 0;
idxConnectionAdd = 1;
idxConnectionDelete = 2;
idxConnectionEdit = 3;
idxConnectionExpose = 4;
idxConnectionRefresh = 5;
idxTable = 6;
idxTableAdd = 7;
idxTableDelete = 8;
idxTableEdit = 9;
idxField = 10;
idxFields = 11;
idxFieldAdd = 12;
idxFieldDelete = 13;
idxFieldEdit = 14;
idxKeyField = 15;
idxConnectionsHide = 16;
idxConnectionsShow = 17;
idxTableInfo = 18;
Type
TOnGetSQLConnection = Procedure (Sender : TObject; aConnName : String; Out aConn : TSQLConnection) of object;
{ TBaseEditFrame }
TBaseEditFrame = Class(TFrame)
private
FConnections: TSQLDBRestConnectionList;
FFrameData: TObject;
FMinFieldOptions: TRestFieldOptions;
Procedure DoSetFrameData(aData : TObject);
Protected
Procedure SetFrameData(aData : TObject); virtual; abstract;
Function CanGetSQLConnection : Boolean;
Function GetSQLConnection(Const aName : String) : TSQLConnection;
Function ExecuteSelect(const aConnection : String; aSQL : String) : TSQLQuery;
procedure SetConnections(AValue: TSQLDBRestConnectionList); virtual;
Public
Function Modified : Boolean; virtual; abstract;
Procedure SaveData; virtual; abstract;
Function FrameCaption : String; virtual; abstract;
// Must be set !
Property FrameData : TObject Read FFrameData Write DoSetFrameData;
Property Connections : TSQLDBRestConnectionList Read FConnections Write SetConnections;
Property MinFieldOptions : TRestFieldOptions Read FMinFieldOptions Write FMinFieldOptions;
end;
{ TStringsDragObject }
TStringsDragObject = Class(TDragObjectEx)
private
FItems: Tstrings; // to keep the items in.
procedure SetItems(const AValue: Tstrings);
Public
Constructor Create(AControl : TControl); override;
Destructor Destroy; override;
// Objects contain TMySQLDBRestConnection instance
Property Items : TStrings Read FItems Write SetItems;
end;
TMySQLDBRestResource = class(TSQLDBRestResource)
end;
{ TMySQLDBRestSchema }
TMySQLDBRestSchema = Class(TSQLDBRestSchema)
Protected
Function CreateResourceList: TSQLDBRestResourceList; override;
end;
{ TMySQLDBRestConnection }
TMySQLDBRestConnection = Class(TSQLDBRestConnection)
private
FMyConnection: TSQLConnection;
FMyTransaction : TSQLTransaction;
function getMyConnection: TSQLConnection;
Public
Destructor Destroy; override;
Procedure CreateConnection;
Property MyConnection : TSQLConnection read getMyConnection Write FMyConnection;
end;
{$r *.lfm}
Resourcestring
SSchema = 'Schema';
SFields = 'Fields';
SField = 'Field';
SResource = 'Resource';
SEdit = 'Edit';
SPropTableName = 'Table name: %s';
SPropConnection = 'Connection: %s';
SErrNoConnection = 'Cannot execute SQL: no connection available';
SSQLValidatesOK = 'SQL Statement validates OK!';
SNameForResource = 'Give a name for the new resource';
SNewResource = 'New resource';
SNameForField = 'Give a name for the new field for resource %s';
SNewField = 'New field';
SErrDuplicateResource = 'Duplicate resource name: %s';
SErrDuplicateField = 'Duplicate field name: %s';
SDeleteResourceCaption = 'Delete resource';
SDeleteResourceMsg = 'Delete resource %s ?%sThis action cannot be undone';
SDeleteFieldCaption = 'Delete Field';
SDeleteFieldMsg = 'Delete field %s from resource %s ?%sThis action cannot be undone';
SYesDelete = 'Yes, delete';
SNoDoNotDelete = 'No, do not delete';
SUnknownObject = 'Unknown';
SEditObject = '%s %s';
SSelectResource = 'Select a resource';
SResetFields = 'Reset fields';
SResetFieldsPrompt = 'There are already fields defined for this resource. %sThis action will remove the existing fields. %sAre '
+'you sure you want to reset the field list ?';
SYesResetFields = 'Reset fields';
SDoNotResetFields = 'Do not reset fields';
STableNameChanged = 'The table name changed, and a default SQL statement is used.%sDo you want to regenerate the field list '
+'based on the current table name ?';
SEditObjectFields = 'Fields of resource %s';
SErrConnectingTo = 'Error connecting to connection %s : %s';
SErrShowingTablesConnectingTo = 'Error connecting to connection %s trying to show the table list: %s';
implementation
{ TBaseEditFrame }
procedure TBaseEditFrame.SetConnections(AValue: TSQLDBRestConnectionList);
begin
if FConnections=AValue then Exit;
FConnections:=AValue;
end;
procedure TBaseEditFrame.DoSetFrameData(aData: TObject);
begin
FFrameData:=aData;
SetFrameData(FFrameData);
end;
function TBaseEditFrame.CanGetSQLConnection: Boolean;
begin
Result:=Assigned(FConnections)
end;
function TBaseEditFrame.GetSQLConnection(const aName: String): TSQLConnection;
Var
C : TSQLDBRestConnection;
begin
Result:=nil;
if Not CanGetSQLConnection then
exit;
if (aName<>'') then
C:=Connections.FindConnection(aName)
else if (Connections.Count=1) then
C:=Connections[0];
if C<>Nil then
begin
Result:=C.SingleConnection;
if Result=Nil then
begin
Result:=TSQLConnector.Create(Self.Owner);
Result.Transaction:=TSQLTransaction.Create(Self.Owner);
Result.Transaction.DataBase:=Result;
C.ConfigConnection(Result);
C.SingleConnection:=Result;
end;
end;
end;
function TBaseEditFrame.ExecuteSelect(const aConnection: String; aSQL: String): TSQLQuery;
Var
C : TSQLConnection;
begin
C:=GetSQLConnection(aConnection);
if C=Nil then
Raise ESQLDatabaseError.Create(SErrNoConnection);
Result:=TSQLQuery.Create(Self);
try
Result.SQLConnection:=C;
if Result.Transaction=Nil then
begin
Result.Transaction:=TSQLTransaction.Create(C);
Result.Transaction.DataBase:=C;
end;
Result.SQL.Text:=aSQL;
Result.PacketRecords:=1;
Result.ParseSQL:=True;
Result.UniDirectional:=True;
Result.Open;
except
Result.Free;
Raise;
end;
end;
{ TStringsDragObject }
procedure TStringsDragObject.SetItems(const AValue: Tstrings);
begin
if FItems=AValue then exit;
FItems.Assign(AValue);
end;
constructor TStringsDragObject.Create(AControl: TControl);
begin
inherited Create(AControl);
FItems:=TStringList.Create;
end;
destructor TStringsDragObject.Destroy;
begin
FreeAndNil(FItems);
inherited Destroy;
end;
{ TMySQLDBRestSchema }
function TMySQLDBRestSchema.CreateResourceList: TSQLDBRestResourceList;
begin
Result:=TSQLDBRestResourceList.Create(Self,TMySQLDBRestResource);
end;
{ TMySQLDBRestConnection }
function TMySQLDBRestConnection.getMyConnection: TSQLConnection;
begin
Result:=FMyConnection;
if (FMyConnection=Nil) then
Result:=SingleConnection;
end;
destructor TMySQLDBRestConnection.Destroy;
begin
FreeAndNil(FMyTransaction);
FreeAndNil(FMyConnection);
inherited Destroy;
end;
procedure TMySQLDBRestConnection.CreateConnection;
begin
FreeAndNil(FMyConnection);
FMyConnection:=TSQLConnector.Create(Nil);
FMyTransaction:=TSQLTransaction.Create(nil);
FMyConnection.Transaction:=FMyTransaction;
ConfigConnection(FMyConnection);
end;
end.
|