| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227 |
- //
- // System.Data.SqlClient.SqlParameter.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- //
- // (C) Ximian, Inc. 2002
- //
- using System;
- using System.ComponentModel;
- using System.Data;
- using System.Data.Common;
- using System.Runtime.InteropServices;
- namespace System.Data.SqlClient
- {
- /// <summary>
- /// Represents a parameter to a Command object, and optionally,
- /// its mapping to DataSet columns; and is implemented by .NET
- /// data providers that access data sources.
- /// </summary>
- //public sealed class SqlParameter : MarshalByRefObject,
- // IDbDataParameter, IDataParameter, ICloneable
- public sealed class SqlParameter : IDbDataParameter, IDataParameter
- {
- private string parmName;
- private SqlDbType dbtype;
- private DbType theDbType;
- private object objValue;
- private int size;
- private string sourceColumn;
- private ParameterDirection direction;
- private bool isNullable;
- private byte precision;
- private byte scale;
- private DataRowVersion sourceVersion;
- private int offset;
- [MonoTODO]
- public SqlParameter () {
-
- }
- [MonoTODO]
- public SqlParameter (string parameterName, object value) {
- this.parmName = parameterName;
- this.objValue = value;
- }
-
- [MonoTODO]
- public SqlParameter(string parameterName, SqlDbType dbType) {
- this.parmName = parameterName;
- this.dbtype = dbType;
- }
- [MonoTODO]
- public SqlParameter(string parameterName, SqlDbType dbType,
- int size) {
- this.parmName = parameterName;
- this.dbtype = dbType;
- this.size = size;
- }
-
- [MonoTODO]
- public SqlParameter(string parameterName, SqlDbType dbType,
- int size, string sourceColumn) {
- this.parmName = parameterName;
- this.dbtype = dbType;
- this.size = size;
- this.sourceColumn = sourceColumn;
- }
-
- [MonoTODO]
- public SqlParameter(string parameterName, SqlDbType dbType,
- int size, ParameterDirection direction,
- bool isNullable, byte precision,
- byte scale, string sourceColumn,
- DataRowVersion sourceVersion, object value) {
-
- this.parmName = parameterName;
- this.dbtype = dbType;
- this.size = size;
- this.sourceColumn = sourceColumn;
- this.direction = direction;
- this.isNullable = isNullable;
- this.precision = precision;
- this.scale = scale;
- this.sourceVersion = sourceVersion;
- this.objValue = value;
- }
- [MonoTODO]
- public DbType DbType {
- get {
- return theDbType;
- }
- set {
- theDbType = value;
- }
- }
- [MonoTODO]
- public ParameterDirection Direction {
- get {
- return direction;
- }
- set {
- direction = value;
- }
- }
- [MonoTODO]
- public bool IsNullable {
- get {
- return isNullable;
- }
- }
- [MonoTODO]
- public int Offset {
- get {
- return offset;
- }
-
- set {
- offset = value;
- }
- }
- [MonoTODO]
- public string ParameterName {
- get {
- return parmName;
- }
- set {
- parmName = value;
- }
- }
- [MonoTODO]
- public string SourceColumn {
- get {
- return sourceColumn;
- }
- set {
- sourceColumn = value;
- }
- }
- [MonoTODO]
- public DataRowVersion SourceVersion {
- get {
- return sourceVersion;
- }
- set {
- sourceVersion = value;
- }
- }
-
- [MonoTODO]
- public SqlDbType SqlDbType {
- get {
- return dbtype;
- }
-
- set {
- dbtype = value;
- }
- }
- [MonoTODO]
- public object Value {
- get {
- return objValue;
- }
- set {
- objValue = value;
- }
- }
- [MonoTODO]
- public byte Precision {
- get {
- return precision;
- }
- set {
- precision = value;
- }
- }
- [MonoTODO]
- public byte Scale {
- get {
- return scale;
- }
- set {
- scale = value;
- }
- }
- [MonoTODO]
- public int Size
- {
- get {
- return size;
- }
- set {
- size = value;
- }
- }
- [MonoTODO]
- public override string ToString() {
- return parmName;
- }
- }
- }
|