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

SqlErrors.cs « System.Data.SqlClient « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6bcb3668620ae6507da75fb9b584bbdf26fb5240 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
//
// System.Data.SqlClient.SqlDataReader.cs
//
// Author:
//   Rodrigo Moya (rodrigo@ximian.com)
//
// (C) Ximian, Inc
//

namespace System.Data.SqlClient
{
	/// <summary>
	/// Provides a means of reading one or more forward-only streams of result sets obtained by executing a command at a SQL database.
	/// </summary>
	public class SqlErrors : ICollection, IEnumerable
	{
		// TODO

	}
}