Brow.SQL 1.0.0

There is a newer version of this package available.
See the version list below for details.
dotnet add package Brow.SQL --version 1.0.0
NuGet\Install-Package Brow.SQL -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Brow.SQL" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Brow.SQL --version 1.0.0
#r "nuget: Brow.SQL, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Brow.SQL as a Cake Addin
#addin nuget:?package=Brow.SQL&version=1.0.0

// Install Brow.SQL as a Cake Tool
#tool nuget:?package=Brow.SQL&version=1.0.0
       Brow.SQL lib库使用
        string configsql = "";
        string sql = "";
        string sql1 = "";
        List<string> list = new List<string>();
        list.Add(sql1);
        DataTable data;
        EnumSQL enumSQL;

        第一种调用方法
        var factory = new SQLServerConnectionFactory();
        factory.Register(configsql);
        enumSQL = factory.GetDataTable(sql, out data);
        enumSQL = factory.ExecuteCommand(sql1);
        enumSQL = factory.ExecuteTran(list);
        第一种调用方法的链式调用
        Brow.SQL.IConnectionFactory fac = new SQLServerConnectionFactory();
        enumSQL = fac.GetDefaultFactory(configsql).GetDataTable(sql, out data);


        第二种调用方法
        Brow.SQL.IConnectionFactory f = SQLServerConnectionFactory.GetDirectFactory(configsql);
        enumSQL = f.GetDataTable(sql, out data);
        enumSQL = f.ExecuteCommand(sql1);
        第一种调用方法的链式调用
        enumSQL = SQLServerConnectionFactory.GetDirectFactory(configsql).GetDataTable(sql, out data);


        错误调用--抛出异常Brow.SQL.BrowException: 未初始化连接工厂
        SQLServerConnectionFactory ss = new SQLServerConnectionFactory();
        ss.GetDataTable(sql, out data);
Product Compatible and additional computed target framework versions.
.NET Framework net is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.1 1,160 1/30/2018
1.0.0 952 1/29/2018