- 增加 人大金仓 OdbcKingbaseES 实现;#325

This commit is contained in:
28810
2020-05-27 05:59:33 +08:00
parent 0d6ebc1e26
commit 7d8457a988
57 changed files with 11687 additions and 188 deletions

View File

@ -0,0 +1,25 @@
using FreeSql.DataAnnotations;
using System;
using Xunit;
namespace FreeSql.Tests.Odbc.KingbaseES
{
public class KingbaseESDbFirstTest
{
[Fact]
public void GetDatabases()
{
var t1 = g.kingbaseES.DbFirst.GetDatabases();
}
[Fact]
public void GetTablesByDatabase()
{
//var t2 = g.kingbaseES.DbFirst.GetTablesByDatabase();
//var tb = g.kingbaseES.Ado.ExecuteArray(System.Data.CommandType.Text, "select * from \"tb_dbfirst\"");
}
}
}