C2017-003: Support SQL Server for storing of Referenced Object data

This commit is contained in:
2020-01-09 15:45:12 +00:00
parent de58331ffb
commit c44181bc3f
12 changed files with 1507 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace RoAccessToSql
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main(string[] args)
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new RoAccessToSql(args));
}
}
}