-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathProgram.cs
More file actions
42 lines (40 loc) · 1.7 KB
/
Program.cs
File metadata and controls
42 lines (40 loc) · 1.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//*******************************************************************//
// Active Query Builder Component Suite //
// //
// Copyright © 2006-2025 Active Database Software //
// ALL RIGHTS RESERVED //
// //
// CONSULT THE LICENSE AGREEMENT FOR INFORMATION ON //
// RESTRICTIONS. //
//*******************************************************************//
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
using ActiveQueryBuilder.Core;
using MetadataEditorDemo.Common;
namespace MetadataEditorDemo
{
static class Program
{
/// <summary>
/// ������� ����� ����� ��� ����������.
/// </summary>
[STAThread]
static void Main()
{
MSSQLConnectionDescriptor.Register();
ODBCConnectionDescriptor.Register();
OLEDBConnectionDescriptor.Register();
OracleNativeConnectionDescriptor.Register();
MySQLConnectionDescriptor.Register();
FirebirdConnectionDescriptor.Register();
SybaseConnectionDescriptor.Register();
PostgreSQLConnectionDescriptor.Register();
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MetadataEditor());
}
}
}