From 758262b19c976ce75f0916083ab14c18a2f363f6 Mon Sep 17 00:00:00 2001 From: Inakollu Hemanth Date: Wed, 20 Jul 2016 10:15:46 +0530 Subject: [PATCH 1/2] Create Program.cs --- coreclr-base/Program.cs | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 coreclr-base/Program.cs diff --git a/coreclr-base/Program.cs b/coreclr-base/Program.cs new file mode 100644 index 0000000..be46405 --- /dev/null +++ b/coreclr-base/Program.cs @@ -0,0 +1,39 @@ +using ddtek.d2ccore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace TestApp +{ + public class Program + { + public static void Main(string[] args) + + { + try + { + //D2CCoreConnection con = null; + // D2CCoreCommand command = null; + // D2CCoreDataReader reader = null; + DDCloudImplConnection con = new DDCloudImplConnection(); + // con = new D2CCoreConnection(); + con.open(); + Console.WriteLine("Connection Successfull"); + //command = new D2CCoreCommand("select * from ", con); + //reader = command.Executereader(); + + //while (reader.Read()) + //{ + + //} + } + + catch (Exception ex) + { + Console.WriteLine(ex.Message); + } + + } + } +} From 94b8a4cea983539f1084f573621d026023a6d809 Mon Sep 17 00:00:00 2001 From: Inakollu Hemanth Date: Wed, 20 Jul 2016 10:30:29 +0530 Subject: [PATCH 2/2] Update Program.cs --- coreclr-base/Program.cs | 38 -------------------------------------- 1 file changed, 38 deletions(-) diff --git a/coreclr-base/Program.cs b/coreclr-base/Program.cs index be46405..8b13789 100644 --- a/coreclr-base/Program.cs +++ b/coreclr-base/Program.cs @@ -1,39 +1 @@ -using ddtek.d2ccore; -using System; -using System.Collections.Generic; -using System.Linq; -using System.Threading.Tasks; -namespace TestApp -{ - public class Program - { - public static void Main(string[] args) - - { - try - { - //D2CCoreConnection con = null; - // D2CCoreCommand command = null; - // D2CCoreDataReader reader = null; - DDCloudImplConnection con = new DDCloudImplConnection(); - // con = new D2CCoreConnection(); - con.open(); - Console.WriteLine("Connection Successfull"); - //command = new D2CCoreCommand("select * from ", con); - //reader = command.Executereader(); - - //while (reader.Read()) - //{ - - //} - } - - catch (Exception ex) - { - Console.WriteLine(ex.Message); - } - - } - } -}