mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-27 05:02:50 +08:00
92 lines
4.3 KiB
C#
92 lines
4.3 KiB
C#
using FreeSql.Internal;
|
|
using FreeSql.Internal.Model;
|
|
using Newtonsoft.Json.Linq;
|
|
using Npgsql;
|
|
using SafeObjectPool;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Data.Common;
|
|
using System.Text;
|
|
using System.Threading;
|
|
|
|
namespace FreeSql.PostgreSQL
|
|
{
|
|
class PostgreSQLAdo : FreeSql.Internal.CommonProvider.AdoProvider
|
|
{
|
|
public PostgreSQLAdo() : base(DataType.PostgreSQL) { }
|
|
public PostgreSQLAdo(CommonUtils util, string masterConnectionString, string[] slaveConnectionStrings, Func<DbConnection> connectionFactory) : base(DataType.PostgreSQL)
|
|
{
|
|
base._util = util;
|
|
if (connectionFactory != null)
|
|
{
|
|
MasterPool = new FreeSql.Internal.CommonProvider.DbConnectionPool(DataType.PostgreSQL, connectionFactory);
|
|
return;
|
|
}
|
|
if (!string.IsNullOrEmpty(masterConnectionString))
|
|
MasterPool = new PostgreSQLConnectionPool("主库", masterConnectionString, null, null);
|
|
if (slaveConnectionStrings != null)
|
|
{
|
|
foreach (var slaveConnectionString in slaveConnectionStrings)
|
|
{
|
|
var slavePool = new PostgreSQLConnectionPool($"从库{SlavePools.Count + 1}", slaveConnectionString, () => Interlocked.Decrement(ref slaveUnavailables), () => Interlocked.Increment(ref slaveUnavailables));
|
|
SlavePools.Add(slavePool);
|
|
}
|
|
}
|
|
}
|
|
|
|
static DateTime dt1970 = new DateTime(1970, 1, 1);
|
|
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 || mapType.IsArrayOrList() || param is JToken || param is JObject || param is JArray))
|
|
param = Utils.GetDataReaderValue(mapType, param);
|
|
bool isdic;
|
|
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 ((Enum)param).ToInt64();
|
|
else if (decimal.TryParse(string.Concat(param), out var trydec))
|
|
return param;
|
|
else if (param is DateTime || param is DateTime?)
|
|
return string.Concat("'", ((DateTime)param).ToString("yyyy-MM-dd HH:mm:ss.ffffff"), "'");
|
|
else if (param is TimeSpan || param is TimeSpan?)
|
|
return ((TimeSpan)param).Ticks / 10;
|
|
else if (param is JToken || param is JObject || param is JArray)
|
|
return string.Concat("'", param.ToString().Replace("'", "''"), "'::jsonb");
|
|
else if ((isdic = param is Dictionary<string, string>) ||
|
|
param is IEnumerable<KeyValuePair<string, string>>)
|
|
{
|
|
var pgdics = isdic ? param as Dictionary<string, string> :
|
|
param as IEnumerable<KeyValuePair<string, string>>;
|
|
if (pgdics == null) return string.Concat("''::hstore");
|
|
var pghstore = new StringBuilder();
|
|
pghstore.Append("'");
|
|
foreach (var dic in pgdics)
|
|
pghstore.Append("\"").Append(dic.Key.Replace("'", "''")).Append("\"=>")
|
|
.Append(dic.Key.Replace("'", "''")).Append(",");
|
|
return pghstore.Append("'::hstore");
|
|
}
|
|
else if (param is IEnumerable)
|
|
return AddslashesIEnumerable(param, mapType, mapColumn);
|
|
|
|
return string.Concat("'", param.ToString().Replace("'", "''"), "'");
|
|
}
|
|
|
|
protected override DbCommand CreateCommand()
|
|
{
|
|
return new NpgsqlCommand();
|
|
}
|
|
|
|
protected override void ReturnConnection(IObjectPool<DbConnection> pool, Object<DbConnection> conn, Exception ex)
|
|
{
|
|
var rawPool = pool as PostgreSQLConnectionPool;
|
|
if (rawPool != null) rawPool.Return(conn, ex);
|
|
else pool.Return(conn);
|
|
}
|
|
|
|
protected override DbParameter[] GetDbParamtersByObject(string sql, object obj) => _util.GetDbParamtersByObject(sql, obj);
|
|
}
|
|
} |