mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-19 01:12:49 +08:00
105 lines
5.1 KiB
C#
105 lines
5.1 KiB
C#
using FreeSql.Internal;
|
|
using FreeSql.Internal.CommonProvider;
|
|
using FreeSql.Internal.Model;
|
|
using FreeSql.Internal.ObjectPool;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Data.Common;
|
|
using System.Data.Odbc;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
|
|
namespace FreeSql.GBase
|
|
{
|
|
class GBaseAdo : FreeSql.Internal.CommonProvider.AdoProvider
|
|
{
|
|
|
|
public GBaseAdo() : base(DataType.GBase, null, null) { }
|
|
public GBaseAdo(CommonUtils util, string masterConnectionString, string[] slaveConnectionStrings, Func<DbConnection> connectionFactory) : base(DataType.GBase, masterConnectionString, slaveConnectionStrings)
|
|
{
|
|
base._util = util;
|
|
if (connectionFactory != null)
|
|
{
|
|
var pool = new FreeSql.Internal.CommonProvider.DbConnectionPool(DataType.GBase, connectionFactory);
|
|
ConnectionString = pool.TestConnection?.ConnectionString;
|
|
MasterPool = pool;
|
|
_CreateCommandConnection = pool.TestConnection;
|
|
return;
|
|
}
|
|
|
|
var isAdoPool = masterConnectionString?.StartsWith("AdoConnectionPool,") ?? false;
|
|
if (isAdoPool) masterConnectionString = masterConnectionString.Substring("AdoConnectionPool,".Length);
|
|
if (!string.IsNullOrEmpty(masterConnectionString))
|
|
MasterPool = isAdoPool ?
|
|
new DbConnectionStringPool(base.DataType, CoreStrings.S_MasterDatabase, () => new OdbcConnection(masterConnectionString)) as IObjectPool<DbConnection> :
|
|
new GBaseConnectionPool(CoreStrings.S_MasterDatabase, masterConnectionString, null, null);
|
|
|
|
slaveConnectionStrings?.ToList().ForEach(slaveConnectionString =>
|
|
{
|
|
var slavePool = isAdoPool ?
|
|
new DbConnectionStringPool(base.DataType, $"{CoreStrings.S_SlaveDatabase}{SlavePools.Count + 1}", () => new OdbcConnection(slaveConnectionString)) as IObjectPool<DbConnection> :
|
|
new GBaseConnectionPool($"{CoreStrings.S_SlaveDatabase}{SlavePools.Count + 1}", slaveConnectionString, () => Interlocked.Decrement(ref slaveUnavailables), () => Interlocked.Increment(ref slaveUnavailables));
|
|
SlavePools.Add(slavePool);
|
|
});
|
|
}
|
|
|
|
public override object AddslashesProcessParam(object param, Type mapType, ColumnInfo mapColumn)
|
|
{
|
|
if (param == null) return "NULL";
|
|
if (mapType != null && mapType != param.GetType() && (param is IEnumerable == false))
|
|
param = Utils.GetDataReaderValue(mapType, param);
|
|
|
|
if (param is bool || param is bool?)
|
|
return (bool)param ? "'t'" : "'f'";
|
|
else if (param is string || param is char)
|
|
return string.Concat("'", param.ToString().Replace("'", "''"), "'");
|
|
else if (param is Enum)
|
|
return AddslashesTypeHandler(param.GetType(), param) ?? ((Enum)param).ToInt64();
|
|
else if (decimal.TryParse(string.Concat(param), out var trydec))
|
|
return param;
|
|
|
|
else if (param is DateTime)
|
|
return AddslashesTypeHandler(typeof(DateTime), param) ?? (mapColumn?.DbPrecision > 0 ?
|
|
string.Concat("'", ((DateTime)param).ToString($"yyyy-MM-dd HH:mm:ss.{"f".PadRight(mapColumn.DbPrecision, 'f')}"), "'") :
|
|
string.Concat("'", ((DateTime)param).ToString("yyyy-MM-dd HH:mm:ss"), "'"));
|
|
else if (param is DateTime?)
|
|
return AddslashesTypeHandler(typeof(DateTime?), param) ?? (mapColumn?.DbPrecision > 0 ?
|
|
string.Concat("'", ((DateTime)param).ToString($"yyyy-MM-dd HH:mm:ss.{"f".PadRight(mapColumn.DbPrecision, 'f')}"), "'") :
|
|
string.Concat("'", ((DateTime)param).ToString("yyyy-MM-dd HH:mm:ss"), "'"));
|
|
|
|
else if (param is TimeSpan || param is TimeSpan?)
|
|
{
|
|
var ts = (TimeSpan)param;
|
|
return $"interval({ts.Days} {ts.Hours}:{ts.Minutes}:{ts.Seconds}.{ts.Milliseconds}) day(9) to fraction";
|
|
}
|
|
else if (param is byte[])
|
|
return $"x'{CommonUtils.BytesSqlRaw(param as byte[])}'";
|
|
else if (param is IEnumerable)
|
|
return AddslashesIEnumerable(param, mapType, mapColumn);
|
|
|
|
return string.Concat("'", param.ToString().Replace("'", "''"), "'");
|
|
}
|
|
|
|
DbConnection _CreateCommandConnection;
|
|
public override DbCommand CreateCommand()
|
|
{
|
|
if (_CreateCommandConnection != null)
|
|
{
|
|
var cmd = _CreateCommandConnection.CreateCommand();
|
|
cmd.Connection = null;
|
|
return cmd;
|
|
}
|
|
return new OdbcCommand();
|
|
}
|
|
|
|
public override void ReturnConnection(IObjectPool<DbConnection> pool, Object<DbConnection> conn, Exception ex)
|
|
{
|
|
var rawPool = pool as GBaseConnectionPool;
|
|
if (rawPool != null) rawPool.Return(conn, ex);
|
|
else pool.Return(conn);
|
|
}
|
|
|
|
public override DbParameter[] GetDbParamtersByObject(string sql, object obj) => _util.GetDbParamtersByObject(sql, obj);
|
|
}
|
|
}
|