mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-05-20 15:09:33 +08:00
216 lines
8.1 KiB
C#
216 lines
8.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Data.Common;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using Npgsql;
|
|
using NpgsqlTypes;
|
|
|
|
namespace SqlSugar
|
|
{
|
|
public partial class QuestDBProvider : AdoProvider
|
|
{
|
|
public QuestDBProvider() { }
|
|
public override IDbConnection Connection
|
|
{
|
|
get
|
|
{
|
|
if (base._DbConnection == null)
|
|
{
|
|
try
|
|
{
|
|
var npgsqlConnectionString = base.Context.CurrentConnectionConfig.ConnectionString;
|
|
base._DbConnection = new NpgsqlConnection(npgsqlConnectionString);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Check.Exception(true, ErrorMessage.ConnnectionOpen, ex.Message);
|
|
}
|
|
}
|
|
return base._DbConnection;
|
|
}
|
|
set
|
|
{
|
|
base._DbConnection = value;
|
|
}
|
|
}
|
|
|
|
public override void BeginTran(string transactionName)
|
|
{
|
|
base.BeginTran();
|
|
}
|
|
/// <summary>
|
|
/// Only SqlServer
|
|
/// </summary>
|
|
/// <param name="iso"></param>
|
|
/// <param name="transactionName"></param>
|
|
public override void BeginTran(IsolationLevel iso, string transactionName)
|
|
{
|
|
base.BeginTran(iso);
|
|
}
|
|
public override IDataAdapter GetAdapter()
|
|
{
|
|
return new NpgsqlDataAdapter();
|
|
}
|
|
public override DbCommand GetCommand(string sql, SugarParameter[] parameters)
|
|
{
|
|
if (sql == "\r\n")
|
|
{
|
|
sql = "SELECT 0";
|
|
}
|
|
NpgsqlCommand sqlCommand = new NpgsqlCommand(sql, (NpgsqlConnection)this.Connection);
|
|
sqlCommand.CommandType = this.CommandType;
|
|
sqlCommand.CommandTimeout = this.CommandTimeOut;
|
|
if (this.Transaction != null)
|
|
{
|
|
sqlCommand.Transaction = (NpgsqlTransaction)this.Transaction;
|
|
}
|
|
if (parameters.HasValue())
|
|
{
|
|
IDataParameter[] ipars = ToIDbDataParameter(parameters);
|
|
sqlCommand.Parameters.AddRange((NpgsqlParameter[])ipars);
|
|
}
|
|
CheckConnection();
|
|
return sqlCommand;
|
|
}
|
|
/// <summary>
|
|
/// Check connection
|
|
/// </summary>
|
|
public override void CheckConnection()
|
|
{
|
|
if (this.Connection.State != ConnectionState.Open)
|
|
{
|
|
try
|
|
{
|
|
int i = 0;
|
|
while (i < 15)
|
|
{
|
|
try
|
|
{
|
|
//QuestDb loss problem
|
|
this.Connection.Open();
|
|
break;
|
|
}
|
|
catch
|
|
{
|
|
i++;
|
|
}
|
|
}
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Check.Exception(true, ErrorMessage.ConnnectionOpen, ex.Message);
|
|
}
|
|
}
|
|
}
|
|
public override void SetCommandToAdapter(IDataAdapter dataAdapter, DbCommand command)
|
|
{
|
|
((NpgsqlDataAdapter)dataAdapter).SelectCommand = (NpgsqlCommand)command;
|
|
}
|
|
/// <summary>
|
|
/// if mysql return MySqlParameter[] pars
|
|
/// if sqlerver return SqlParameter[] pars ...
|
|
/// </summary>
|
|
/// <param name="parameters"></param>
|
|
/// <returns></returns>
|
|
public override IDataParameter[] ToIDbDataParameter(params SugarParameter[] parameters)
|
|
{
|
|
if (parameters == null || parameters.Length == 0) return null;
|
|
NpgsqlParameter[] result = new NpgsqlParameter[parameters.Length];
|
|
int index = 0;
|
|
var isVarchar = this.Context.IsVarchar();
|
|
foreach (var parameter in parameters)
|
|
{
|
|
if (parameter.Value == null) parameter.Value = DBNull.Value;
|
|
if(parameter.Value is System.Data.SqlTypes.SqlDateTime&¶meter.DbType==System.Data.DbType.AnsiString)
|
|
{
|
|
parameter.DbType = System.Data.DbType.DateTime;
|
|
parameter.Value = DBNull.Value;
|
|
}
|
|
var sqlParameter = new NpgsqlParameter();
|
|
sqlParameter.ParameterName = parameter.ParameterName;
|
|
sqlParameter.Size = parameter.Size;
|
|
sqlParameter.Value = parameter.Value;
|
|
sqlParameter.DbType = parameter.DbType;
|
|
sqlParameter.Direction = parameter.Direction;
|
|
if (parameter.IsJson)
|
|
{
|
|
sqlParameter.DbType=System.Data.DbType.String;
|
|
}
|
|
if (sqlParameter.Direction == 0)
|
|
{
|
|
sqlParameter.Direction = ParameterDirection.Input;
|
|
}
|
|
result[index] = sqlParameter;
|
|
if (sqlParameter.Direction.IsIn(ParameterDirection.Output, ParameterDirection.InputOutput, ParameterDirection.ReturnValue))
|
|
{
|
|
if (this.OutputParameters == null) this.OutputParameters = new List<IDataParameter>();
|
|
this.OutputParameters.RemoveAll(it => it.ParameterName == sqlParameter.ParameterName);
|
|
this.OutputParameters.Add(sqlParameter);
|
|
}
|
|
if (sqlParameter.DbType == System.Data.DbType.String)
|
|
{
|
|
sqlParameter.DbType = System.Data.DbType.AnsiString;
|
|
}
|
|
else if (sqlParameter.Value is DateTime && sqlParameter.DbType == System.Data.DbType.AnsiString)
|
|
{
|
|
sqlParameter.DbType = System.Data.DbType.DateTime;
|
|
}
|
|
else if (sqlParameter.DbType==System.Data.DbType.Decimal)
|
|
{
|
|
sqlParameter.DbType = System.Data.DbType.Double;
|
|
sqlParameter.Value = Convert.ToDouble(sqlParameter.Value);
|
|
}
|
|
else if (sqlParameter.DbType == System.Data.DbType.Guid)
|
|
{
|
|
sqlParameter.DbType = System.Data.DbType.String;
|
|
if (sqlParameter.Value != null)
|
|
{
|
|
sqlParameter.Value = (sqlParameter.Value).ToString();
|
|
}
|
|
}
|
|
else if (sqlParameter.DbType == System.Data.DbType.Boolean)
|
|
{
|
|
sqlParameter.DbType = System.Data.DbType.String;
|
|
if (sqlParameter.Value != null)
|
|
{
|
|
sqlParameter.Value = sqlParameter.Value.ObjToString().ToLower();
|
|
}
|
|
}
|
|
++index;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
|
|
static readonly Dictionary<Type, NpgsqlDbType> ArrayMapping = new Dictionary<Type, NpgsqlDbType>()
|
|
{
|
|
{ typeof(int[]),NpgsqlDbType.Integer},
|
|
{ typeof(short[]),NpgsqlDbType.Smallint},
|
|
{ typeof(long[]),NpgsqlDbType.Bigint},
|
|
{ typeof(decimal[]),NpgsqlDbType.Numeric},
|
|
{ typeof(char[]),NpgsqlDbType.Text},
|
|
{ typeof(byte[]),NpgsqlDbType.Bytea},
|
|
{ typeof(bool[]),NpgsqlDbType.Boolean},
|
|
{typeof(DateTime[]),NpgsqlDbType.Date},
|
|
{typeof(float[]),NpgsqlDbType.Real},
|
|
|
|
|
|
{ typeof(int?[]),NpgsqlDbType.Integer},
|
|
{ typeof(short?[]),NpgsqlDbType.Smallint},
|
|
{ typeof(long?[]),NpgsqlDbType.Bigint},
|
|
{ typeof(decimal?[]),NpgsqlDbType.Numeric},
|
|
{ typeof(char?[]),NpgsqlDbType.Text},
|
|
{ typeof(byte?[]),NpgsqlDbType.Bytea},
|
|
{ typeof(bool?[]),NpgsqlDbType.Boolean},
|
|
{typeof(DateTime?[]),NpgsqlDbType.Date},
|
|
|
|
|
|
{ typeof(string[]), NpgsqlDbType.Text},
|
|
{typeof(float?[]),NpgsqlDbType.Real},
|
|
};
|
|
}
|
|
}
|