mirror of
https://github.com/danieleteti/delphimvcframework.git
synced 2024-11-15 07:45:54 +01:00
141 lines
3.8 KiB
ObjectPascal
141 lines
3.8 KiB
ObjectPascal
// *************************************************************************** }
|
|
//
|
|
// Delphi MVC Framework
|
|
//
|
|
// Copyright (c) 2010-2024 Daniele Teti and the DMVCFramework Team
|
|
//
|
|
// https://github.com/danieleteti/delphimvcframework
|
|
//
|
|
// ***************************************************************************
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
//
|
|
// ***************************************************************************
|
|
|
|
unit MVCFramework.SQLGenerators.MySQL;
|
|
|
|
interface
|
|
|
|
uses
|
|
FireDAC.Phys.MySQLDef,
|
|
FireDAC.Phys.MySQL,
|
|
System.Rtti,
|
|
System.Generics.Collections,
|
|
MVCFramework.RQL.Parser,
|
|
MVCFramework.ActiveRecord,
|
|
MVCFramework.Commons;
|
|
|
|
type
|
|
TMVCSQLGeneratorMySQL = class(TMVCSQLGenerator)
|
|
protected
|
|
function GetCompilerClass: TRQLCompilerClass; override;
|
|
public
|
|
function CreateInsertSQL(
|
|
const TableMap: TMVCTableMap;
|
|
const ARInstance: TMVCActiveRecord
|
|
): string; override;
|
|
end;
|
|
|
|
implementation
|
|
|
|
uses
|
|
System.SysUtils,
|
|
MVCFramework.RQL.AST2MySQL;
|
|
|
|
function TMVCSQLGeneratorMySQL.CreateInsertSQL(
|
|
const TableMap: TMVCTableMap;
|
|
const ARInstance: TMVCActiveRecord
|
|
): string;
|
|
var
|
|
lKeyValue: TPair<TRttiField, TFieldInfo>;
|
|
lSB: TStringBuilder;
|
|
lPKInInsert: Boolean;
|
|
lFieldName: String;
|
|
begin
|
|
lPKInInsert := (not TableMap.fPrimaryKeyFieldName.IsEmpty) and (not(TMVCActiveRecordFieldOption.foAutoGenerated in TableMap.fPrimaryKeyOptions));
|
|
lPKInInsert := lPKInInsert and (not(TMVCActiveRecordFieldOption.foReadOnly in TableMap.fPrimaryKeyOptions));
|
|
lSB := TStringBuilder.Create;
|
|
try
|
|
lSB.Append('INSERT INTO ' + GetTableNameForSQL(TableMap.fTableName) + '(');
|
|
if lPKInInsert then
|
|
begin
|
|
lSB.Append(GetFieldNameForSQL(TableMap.fPrimaryKeyFieldName) + ',');
|
|
end;
|
|
|
|
{partition}
|
|
for lFieldName in fPartitionInfo.FieldNames do
|
|
begin
|
|
lSB.Append(GetFieldNameForSQL(lFieldName) + ',');
|
|
end;
|
|
{end-partition}
|
|
|
|
for lKeyValue in TableMap.fMap do
|
|
begin
|
|
if lKeyValue.Value.Insertable then
|
|
begin
|
|
lSB.Append(GetFieldNameForSQL(lKeyValue.Value.FieldName) + ',');
|
|
end;
|
|
end;
|
|
|
|
lSB.Remove(lSB.Length - 1, 1);
|
|
lSB.Append(') values (');
|
|
if lPKInInsert then
|
|
begin
|
|
lSB.Append(':' + GetParamNameForSQL(TableMap.fPrimaryKeyFieldName) + ',');
|
|
end;
|
|
|
|
{partition}
|
|
for lFieldName in fPartitionInfo.FieldNames do
|
|
begin
|
|
lSB.Append(':' + GetParamNameForSQL(lFieldName) + ',');
|
|
end;
|
|
{end-partition}
|
|
|
|
for lKeyValue in TableMap.fMap do
|
|
begin
|
|
if lKeyValue.Value.IsVersion then
|
|
begin
|
|
lSB.Append(OBJECT_VERSION_STARTING_VALUE + ',');
|
|
end else if lKeyValue.Value.Insertable then
|
|
begin
|
|
lSB.Append(':' + GetParamNameForSQL(lKeyValue.Value.FieldName) + ',');
|
|
end;
|
|
end;
|
|
lSB.Remove(lSB.Length - 1, 1);
|
|
lSB.Append(')');
|
|
|
|
if TMVCActiveRecordFieldOption.foAutoGenerated in TableMap.fPrimaryKeyOptions then
|
|
begin
|
|
lSB.Append(';SELECT LAST_INSERT_ID() as ' + TableMap.fPrimaryKeyFieldName);
|
|
end;
|
|
Result := lSB.ToString;
|
|
finally
|
|
lSB.Free;
|
|
end;
|
|
end;
|
|
|
|
function TMVCSQLGeneratorMySQL.GetCompilerClass: TRQLCompilerClass;
|
|
begin
|
|
Result := TRQLMySQLCompiler;
|
|
end;
|
|
|
|
initialization
|
|
|
|
TMVCSQLGeneratorRegistry.Instance.RegisterSQLGenerator('mysql', TMVCSQLGeneratorMySQL);
|
|
|
|
finalization
|
|
|
|
TMVCSQLGeneratorRegistry.Instance.UnRegisterSQLGenerator('mysql');
|
|
|
|
end.
|