Update Odbc

This commit is contained in:
sunkaixuan 2024-04-01 18:06:09 +08:00
parent dc96069dff
commit ca6b714e70
2 changed files with 14 additions and 2 deletions

View File

@ -9,8 +9,8 @@ namespace SqlSugar.Odbc
{
public class OdbcBuilder : SqlBuilderProvider
{
public override string SqlTranslationLeft { get { return ""; } }
public override string SqlTranslationRight { get { return ""; } }
public override string SqlTranslationLeft { get { return OdbcConfig.SqlTranslationLeft; } }
public override string SqlTranslationRight { get { return OdbcConfig.SqlTranslationRight; } }
public override string GetNoTranslationColumnName(string name)
{
return name;

View File

@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Text;
namespace SqlSugar.Odbc
{
public class OdbcConfig
{
public static string SqlTranslationLeft ="";
public static string SqlTranslationRight="";
}
}