Skip to content

Commit 584c77f

Browse files
committed
Beta1
1 parent 9dd8464 commit 584c77f

File tree

8 files changed

+1225
-2
lines changed

8 files changed

+1225
-2
lines changed

T4SQLTemplateLibrary/ConsoleTest/App.Config

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,9 @@
88
<add name="T4SQLDB" providerName="Oracle.ManagedDataAccess.Client" connectionString="Data Source=ORCL;User Id=/" />
99
</connectionStrings>
1010
<appSettings>
11+
<!-- For SQL Server -->
1112
<!--<add key="Engine_Package" value="T4SQL.ENGINE_" />-->
13+
<!-- For Oracle -->
1214
<add key="Engine_Package" value="T4SQL.ENGINE." />
1315
</appSettings>
1416
<runtime>

T4SQLTemplateLibrary/ConsoleTest/Program.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ static void Main(string[] args)
1111

1212
engineMain.Start();
1313

14-
engineMain.WriteDebug("Press the Escape (Esc) key to quit the Template Engine at any time:");
14+
Console.WriteLine("Press the Escape (Esc) key to quit the Template Engine at any time:");
1515

1616
while (Console.ReadKey().Key != ConsoleKey.Escape) ;
1717

18-
engineMain.WriteDebug("Stopping...");
18+
Console.WriteLine("Stopping...");
1919
engineMain.Stop();
2020
}
2121
}

0 commit comments

Comments
 (0)