mirror of
https://github.com/nsnail/FreeSql.git
synced 2025-04-25 04:02:51 +08:00

- 增加 PostgreSQL 的 Odbc 访问提供,相比 FreeSql.Provider.PostgreSQL 支持的类型更少; - 增加 通用的 Odbc 访问提供,不能迁移实体到数据库,不能 Skip 这样来分页,理论上能 crud 所有 odbc 数据库;
161 lines
8.4 KiB
C#
161 lines
8.4 KiB
C#
using FreeSql.Internal;
|
|
using System;
|
|
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using System.Collections.Concurrent;
|
|
using System.Data.Common;
|
|
using System.Linq;
|
|
using System.Net;
|
|
using System.Text;
|
|
using System.Linq.Expressions;
|
|
using System.Reflection;
|
|
using System.Data.Odbc;
|
|
|
|
namespace FreeSql.Odbc.PostgreSQL
|
|
{
|
|
|
|
class OdbcPostgreSQLUtils : CommonUtils
|
|
{
|
|
public OdbcPostgreSQLUtils(IFreeSql orm) : base(orm)
|
|
{
|
|
}
|
|
|
|
static Array getParamterArrayValue(Type arrayType, object value, object defaultValue)
|
|
{
|
|
var valueArr = value as Array;
|
|
var len = valueArr.GetLength(0);
|
|
var ret = Array.CreateInstance(arrayType, len);
|
|
for (var a = 0; a < len; a++)
|
|
{
|
|
var item = valueArr.GetValue(a);
|
|
ret.SetValue(item == null ? defaultValue : getParamterValue(item.GetType(), item, 1), a);
|
|
}
|
|
return ret;
|
|
}
|
|
static Dictionary<string, Func<object, object>> dicGetParamterValue = new Dictionary<string, Func<object, object>> {
|
|
{ typeof(uint).FullName, a => long.Parse(string.Concat(a)) }, { typeof(uint[]).FullName, a => getParamterArrayValue(typeof(long), a, 0) }, { typeof(uint?[]).FullName, a => getParamterArrayValue(typeof(long?), a, null) },
|
|
{ typeof(ulong).FullName, a => decimal.Parse(string.Concat(a)) }, { typeof(ulong[]).FullName, a => getParamterArrayValue(typeof(decimal), a, 0) }, { typeof(ulong?[]).FullName, a => getParamterArrayValue(typeof(decimal?), a, null) },
|
|
{ typeof(ushort).FullName, a => int.Parse(string.Concat(a)) }, { typeof(ushort[]).FullName, a => getParamterArrayValue(typeof(int), a, 0) }, { typeof(ushort?[]).FullName, a => getParamterArrayValue(typeof(int?), a, null) },
|
|
{ typeof(byte).FullName, a => short.Parse(string.Concat(a)) }, { typeof(byte[]).FullName, a => getParamterArrayValue(typeof(short), a, 0) }, { typeof(byte?[]).FullName, a => getParamterArrayValue(typeof(short?), a, null) },
|
|
{ typeof(sbyte).FullName, a => short.Parse(string.Concat(a)) }, { typeof(sbyte[]).FullName, a => getParamterArrayValue(typeof(short), a, 0) }, { typeof(sbyte?[]).FullName, a => getParamterArrayValue(typeof(short?), a, null) },
|
|
};
|
|
static object getParamterValue(Type type, object value, int level = 0)
|
|
{
|
|
if (type.FullName == "System.Byte[]") return value;
|
|
if (type.IsArray && level == 0)
|
|
{
|
|
var elementType = type.GetElementType();
|
|
Type enumType = null;
|
|
if (elementType.IsEnum) enumType = elementType;
|
|
else if (elementType.IsNullableType() && elementType.GenericTypeArguments.First().IsEnum) enumType = elementType.GenericTypeArguments.First();
|
|
if (enumType != null) return enumType.GetCustomAttributes(typeof(FlagsAttribute), false).Any() ?
|
|
getParamterArrayValue(typeof(long), value, elementType.IsEnum ? null : Enum.GetValues(enumType).GetValue(0)) :
|
|
getParamterArrayValue(typeof(int), value, elementType.IsEnum ? null : Enum.GetValues(enumType).GetValue(0));
|
|
return dicGetParamterValue.TryGetValue(type.FullName, out var trydicarr) ? trydicarr(value) : value;
|
|
}
|
|
if (type.IsNullableType()) type = type.GenericTypeArguments.First();
|
|
if (type.IsEnum) return (int)value;
|
|
if (dicGetParamterValue.TryGetValue(type.FullName, out var trydic)) return trydic(value);
|
|
return value;
|
|
}
|
|
|
|
public override DbParameter AppendParamter(List<DbParameter> _params, string parameterName, Type type, object value)
|
|
{
|
|
if (string.IsNullOrEmpty(parameterName)) parameterName = $"p_{_params?.Count}";
|
|
if (value != null) value = getParamterValue(type, value);
|
|
var ret = new OdbcParameter { ParameterName = QuoteParamterName(parameterName), Value = value };
|
|
//if (value.GetType().IsEnum || value.GetType().GenericTypeArguments.FirstOrDefault()?.IsEnum == true) {
|
|
// ret.DataTypeName = "";
|
|
//} else {
|
|
var tp = _orm.CodeFirst.GetDbInfo(type)?.type;
|
|
if (tp != null) ret.OdbcType = (OdbcType)tp.Value;
|
|
//}
|
|
_params?.Add(ret);
|
|
return ret;
|
|
}
|
|
|
|
public override DbParameter[] GetDbParamtersByObject(string sql, object obj) =>
|
|
Utils.GetDbParamtersByObject<OdbcParameter>(sql, obj, null, (name, type, value) =>
|
|
{
|
|
if (value != null) value = getParamterValue(type, value);
|
|
var ret = new OdbcParameter { ParameterName = $"@{name}", Value = value };
|
|
//if (value.GetType().IsEnum || value.GetType().GenericTypeArguments.FirstOrDefault()?.IsEnum == true) {
|
|
// ret.DataTypeName = "";
|
|
//} else {
|
|
var tp = _orm.CodeFirst.GetDbInfo(type)?.type;
|
|
if (tp != null) ret.OdbcType = (OdbcType)tp.Value;
|
|
//}
|
|
return ret;
|
|
});
|
|
|
|
public override string FormatSql(string sql, params object[] args) => sql?.FormatOdbcPostgreSQL(args);
|
|
public override string QuoteSqlName(string name)
|
|
{
|
|
var nametrim = name.Trim();
|
|
if (nametrim.StartsWith("(") && nametrim.EndsWith(")"))
|
|
return nametrim; //原生SQL
|
|
return $"\"{nametrim.Trim('"').Replace(".", "\".\"")}\"";
|
|
}
|
|
public override string TrimQuoteSqlName(string name)
|
|
{
|
|
var nametrim = name.Trim();
|
|
if (nametrim.StartsWith("(") && nametrim.EndsWith(")"))
|
|
return nametrim; //原生SQL
|
|
return $"{nametrim.Trim('"').Replace("\".\"", ".").Replace(".\"", ".")}";
|
|
}
|
|
public override string QuoteParamterName(string name) => $"@{(_orm.CodeFirst.IsSyncStructureToLower ? name.ToLower() : name)}";
|
|
public override string IsNull(string sql, object value) => $"coalesce({sql}, {value})";
|
|
public override string StringConcat(string[] objs, Type[] types) => $"{string.Join(" || ", objs)}";
|
|
public override string Mod(string left, string right, Type leftType, Type rightType) => $"{left} % {right}";
|
|
public override string Div(string left, string right, Type leftType, Type rightType) => $"{left} / {right}";
|
|
|
|
public override string QuoteWriteParamter(Type type, string paramterName) => paramterName;
|
|
public override string QuoteReadColumn(Type type, string columnName) => columnName;
|
|
|
|
public override string GetNoneParamaterSqlValue(List<DbParameter> specialParams, Type type, object value)
|
|
{
|
|
if (value == null) return "NULL";
|
|
value = getParamterValue(type, value);
|
|
var type2 = value.GetType();
|
|
if (type2 == typeof(byte[]))
|
|
{
|
|
var bytes = value as byte[];
|
|
var sb = new StringBuilder().Append("'\\x");
|
|
foreach (var vc in bytes)
|
|
{
|
|
if (vc < 10) sb.Append("0");
|
|
sb.Append(vc.ToString("X"));
|
|
}
|
|
return sb.Append("'").ToString(); //val = Encoding.UTF8.GetString(val as byte[]);
|
|
}
|
|
else if (type2 == typeof(TimeSpan) || type2 == typeof(TimeSpan?))
|
|
{
|
|
var ts = (TimeSpan)value;
|
|
return $"'{Math.Min(24, (int)Math.Floor(ts.TotalHours))}:{ts.Minutes}:{ts.Seconds}'";
|
|
}
|
|
else if (value is Array)
|
|
{
|
|
var valueArr = value as Array;
|
|
var eleType = type2.GetElementType();
|
|
var len = valueArr.GetLength(0);
|
|
var sb = new StringBuilder().Append("ARRAY[");
|
|
for (var a = 0; a < len; a++)
|
|
{
|
|
var item = valueArr.GetValue(a);
|
|
if (a > 0) sb.Append(",");
|
|
sb.Append(GetNoneParamaterSqlValue(specialParams, eleType, item));
|
|
}
|
|
sb.Append("]");
|
|
var dbinfo = _orm.CodeFirst.GetDbInfo(type);
|
|
if (dbinfo.HasValue) sb.Append("::").Append(dbinfo.Value.dbtype);
|
|
return sb.ToString();
|
|
}
|
|
else if (dicGetParamterValue.ContainsKey(type2.FullName))
|
|
{
|
|
value = string.Concat(value);
|
|
}
|
|
return FormatSql("{0}", value, 1);
|
|
}
|
|
}
|
|
}
|