2019-02-21 20:17:11 +01:00
|
|
|
// *************************************************************************** }
|
|
|
|
//
|
|
|
|
// Delphi MVC Framework
|
|
|
|
//
|
2024-01-02 17:04:27 +01:00
|
|
|
// Copyright (c) 2010-2024 Daniele Teti and the DMVCFramework Team
|
2019-02-21 20:17:11 +01:00
|
|
|
//
|
|
|
|
// 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.MSSQL;
|
|
|
|
|
|
|
|
interface
|
|
|
|
|
|
|
|
uses
|
|
|
|
FireDAC.Phys.MSSQLDef,
|
|
|
|
FireDAC.Phys.MSSQL,
|
|
|
|
System.Rtti,
|
|
|
|
System.Generics.Collections,
|
|
|
|
MVCFramework.RQL.Parser,
|
|
|
|
MVCFramework.ActiveRecord,
|
2020-03-25 11:35:25 +01:00
|
|
|
MVCFramework.Commons;
|
2019-02-21 20:17:11 +01:00
|
|
|
|
|
|
|
type
|
|
|
|
TMVCSQLGeneratorMSSQL = class(TMVCSQLGenerator)
|
|
|
|
protected
|
|
|
|
function GetCompilerClass: TRQLCompilerClass; override;
|
|
|
|
public
|
|
|
|
function CreateInsertSQL(
|
2023-11-02 17:36:19 +01:00
|
|
|
const TableMap: TMVCTableMap;
|
|
|
|
const ARInstance: TMVCActiveRecord): string; override;
|
2019-02-21 20:17:11 +01:00
|
|
|
end;
|
|
|
|
|
|
|
|
implementation
|
|
|
|
|
|
|
|
uses
|
|
|
|
System.SysUtils,
|
|
|
|
MVCFramework.RQL.AST2MSSQL;
|
|
|
|
|
2023-11-02 17:36:19 +01:00
|
|
|
function TMVCSQLGeneratorMSSQL.CreateInsertSQL(
|
|
|
|
const TableMap: TMVCTableMap;
|
|
|
|
const ARInstance: TMVCActiveRecord): string;
|
2019-02-21 20:17:11 +01:00
|
|
|
var
|
2020-03-25 11:35:25 +01:00
|
|
|
lKeyValue: TPair<TRttiField, TFieldInfo>;
|
2019-02-21 20:17:11 +01:00
|
|
|
lSB: TStringBuilder;
|
2020-06-19 19:31:34 +02:00
|
|
|
lPKInInsert: Boolean;
|
2021-11-21 19:27:06 +01:00
|
|
|
lFieldName: String;
|
2019-02-21 20:17:11 +01:00
|
|
|
begin
|
2023-11-02 17:36:19 +01:00
|
|
|
lPKInInsert := (not TableMap.fPrimaryKeyFieldName.IsEmpty) and (not(TMVCActiveRecordFieldOption.foAutoGenerated in TableMap.fPrimaryKeyOptions));
|
|
|
|
lPKInInsert := lPKInInsert and (not(TMVCActiveRecordFieldOption.foReadOnly in TableMap.fPrimaryKeyOptions));
|
2019-02-21 20:17:11 +01:00
|
|
|
lSB := TStringBuilder.Create;
|
|
|
|
try
|
2023-11-02 17:36:19 +01:00
|
|
|
lSB.Append('INSERT INTO ' + TableMap.fTableName + '(');
|
2020-06-19 19:31:34 +02:00
|
|
|
if lPKInInsert then
|
2020-03-27 00:37:28 +01:00
|
|
|
begin
|
2023-11-02 17:36:19 +01:00
|
|
|
lSB.Append(TableMap.fPrimaryKeyFieldName + ',');
|
2020-03-27 00:37:28 +01:00
|
|
|
end;
|
2021-11-21 19:27:06 +01:00
|
|
|
|
|
|
|
{partition}
|
|
|
|
for lFieldName in fPartitionInfo.FieldNames do
|
|
|
|
begin
|
|
|
|
lSB.Append(GetFieldNameForSQL(lFieldName) + ',');
|
|
|
|
end;
|
|
|
|
{end-partition}
|
|
|
|
|
2023-11-02 17:36:19 +01:00
|
|
|
for lKeyValue in TableMap.fMap do
|
2020-03-25 11:35:25 +01:00
|
|
|
begin
|
|
|
|
if lKeyValue.Value.Writeable then
|
|
|
|
begin
|
|
|
|
lSB.Append(lKeyValue.Value.FieldName + ',');
|
|
|
|
end;
|
|
|
|
end;
|
2019-02-21 20:17:11 +01:00
|
|
|
lSB.Remove(lSB.Length - 1, 1);
|
|
|
|
lSB.Append(') values (');
|
2020-06-19 19:31:34 +02:00
|
|
|
if lPKInInsert then
|
2020-03-27 00:37:28 +01:00
|
|
|
begin
|
2023-11-02 17:36:19 +01:00
|
|
|
lSB.Append(':' + TableMap.fPrimaryKeyFieldName + ',');
|
2020-03-27 00:37:28 +01:00
|
|
|
end;
|
2021-11-21 19:27:06 +01:00
|
|
|
|
|
|
|
{partition}
|
|
|
|
for lFieldName in fPartitionInfo.FieldNames do
|
|
|
|
begin
|
|
|
|
lSB.Append(':' + GetParamNameForSQL(lFieldName) + ',');
|
|
|
|
end;
|
|
|
|
{end-partition}
|
|
|
|
|
2023-11-02 17:36:19 +01:00
|
|
|
for lKeyValue in TableMap.fMap do
|
2019-02-21 20:17:11 +01:00
|
|
|
begin
|
2023-11-02 17:36:19 +01:00
|
|
|
if lKeyValue.Value.IsVersion then
|
|
|
|
begin
|
|
|
|
lSB.Append(OBJECT_VERSION_STARTING_VALUE + ',');
|
|
|
|
end else if lKeyValue.Value.Writeable then
|
2020-03-25 11:35:25 +01:00
|
|
|
begin
|
|
|
|
lSB.Append(':' + lKeyValue.Value.FieldName + ',');
|
|
|
|
end;
|
2019-02-21 20:17:11 +01:00
|
|
|
end;
|
|
|
|
lSB.Remove(lSB.Length - 1, 1);
|
|
|
|
lSB.Append(')');
|
|
|
|
|
2023-11-02 17:36:19 +01:00
|
|
|
if TMVCActiveRecordFieldOption.foAutoGenerated in TableMap.fPrimaryKeyOptions then
|
2019-02-21 20:17:11 +01:00
|
|
|
begin
|
2023-11-02 17:36:19 +01:00
|
|
|
lSB.Append(';SELECT SCOPE_IDENTITY() as ' + TableMap.fPrimaryKeyFieldName);
|
2019-02-21 20:17:11 +01:00
|
|
|
end;
|
|
|
|
Result := lSB.ToString;
|
|
|
|
finally
|
|
|
|
lSB.Free;
|
|
|
|
end;
|
|
|
|
end;
|
|
|
|
|
|
|
|
function TMVCSQLGeneratorMSSQL.GetCompilerClass: TRQLCompilerClass;
|
|
|
|
begin
|
|
|
|
Result := TRQLMSSQLCompiler;
|
|
|
|
end;
|
|
|
|
|
|
|
|
initialization
|
|
|
|
|
|
|
|
TMVCSQLGeneratorRegistry.Instance.RegisterSQLGenerator('mssql', TMVCSQLGeneratorMSSQL);
|
|
|
|
|
|
|
|
finalization
|
|
|
|
|
|
|
|
TMVCSQLGeneratorRegistry.Instance.UnRegisterSQLGenerator('mssql');
|
|
|
|
|
|
|
|
end.
|