mirror of
https://gitee.com/dotnetchina/SqlSugar.git
synced 2025-04-05 17:37:58 +08:00
Add Demo
This commit is contained in:
parent
76a6d23eae
commit
92a5dc49ca
12
Src/Asp.NetCore2/GbaseTest/GbaseTest.csproj
Normal file
12
Src/Asp.NetCore2/GbaseTest/GbaseTest.csproj
Normal file
@ -0,0 +1,12 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
|
||||
<PropertyGroup>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="System.Data.Odbc" Version="6.0.0" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
14
Src/Asp.NetCore2/GbaseTest/Program.cs
Normal file
14
Src/Asp.NetCore2/GbaseTest/Program.cs
Normal file
@ -0,0 +1,14 @@
|
||||
using System;
|
||||
|
||||
namespace GbaseTest
|
||||
{
|
||||
internal class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
var odbc= new System.Data.Odbc.OdbcConnection(@"Driver={GBase ODBC 8.3 DRIVER};Server=localhost;port=19088;Database=;Protocol=onsoctcp;Uid=gbasedbt;Pwd=GBase123;");
|
||||
odbc.Open();
|
||||
Console.WriteLine("Hello World!");
|
||||
}
|
||||
}
|
||||
}
|
@ -43,9 +43,11 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Json2Sql", "Json2Sql\Json2S
|
||||
EndProject
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "QuestDbTest", "QuestDbTest\QuestDbTest.csproj", "{EBF02572-80A5-4D3A-B0E3-4308F9CF23CF}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "SqlSugar.ClickHouseCore", "SqlSugar.ClickHouseCore\SqlSugar.ClickHouseCore.csproj", "{8C38F3D1-6D72-483C-9DBD-3111D6F5898D}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "SqlSugar.ClickHouseCore", "SqlSugar.ClickHouseCore\SqlSugar.ClickHouseCore.csproj", "{8C38F3D1-6D72-483C-9DBD-3111D6F5898D}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ClickHouseTest", "ClickHouseTest\ClickHouseTest.csproj", "{A5249DEC-D1E8-4D95-8C96-534EF98A3E1B}"
|
||||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ClickHouseTest", "ClickHouseTest\ClickHouseTest.csproj", "{A5249DEC-D1E8-4D95-8C96-534EF98A3E1B}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "GbaseTest", "GbaseTest\GbaseTest.csproj", "{1D047616-7B42-403F-A54A-C677074CDACF}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
@ -309,6 +311,18 @@ Global
|
||||
{A5249DEC-D1E8-4D95-8C96-534EF98A3E1B}.Release|ARM32.Build.0 = Release|Any CPU
|
||||
{A5249DEC-D1E8-4D95-8C96-534EF98A3E1B}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{A5249DEC-D1E8-4D95-8C96-534EF98A3E1B}.Release|x86.Build.0 = Release|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Debug|ARM32.ActiveCfg = Debug|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Debug|ARM32.Build.0 = Debug|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Debug|x86.Build.0 = Debug|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Release|ARM32.ActiveCfg = Release|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Release|ARM32.Build.0 = Release|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Release|x86.ActiveCfg = Release|Any CPU
|
||||
{1D047616-7B42-403F-A54A-C677074CDACF}.Release|x86.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
|
Loading…
Reference in New Issue
Block a user