Welcome to mirror list, hosted at ThFree Co, Russian Federation.

TestOleDb.cs « System.Data.OleDb « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b63827d043f672b682879d2b41eef1bbc94dccc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Data.OleDb;

namespace System.Data.OleDb.Test
{
	public class TestOleDb
	{
		private OleDbConnection m_cnc;
		
		private TestOleDb ()
		{
			m_cnc = new OleDbConnection ("PostgreSQL");
		}
		
		static void Main (string[] args)
		{
			TestOleDb test = new TestOleDb ();
		}
	}
}