mirror of
				https://github.com/nsnail/FreeSql.git
				synced 2025-11-04 09:15:27 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			227 lines
		
	
	
		
			9.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			227 lines
		
	
	
		
			9.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
using FreeSql.Internal;
 | 
						|
using FreeSql.Internal.Model;
 | 
						|
using System;
 | 
						|
using System.Collections.Generic;
 | 
						|
using System.Data;
 | 
						|
using System.Data.Common;
 | 
						|
using System.Linq;
 | 
						|
using System.Text;
 | 
						|
using System.Threading;
 | 
						|
using System.Threading.Tasks;
 | 
						|
 | 
						|
namespace FreeSql.Firebird.Curd
 | 
						|
{
 | 
						|
 | 
						|
    class FirebirdInsert<T1> : Internal.CommonProvider.InsertProvider<T1> where T1 : class
 | 
						|
    {
 | 
						|
        public FirebirdInsert(IFreeSql orm, CommonUtils commonUtils, CommonExpression commonExpression)
 | 
						|
            : base(orm, commonUtils, commonExpression)
 | 
						|
        {
 | 
						|
        }
 | 
						|
 | 
						|
        public override int ExecuteAffrows()
 | 
						|
        {
 | 
						|
            base.NoneParameter(_source?.Count > 1);
 | 
						|
            return base.SplitExecuteAffrows(_batchValuesLimit > 0 ? _batchValuesLimit : 200, _batchParameterLimit > 0 ? _batchParameterLimit : 999);
 | 
						|
        }
 | 
						|
        public override long ExecuteIdentity()
 | 
						|
        {
 | 
						|
            base.NoneParameter(_source?.Count > 1);
 | 
						|
            return base.SplitExecuteIdentity(_batchValuesLimit > 0 ? _batchValuesLimit : 200, _batchParameterLimit > 0 ? _batchParameterLimit : 999);
 | 
						|
        }
 | 
						|
        public override List<T1> ExecuteInserted() => base.SplitExecuteInserted(1, 999);
 | 
						|
 | 
						|
        public override string ToSql() => 
 | 
						|
            _source?.Count <= 1 ?
 | 
						|
            base.ToSqlValuesOrSelectUnionAll() :
 | 
						|
            base.ToSqlValuesOrSelectUnionAllExtension102(false, (rowd, idx, sb) => sb.Append("FIRST 1 "), (rowd, idx, sb) => sb.Append(" FROM rdb$database"));
 | 
						|
 | 
						|
        protected override long RawExecuteIdentity()
 | 
						|
        {
 | 
						|
            var sql = this.ToSql();
 | 
						|
            if (string.IsNullOrEmpty(sql)) return 0;
 | 
						|
 | 
						|
            long ret = 0;
 | 
						|
            Exception exception = null;
 | 
						|
            Aop.CurdBeforeEventArgs before = null;
 | 
						|
 | 
						|
            var identCols = _table.Columns.Where(a => a.Value.Attribute.IsIdentity == true);
 | 
						|
            if (identCols.Any() == false)
 | 
						|
            {
 | 
						|
                before = new Aop.CurdBeforeEventArgs(_table.Type, _table, Aop.CurdType.Insert, sql, _params);
 | 
						|
                _orm.Aop.CurdBeforeHandler?.Invoke(this, before);
 | 
						|
                try
 | 
						|
                {
 | 
						|
                    ret = _orm.Ado.ExecuteNonQuery(_connection, _transaction, CommandType.Text, sql, _commandTimeout, _params);
 | 
						|
                }
 | 
						|
                catch (Exception ex)
 | 
						|
                {
 | 
						|
                    exception = ex;
 | 
						|
                    throw ex;
 | 
						|
                }
 | 
						|
                finally
 | 
						|
                {
 | 
						|
                    var after = new Aop.CurdAfterEventArgs(before, exception, ret);
 | 
						|
                    _orm.Aop.CurdAfterHandler?.Invoke(this, after);
 | 
						|
                }
 | 
						|
                return 0;
 | 
						|
            }
 | 
						|
            sql = string.Concat(sql, " RETURNING ", _commonUtils.QuoteSqlName(identCols.First().Value.Attribute.Name));
 | 
						|
            before = new Aop.CurdBeforeEventArgs(_table.Type, _table, Aop.CurdType.Insert, sql, _params);
 | 
						|
            _orm.Aop.CurdBeforeHandler?.Invoke(this, before);
 | 
						|
            try
 | 
						|
            {
 | 
						|
                long.TryParse(string.Concat(_orm.Ado.ExecuteScalar(_connection, _transaction, CommandType.Text, sql, _commandTimeout, _params)), out ret);
 | 
						|
            }
 | 
						|
            catch (Exception ex)
 | 
						|
            {
 | 
						|
                exception = ex;
 | 
						|
                throw ex;
 | 
						|
            }
 | 
						|
            finally
 | 
						|
            {
 | 
						|
                var after = new Aop.CurdAfterEventArgs(before, exception, ret);
 | 
						|
                _orm.Aop.CurdAfterHandler?.Invoke(this, after);
 | 
						|
            }
 | 
						|
            return ret;
 | 
						|
        }
 | 
						|
        protected override List<T1> RawExecuteInserted()
 | 
						|
        {
 | 
						|
            var sql = this.ToSql();
 | 
						|
            if (string.IsNullOrEmpty(sql)) return new List<T1>();
 | 
						|
 | 
						|
            var sb = new StringBuilder();
 | 
						|
            sb.Append(sql).Append(" RETURNING ");
 | 
						|
 | 
						|
            var colidx = 0;
 | 
						|
            foreach (var col in _table.Columns.Values)
 | 
						|
            {
 | 
						|
                if (colidx > 0) sb.Append(", ");
 | 
						|
                sb.Append(_commonUtils.RereadColumn(col, _commonUtils.QuoteSqlName(col.Attribute.Name))).Append(" as ").Append(_commonUtils.QuoteSqlName(col.CsName));
 | 
						|
                ++colidx;
 | 
						|
            }
 | 
						|
            sql = sb.ToString();
 | 
						|
            var before = new Aop.CurdBeforeEventArgs(_table.Type, _table, Aop.CurdType.Insert, sql, _params);
 | 
						|
            _orm.Aop.CurdBeforeHandler?.Invoke(this, before);
 | 
						|
            var ret = new List<T1>();
 | 
						|
            Exception exception = null;
 | 
						|
            try
 | 
						|
            {
 | 
						|
                ret = _orm.Ado.Query<T1>(_connection, _transaction, CommandType.Text, sql, _commandTimeout, _params);
 | 
						|
            }
 | 
						|
            catch (Exception ex)
 | 
						|
            {
 | 
						|
                exception = ex;
 | 
						|
                throw ex;
 | 
						|
            }
 | 
						|
            finally
 | 
						|
            {
 | 
						|
                var after = new Aop.CurdAfterEventArgs(before, exception, ret);
 | 
						|
                _orm.Aop.CurdAfterHandler?.Invoke(this, after);
 | 
						|
            }
 | 
						|
            return ret;
 | 
						|
        }
 | 
						|
 | 
						|
#if net40
 | 
						|
#else
 | 
						|
        public override Task<int> ExecuteAffrowsAsync(CancellationToken cancellationToken = default)
 | 
						|
        {
 | 
						|
            base.NoneParameter(_source?.Count > 1);
 | 
						|
            return base.SplitExecuteAffrowsAsync(_batchValuesLimit > 0 ? _batchValuesLimit : 200, _batchParameterLimit > 0 ? _batchParameterLimit : 999, cancellationToken);
 | 
						|
        }
 | 
						|
        public override Task<long> ExecuteIdentityAsync(CancellationToken cancellationToken = default)
 | 
						|
        {
 | 
						|
            base.NoneParameter(_source?.Count > 1);
 | 
						|
            return base.SplitExecuteIdentityAsync(_batchValuesLimit > 0 ? _batchValuesLimit : 200, _batchParameterLimit > 0 ? _batchParameterLimit : 999, cancellationToken);
 | 
						|
        }
 | 
						|
        public override Task<List<T1>> ExecuteInsertedAsync(CancellationToken cancellationToken = default) => base.SplitExecuteInsertedAsync(1, 1000, cancellationToken);
 | 
						|
 | 
						|
        async protected override Task<long> RawExecuteIdentityAsync(CancellationToken cancellationToken = default)
 | 
						|
        {
 | 
						|
            var sql = this.ToSql();
 | 
						|
            if (string.IsNullOrEmpty(sql)) return 0;
 | 
						|
 | 
						|
            long ret = 0;
 | 
						|
            Exception exception = null;
 | 
						|
            Aop.CurdBeforeEventArgs before = null;
 | 
						|
 | 
						|
            var identCols = _table.Columns.Where(a => a.Value.Attribute.IsIdentity == true);
 | 
						|
            if (identCols.Any() == false)
 | 
						|
            {
 | 
						|
                before = new Aop.CurdBeforeEventArgs(_table.Type, _table, Aop.CurdType.Insert, sql, _params);
 | 
						|
                _orm.Aop.CurdBeforeHandler?.Invoke(this, before);
 | 
						|
                try
 | 
						|
                {
 | 
						|
                    ret = await _orm.Ado.ExecuteNonQueryAsync(_connection, _transaction, CommandType.Text, sql, _commandTimeout, _params, cancellationToken);
 | 
						|
                }
 | 
						|
                catch (Exception ex)
 | 
						|
                {
 | 
						|
                    exception = ex;
 | 
						|
                    throw ex;
 | 
						|
                }
 | 
						|
                finally
 | 
						|
                {
 | 
						|
                    var after = new Aop.CurdAfterEventArgs(before, exception, ret);
 | 
						|
                    _orm.Aop.CurdAfterHandler?.Invoke(this, after);
 | 
						|
                }
 | 
						|
                return 0;
 | 
						|
            }
 | 
						|
            sql = string.Concat(sql, " RETURNING ", _commonUtils.QuoteSqlName(identCols.First().Value.Attribute.Name));
 | 
						|
            before = new Aop.CurdBeforeEventArgs(_table.Type, _table, Aop.CurdType.Insert, sql, _params);
 | 
						|
            _orm.Aop.CurdBeforeHandler?.Invoke(this, before);
 | 
						|
            try
 | 
						|
            {
 | 
						|
                long.TryParse(string.Concat(await _orm.Ado.ExecuteScalarAsync(_connection, _transaction, CommandType.Text, sql, _commandTimeout, _params, cancellationToken)), out ret);
 | 
						|
            }
 | 
						|
            catch (Exception ex)
 | 
						|
            {
 | 
						|
                exception = ex;
 | 
						|
                throw ex;
 | 
						|
            }
 | 
						|
            finally
 | 
						|
            {
 | 
						|
                var after = new Aop.CurdAfterEventArgs(before, exception, ret);
 | 
						|
                _orm.Aop.CurdAfterHandler?.Invoke(this, after);
 | 
						|
            }
 | 
						|
            return ret;
 | 
						|
        }
 | 
						|
        async protected override Task<List<T1>> RawExecuteInsertedAsync(CancellationToken cancellationToken = default)
 | 
						|
        {
 | 
						|
            var sql = this.ToSql();
 | 
						|
            if (string.IsNullOrEmpty(sql)) return new List<T1>();
 | 
						|
 | 
						|
            var sb = new StringBuilder();
 | 
						|
            sb.Append(sql).Append(" RETURNING ");
 | 
						|
 | 
						|
            var colidx = 0;
 | 
						|
            foreach (var col in _table.Columns.Values)
 | 
						|
            {
 | 
						|
                if (colidx > 0) sb.Append(", ");
 | 
						|
                sb.Append(_commonUtils.RereadColumn(col, _commonUtils.QuoteSqlName(col.Attribute.Name))).Append(" as ").Append(_commonUtils.QuoteSqlName(col.CsName));
 | 
						|
                ++colidx;
 | 
						|
            }
 | 
						|
            sql = sb.ToString();
 | 
						|
            var before = new Aop.CurdBeforeEventArgs(_table.Type, _table, Aop.CurdType.Insert, sql, _params);
 | 
						|
            _orm.Aop.CurdBeforeHandler?.Invoke(this, before);
 | 
						|
            var ret = new List<T1>();
 | 
						|
            Exception exception = null;
 | 
						|
            try
 | 
						|
            {
 | 
						|
                ret = await _orm.Ado.QueryAsync<T1>(_connection, _transaction, CommandType.Text, sql, _commandTimeout, _params, cancellationToken);
 | 
						|
            }
 | 
						|
            catch (Exception ex)
 | 
						|
            {
 | 
						|
                exception = ex;
 | 
						|
                throw ex;
 | 
						|
            }
 | 
						|
            finally
 | 
						|
            {
 | 
						|
                var after = new Aop.CurdAfterEventArgs(before, exception, ret);
 | 
						|
                _orm.Aop.CurdAfterHandler?.Invoke(this, after);
 | 
						|
            }
 | 
						|
            return ret;
 | 
						|
        }
 | 
						|
#endif
 | 
						|
    }
 | 
						|
}
 |