mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-08-23 22:11:36 +08:00
Update odbc
This commit is contained in:
parent
ca6b714e70
commit
1b0b7d8b38
@ -9,8 +9,8 @@ namespace SqlSugar.Odbc
|
|||||||
{
|
{
|
||||||
public class OdbcBuilder : SqlBuilderProvider
|
public class OdbcBuilder : SqlBuilderProvider
|
||||||
{
|
{
|
||||||
public override string SqlTranslationLeft { get { return ""; } }
|
public override string SqlTranslationLeft { get { return OdbcConfig.SqlTranslationLeft; } }
|
||||||
public override string SqlTranslationRight { get { return ""; } }
|
public override string SqlTranslationRight { get { return OdbcConfig.SqlTranslationRight; } }
|
||||||
public override string GetNoTranslationColumnName(string name)
|
public override string GetNoTranslationColumnName(string name)
|
||||||
{
|
{
|
||||||
return name;
|
return name;
|
||||||
|
12
Src/Asp.Net/SqlSugar.Odbc/OdbcConfig.cs
Normal file
12
Src/Asp.Net/SqlSugar.Odbc/OdbcConfig.cs
Normal 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="";
|
||||||
|
}
|
||||||
|
}
|
@ -64,6 +64,7 @@
|
|||||||
<Compile Include="GBase\SqlBuilder\GBaseInsertBuilder.cs" />
|
<Compile Include="GBase\SqlBuilder\GBaseInsertBuilder.cs" />
|
||||||
<Compile Include="GBase\SqlBuilder\GBaseQueryBuilder.cs" />
|
<Compile Include="GBase\SqlBuilder\GBaseQueryBuilder.cs" />
|
||||||
<Compile Include="GBase\SqlBuilder\GBaseUpdateBuilder.cs" />
|
<Compile Include="GBase\SqlBuilder\GBaseUpdateBuilder.cs" />
|
||||||
|
<Compile Include="OdbcConfig.cs" />
|
||||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||||
<Compile Include="Tools\ErrorMessage.cs" />
|
<Compile Include="Tools\ErrorMessage.cs" />
|
||||||
<Compile Include="Tools\FileHelper.cs" />
|
<Compile Include="Tools\FileHelper.cs" />
|
||||||
|
Loading…
Reference in New Issue
Block a user