mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-25 12:12:51 +08:00
73 lines
3.2 KiB
C#
73 lines
3.2 KiB
C#
using FreeSql.Internal;
|
|
using SafeObjectPool;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Data.Common;
|
|
using System.Data.Odbc;
|
|
using System.Text;
|
|
using System.Threading;
|
|
|
|
namespace FreeSql.Odbc.Default
|
|
{
|
|
class OdbcAdo : FreeSql.Internal.CommonProvider.AdoProvider
|
|
{
|
|
public OdbcAdo() : base(DataType.Odbc) { }
|
|
public OdbcAdo(CommonUtils util, string masterConnectionString, string[] slaveConnectionStrings) : base(DataType.Odbc)
|
|
{
|
|
base._util = util;
|
|
if (!string.IsNullOrEmpty(masterConnectionString))
|
|
MasterPool = new OdbcConnectionPool("主库", masterConnectionString, null, null);
|
|
if (slaveConnectionStrings != null)
|
|
{
|
|
foreach (var slaveConnectionString in slaveConnectionStrings)
|
|
{
|
|
var slavePool = new OdbcConnectionPool($"从库{SlavePools.Count + 1}", slaveConnectionString, () => Interlocked.Decrement(ref slaveUnavailables), () => Interlocked.Increment(ref slaveUnavailables));
|
|
SlavePools.Add(slavePool);
|
|
}
|
|
}
|
|
}
|
|
OdbcAdapter Adapter => (_util == null ? FreeSqlOdbcGlobalExtensions.DefaultOdbcAdapter : _util._orm.GetOdbcAdapter());
|
|
|
|
static DateTime dt1970 = new DateTime(1970, 1, 1);
|
|
public override object AddslashesProcessParam(object param, Type mapType)
|
|
{
|
|
if (param == null) return "NULL";
|
|
if (mapType != null && mapType != param.GetType() && (param is IEnumerable == false || mapType.IsArrayOrList()))
|
|
param = Utils.GetDataReaderValue(mapType, param);
|
|
if (param is bool || param is bool?)
|
|
return (bool)param ? 1 : 0;
|
|
else if (param is string)
|
|
return Adapter.UnicodeStringRawSql(param);
|
|
else if (param is char)
|
|
return string.Concat("'", param.ToString().Replace("'", "''"), "'");
|
|
else if (param is Enum)
|
|
return ((Enum)param).ToInt64();
|
|
else if (decimal.TryParse(string.Concat(param), out var trydec))
|
|
return param;
|
|
else if (param is DateTime || param is DateTime?)
|
|
return Adapter.DateTimeRawSql(param);
|
|
else if (param is TimeSpan || param is TimeSpan?)
|
|
return Adapter.TimeSpanRawSql(param);
|
|
else if (param is IEnumerable)
|
|
{
|
|
var sb = new StringBuilder();
|
|
var ie = param as IEnumerable;
|
|
foreach (var z in ie) sb.Append(",").Append(AddslashesProcessParam(z, mapType));
|
|
return sb.Length == 0 ? "(NULL)" : sb.Remove(0, 1).Insert(0, "(").Append(")").ToString();
|
|
}
|
|
return string.Concat("'", param.ToString().Replace("'", "''"), "'");
|
|
}
|
|
|
|
protected override DbCommand CreateCommand()
|
|
{
|
|
return new OdbcCommand();
|
|
}
|
|
|
|
protected override void ReturnConnection(ObjectPool<DbConnection> pool, Object<DbConnection> conn, Exception ex)
|
|
{
|
|
(pool as OdbcConnectionPool).Return(conn, ex);
|
|
}
|
|
|
|
protected override DbParameter[] GetDbParamtersByObject(string sql, object obj) => _util.GetDbParamtersByObject(sql, obj);
|
|
}
|
|
} |