* Updated all Enums, Interfaces, and Delegates in System.Data
[mono.git] / mcs / class / System.Data / System.Data / IDbDataParameter.cs
1 //
2 // System.Data.IDbDataParameter.cs
3 //
4 // Author:
5 //   Christopher Podurgiel (cpodurgiel@msn.com)
6 //
7 // (C) Chris Podurgiel
8 //
9
10 namespace System.Data
11 {
12         /// <summary>
13         /// Used by the Visual Basic .NET Data Designers to represent a parameter to a Command object, and optionally, its mapping to DataSet columns.
14         /// </summary>
15         public interface IDbDataParameter
16         {
17                 byte Precision{get; set;}
18
19                 byte Scale{get; set;}
20
21                 int Size{get; set;}
22         }       
23 }