2024-11-13 18:18:28 +08:00

41 lines
1.6 KiB
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Data.Odbc;
using System.Diagnostics;
using System.Text;
using System.Threading;
public class g
{
static Lazy<IFreeSql> gbaseLazy = new Lazy<IFreeSql>(() =>
{
var build = new OdbcConnectionStringBuilder();
build.Driver = "GBase ODBC DRIVER (64-Bit)"; // 在系统中注册的驱动名称
build.Add("Host", "192.168.164.134"); // 主机地址或者IP地址
build.Add("Service", "9088"); // 数据库服务器的使用的端口号
build.Add("Server", "gbase01"); // 数据库服务名称
build.Add("Database", "testdb"); // 数据库名DBNAME
build.Add("Protocol", "onsoctcp"); // 网络协议名称
build.Add("Uid", "gbasedbt"); // 用户
build.Add("Pwd", "GBase123"); // 密码
build.Add("Db_locale", "zh_CN.utf8"); // 数据库字符集
build.Add("Client_locale", "zh_CN.utf8"); // 客户端字符集
return new FreeSql.FreeSqlBuilder()
.UseConnectionString(FreeSql.DataType.GBase, build.ConnectionString)
.UseAutoSyncStructure(true)
.UseLazyLoading(true)
.UseMonitorCommand(
cmd => Trace.WriteLine(cmd.CommandText), //监听SQL命令对象在执行前
(cmd, traceLog) => Console.WriteLine(traceLog))
.Build();
});
public static IFreeSql gbase => gbaseLazy.Value;
//su - gbasedbt
//oninit -vy
}