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

IDbDataParameter.cs « System.Data « System.Data « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5eeba6911794821b11f6b0ea12165844f5260ab2 (plain)
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
//
// System.Data.IDbDataParameter.cs
//
// Author:
//   Christopher Podurgiel (cpodurgiel@msn.com)
//
// (C) Chris Podurgiel
//

using System;

namespace System.Data
{
	/// <summary>
	/// Used by the Visual Basic .NET Data Designers to represent a parameter to a Command object, and optionally, its mapping to DataSet columns.
	/// </summary>
	public interface IDbDataParameter : IDataParameter
	{
		byte Precision{get; set;}

		byte Scale{get; set;}

		int Size{get; set;}
	}	
}