| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846 |
- //
- // System.Data.SqlClient.SqlParameter.cs
- //
- // Author:
- // Rodrigo Moya ([email protected])
- // Daniel Morgan ([email protected])
- // Tim Coleman ([email protected])
- // Diego Caravana ([email protected])
- // Umadevi S ([email protected])
- //
- // (C) Ximian, Inc. 2002
- // Copyright (C) Tim Coleman, 2002
- //
- //
- // Copyright (C) 2004 Novell, Inc (http://www.novell.com)
- //
- // Permission is hereby granted, free of charge, to any person obtaining
- // a copy of this software and associated documentation files (the
- // "Software"), to deal in the Software without restriction, including
- // without limitation the rights to use, copy, modify, merge, publish,
- // distribute, sublicense, and/or sell copies of the Software, and to
- // permit persons to whom the Software is furnished to do so, subject to
- // the following conditions:
- //
- // The above copyright notice and this permission notice shall be
- // included in all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
- // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
- // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
- // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
- // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
- //
- using Mono.Data.Tds;
- using Mono.Data.Tds.Protocol;
- using System;
- using System.ComponentModel;
- using System.Data;
- using System.Data.Common;
- #if NET_2_0
- using System.Data.ProviderBase;
- #endif // NET_2_0
- using System.Data.SqlTypes;
- using System.Runtime.InteropServices;
- using System.Text;
- namespace System.Data.SqlClient {
- [TypeConverterAttribute (typeof (SqlParameterConverter))]
- #if NET_2_0
- public sealed class SqlParameter : DbParameterBase, IDbDataParameter, IDataParameter, ICloneable
- #else
- public sealed class SqlParameter : MarshalByRefObject, IDbDataParameter, IDataParameter, ICloneable
- #endif // NET_2_0
- {
- #region Fields
- TdsMetaParameter metaParameter;
- SqlParameterCollection container = null;
- DbType dbType;
- ParameterDirection direction = ParameterDirection.Input;
- bool isNullable;
- bool isVariableSizeType = false;
- bool isTypeSet = false;
- int offset;
- SqlDbType sqlDbType;
- string sourceColumn;
- DataRowVersion sourceVersion;
- #endregion // Fields
- #region Constructors
- public SqlParameter ()
- : this (String.Empty, SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, String.Empty, DataRowVersion.Current, null)
- {
- isTypeSet = false;
- }
- public SqlParameter (string parameterName, object value)
- {
- metaParameter = new TdsMetaParameter (parameterName, SqlTypeToFrameworkType (value));
- this.sourceVersion = DataRowVersion.Current;
- InferSqlType (value);
- }
-
- public SqlParameter (string parameterName, SqlDbType dbType)
- : this (parameterName, dbType, 0, ParameterDirection.Input, false, 0, 0, String.Empty, DataRowVersion.Current, null)
- {
- }
- public SqlParameter (string parameterName, SqlDbType dbType, int size)
- : this (parameterName, dbType, size, ParameterDirection.Input, false, 0, 0, String.Empty, DataRowVersion.Current, null)
- {
- }
-
- public SqlParameter (string parameterName, SqlDbType dbType, int size, string sourceColumn)
- : this (parameterName, dbType, size, ParameterDirection.Input, false, 0, 0, sourceColumn, DataRowVersion.Current, null)
- {
- }
-
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- public SqlParameter (string parameterName, SqlDbType dbType, int size, ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value)
- {
- metaParameter = new TdsMetaParameter (parameterName, size,
- isNullable, precision,
- scale,
- SqlTypeToFrameworkType (value));
- SqlDbType = dbType;
- Direction = direction;
- SourceColumn = sourceColumn;
- SourceVersion = sourceVersion;
- }
- // This constructor is used internally to construct a
- // SqlParameter. The value array comes from sp_procedure_params_rowset.
- // This is in SqlCommand.DeriveParameters.
- internal SqlParameter (object[] dbValues)
- : this (dbValues [3].ToString (), String.Empty)
- {
- Precision = 0;
- Scale = 0;
- Direction = ParameterDirection.Input;
- ParameterName = (string) dbValues[3];
- switch ((short) dbValues[5]) {
- case 1:
- Direction = ParameterDirection.Input;
- break;
- case 2:
- Direction = ParameterDirection.Output;
- break;
- case 3:
- Direction = ParameterDirection.InputOutput;
- break;
- case 4:
- Direction = ParameterDirection.ReturnValue;
- break;
- default:
- Direction = ParameterDirection.Input;
- break;
- }
- IsNullable = (dbValues [8] != null &&
- dbValues [8] != DBNull.Value) ? (bool) dbValues [8] : false;
- if (dbValues [12] != null && dbValues [12] != DBNull.Value)
- Precision = (byte) ((short) dbValues [12]);
- if (dbValues [13] != null && dbValues [13] != DBNull.Value)
- Scale = (byte) ( (short) dbValues [13]);
- SetDbTypeName ((string) dbValues [16]);
- }
- #endregion // Constructors
- #region Properties
- // Used to ensure that only one collection can contain this
- // parameter
- internal SqlParameterCollection Container {
- get { return container; }
- set { container = value; }
- }
- internal void CheckIfInitialized ()
- {
- if (!isTypeSet)
- throw new Exception ("all parameters to have an explicity set type");
- if (isVariableSizeType) {
- if (SqlDbType == SqlDbType.Decimal && Precision == 0)
- throw new Exception ("Parameter of type 'Decimal' have an explicitly set Precision and Scale");
- else if (Size == 0)
- throw new Exception ("all variable length parameters to have an explicitly set non-zero Size");
- }
- }
- #if ONLY_1_0 || ONLY_1_1
- [Browsable (false)]
- [DataSysDescription ("The parameter generic type.")]
- [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
- [RefreshProperties (RefreshProperties.All)]
- #endif
- [DataCategory ("Data")]
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- DbType DbType {
- get { return dbType; }
- set {
- SetDbType (value);
- isTypeSet = true;
- }
- }
- [DataCategory ("Data")]
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("Input, output, or bidirectional parameter.")]
- [DefaultValue (ParameterDirection.Input)]
- #endif
- #if NET_2_0
- [RefreshProperties (RefreshProperties.All)]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- ParameterDirection Direction {
- get { return direction; }
- set {
- direction = value;
- switch( direction ) {
- case ParameterDirection.Output:
- MetaParameter.Direction = TdsParameterDirection.Output;
- break;
- case ParameterDirection.InputOutput:
- MetaParameter.Direction = TdsParameterDirection.InputOutput;
- break;
- case ParameterDirection.ReturnValue:
- MetaParameter.Direction = TdsParameterDirection.ReturnValue;
- break;
- }
- }
- }
- internal TdsMetaParameter MetaParameter {
- get { return metaParameter; }
- }
- string IDataParameter.ParameterName {
- get { return metaParameter.ParameterName; }
- set { metaParameter.ParameterName = value; }
- }
- #if ONLY_1_0 || ONLY_1_1
- [Browsable (false)]
- [DataSysDescription ("a design-time property used for strongly typed code-generation.")]
- [DefaultValue (false)]
- [DesignOnly (true)]
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- bool IsNullable {
- get { return metaParameter.IsNullable; }
- set { metaParameter.IsNullable = value; }
- }
- [Browsable (false)]
- [DataCategory ("Data")]
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("Offset in variable length data types.")]
- [DefaultValue (0)]
- #endif
- #if NET_2_0
- [EditorBrowsable (EditorBrowsableState.Advanced)]
- #endif
- public
- #if NET_2_0
- override
- #endif
- int Offset {
- get { return offset; }
- set { offset = value; }
- }
-
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("Name of the parameter, like '@p1'")]
- [DefaultValue ("")]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- string ParameterName {
- get { return metaParameter.ParameterName; }
- set { metaParameter.ParameterName = value; }
- }
- [DataCategory ("Data")]
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("For decimal, numeric, varnumeric DBTypes.")]
- [DefaultValue (0)]
- #endif
- #if NET_2_0
- [Browsable (false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- byte Precision {
- get { return metaParameter.Precision; }
- set { metaParameter.Precision = value; }
- }
- [DataCategory ("Data")]
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("For decimal, numeric, varnumeric DBTypes.")]
- [DefaultValue (0)]
- #endif
- #if NET_2_0
- [Browsable (false)]
- [EditorBrowsable (EditorBrowsableState.Never)]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- byte Scale {
- get { return metaParameter.Scale; }
- set { metaParameter.Scale = value; }
- }
- [DataCategory ("Data")]
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("Size of variable length data types (string & arrays).")]
- [DefaultValue (0)]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- int Size {
- get { return metaParameter.Size; }
- set { metaParameter.Size = value; }
- }
- [DataCategory ("Data")]
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("When used by a DataAdapter.Update, the source column name that is used to find the DataSetColumn name in the ColumnMappings. This is to copy a value between the parameter and a datarow.")]
- [DefaultValue ("")]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- string SourceColumn {
- get { return sourceColumn; }
- set { sourceColumn = value; }
- }
- [DataCategory ("Data")]
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("When used by a DataAdapter.Update (UpdateCommand only), the version of the DataRow value that is used to update the data source.")]
- [DefaultValue (DataRowVersion.Current)]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- DataRowVersion SourceVersion {
- get { return sourceVersion; }
- set { sourceVersion = value; }
- }
-
- [DataCategory ("Data")]
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("The parameter native type.")]
- [DefaultValue (SqlDbType.NVarChar)]
- #endif
- [RefreshProperties (RefreshProperties.All)]
- #if NET_2_0
- [DbProviderSpecificTypeProperty(true)]
- #endif
- public SqlDbType SqlDbType {
- get { return sqlDbType; }
- set {
- SetSqlDbType (value);
- isTypeSet = true;
- }
- }
- [DataCategory ("Data")]
- #if ONLY_1_0 || ONLY_1_1
- [DataSysDescription ("Value of the parameter.")]
- [DefaultValue (null)]
- #endif
- [TypeConverterAttribute (typeof (StringConverter))]
- #if NET_2_0
- [RefreshProperties (RefreshProperties.All)]
- #endif
- public
- #if NET_2_0
- override
- #endif // NET_2_0
- object Value {
- get { return metaParameter.Value; }
- set {
- if (!isTypeSet)
- InferSqlType (value);
- metaParameter.Value = SqlTypeToFrameworkType (value);
- }
- }
- //#if NET_2_0
- // public SqlCompareOptions CompareInfo{
- //#endif
- #if NET_2_0
- public override bool SourceColumnNullMapping {
- get { return false ; }
- set { }
- }
- #endif
- #endregion // Properties
- #region Methods
- object ICloneable.Clone ()
- {
- return new SqlParameter (ParameterName, SqlDbType, Size, Direction, IsNullable, Precision, Scale, SourceColumn, SourceVersion, Value);
- }
- // If the value is set without the DbType/SqlDbType being set, then we
- // infer type information.
- private void InferSqlType (object value)
- {
- Type type = value.GetType ();
- string exception = String.Format ("The parameter data type of {0} is invalid.", type.Name);
- switch (type.FullName) {
- case "System.Int64":
- case "System.Data.SqlTypes.SqlInt64":
- SetSqlDbType (SqlDbType.BigInt);
- break;
- case "System.Boolean":
- case "System.Data.SqlTypes.SqlBoolean":
- SetSqlDbType (SqlDbType.Bit);
- break;
- case "System.String":
- case "System.Data.SqlTypes.SqlString":
- SetSqlDbType (SqlDbType.NVarChar);
- break;
- case "System.DateTime":
- case "System.Data.SqlTypes.SqlDateTime":
- SetSqlDbType (SqlDbType.DateTime);
- break;
- case "System.Decimal":
- case "System.Data.SqlTypes.SqlDecimal":
- SetSqlDbType (SqlDbType.Decimal);
- break;
- case "System.Double":
- case "System.Data.SqlTypes.SqlDouble":
- SetSqlDbType (SqlDbType.Float);
- break;
- case "System.Byte[]":
- case "System.Data.SqlTypes.SqlBinary":
- SetSqlDbType (SqlDbType.VarBinary);
- break;
- case "System.Byte":
- case "System.Data.SqlTypes.SqlByte":
- SetSqlDbType (SqlDbType.TinyInt);
- break;
- case "System.Int32":
- case "System.Data.SqlTypes.SqlInt32":
- SetSqlDbType (SqlDbType.Int);
- break;
- case "System.Single":
- case "System.Data.SqlTypes.Single":
- SetSqlDbType (SqlDbType.Real);
- break;
- case "System.Int16":
- case "System.Data.SqlTypes.SqlInt16":
- SetSqlDbType (SqlDbType.SmallInt);
- break;
- case "System.Guid":
- case "System.Data.SqlTypes.SqlGuid":
- SetSqlDbType (SqlDbType.UniqueIdentifier);
- break;
- case "System.Money":
- case "System.SmallMoney":
- case "System.Data.SqlTypes.SqlMoney":
- SetSqlDbType (SqlDbType.Money);
- break;
- case "System.Object":
- case "System.DBNull":
- SetSqlDbType (SqlDbType.Variant); // variant can contain numeric,
- //string,binary or data and also nul //values, so we can later resolve // it to correct type.
- break;
- default:
- throw new ArgumentException (exception);
- }
- }
- // When the DbType is set, we also set the SqlDbType, as well as the SQL Server
- // string representation of the type name. If the DbType is not convertible
- // to an SqlDbType, throw an exception.
- private void SetDbType (DbType type)
- {
- string exception = String.Format ("No mapping exists from DbType {0} to a known SqlDbType.", type);
- switch (type) {
- case DbType.AnsiString:
- MetaParameter.TypeName = "varchar";
- sqlDbType = SqlDbType.VarChar;
- isVariableSizeType = true;
- break;
- case DbType.AnsiStringFixedLength:
- MetaParameter.TypeName = "char";
- sqlDbType = SqlDbType.Char;
- isVariableSizeType = true;
- break;
- case DbType.Binary:
- MetaParameter.TypeName = "varbinary";
- sqlDbType = SqlDbType.VarBinary;
- isVariableSizeType = true;
- break;
- case DbType.Boolean:
- MetaParameter.TypeName = "bit";
- sqlDbType = SqlDbType.Bit;
- break;
- case DbType.Byte:
- MetaParameter.TypeName = "tinyint";
- sqlDbType = SqlDbType.TinyInt;
- break;
- case DbType.Currency:
- sqlDbType = SqlDbType.Money;
- MetaParameter.TypeName = "money";
- break;
- case DbType.Date:
- case DbType.DateTime:
- MetaParameter.TypeName = "datetime";
- sqlDbType = SqlDbType.DateTime;
- break;
- case DbType.Decimal:
- MetaParameter.TypeName = "decimal";
- sqlDbType = SqlDbType.Decimal;
- break;
- case DbType.Double:
- MetaParameter.TypeName = "float";
- sqlDbType = SqlDbType.Float;
- break;
- case DbType.Guid:
- MetaParameter.TypeName = "uniqueidentifier";
- sqlDbType = SqlDbType.UniqueIdentifier;
- break;
- case DbType.Int16:
- MetaParameter.TypeName = "smallint";
- sqlDbType = SqlDbType.SmallInt;
- break;
- case DbType.Int32:
- MetaParameter.TypeName = "int";
- sqlDbType = SqlDbType.Int;
- break;
- case DbType.Int64:
- MetaParameter.TypeName = "bigint";
- sqlDbType = SqlDbType.BigInt;
- break;
- case DbType.Object:
- MetaParameter.TypeName = "sql_variant";
- sqlDbType = SqlDbType.Variant;
- break;
- case DbType.Single:
- MetaParameter.TypeName = "real";
- sqlDbType = SqlDbType.Real;
- break;
- case DbType.String:
- MetaParameter.TypeName = "nvarchar";
- sqlDbType = SqlDbType.NVarChar;
- isVariableSizeType = true;
- break;
- case DbType.StringFixedLength:
- MetaParameter.TypeName = "nchar";
- sqlDbType = SqlDbType.NChar;
- isVariableSizeType = true;
- break;
- case DbType.Time:
- MetaParameter.TypeName = "datetime";
- sqlDbType = SqlDbType.DateTime;
- break;
- default:
- throw new ArgumentException (exception);
- }
- dbType = type;
- }
- // Used by internal constructor which has a SQL Server typename
- private void SetDbTypeName (string dbTypeName)
- {
- switch (dbTypeName.ToLower ()) {
- case "bigint":
- SqlDbType = SqlDbType.BigInt;
- break;
- case "binary":
- SqlDbType = SqlDbType.Binary;
- break;
- case "bit":
- SqlDbType = SqlDbType.Bit;
- break;
- case "char":
- SqlDbType = SqlDbType.Char;
- break;
- case "datetime":
- SqlDbType = SqlDbType.DateTime;
- break;
- case "decimal":
- SqlDbType = SqlDbType.Decimal;
- break;
- case "float":
- SqlDbType = SqlDbType.Float;
- break;
- case "image":
- SqlDbType = SqlDbType.Image;
- break;
- case "int":
- SqlDbType = SqlDbType.Int;
- break;
- case "money":
- SqlDbType = SqlDbType.Money;
- break;
- case "nchar":
- SqlDbType = SqlDbType.NChar;
- break;
- case "ntext":
- SqlDbType = SqlDbType.NText;
- break;
- case "nvarchar":
- SqlDbType = SqlDbType.NVarChar;
- break;
- case "real":
- SqlDbType = SqlDbType.Real;
- break;
- case "smalldatetime":
- SqlDbType = SqlDbType.SmallDateTime;
- break;
- case "smallint":
- SqlDbType = SqlDbType.SmallInt;
- break;
- case "smallmoney":
- SqlDbType = SqlDbType.SmallMoney;
- break;
- case "text":
- SqlDbType = SqlDbType.Text;
- break;
- case "timestamp":
- SqlDbType = SqlDbType.Timestamp;
- break;
- case "tinyint":
- SqlDbType = SqlDbType.TinyInt;
- break;
- case "uniqueidentifier":
- SqlDbType = SqlDbType.UniqueIdentifier;
- break;
- case "varbinary":
- SqlDbType = SqlDbType.VarBinary;
- break;
- case "varchar":
- SqlDbType = SqlDbType.VarChar;
- break;
- default:
- SqlDbType = SqlDbType.Variant;
- break;
- }
- }
- // When the SqlDbType is set, we also set the DbType, as well as the SQL Server
- // string representation of the type name. If the SqlDbType is not convertible
- // to a DbType, throw an exception.
- private void SetSqlDbType (SqlDbType type)
- {
- string exception = String.Format ("No mapping exists from SqlDbType {0} to a known DbType.", type);
- switch (type) {
- case SqlDbType.BigInt:
- MetaParameter.TypeName = "bigint";
- dbType = DbType.Int64;
- break;
- case SqlDbType.Binary:
- MetaParameter.TypeName = "binary";
- dbType = DbType.Binary;
- isVariableSizeType = true;
- break;
- case SqlDbType.Timestamp:
- MetaParameter.TypeName = "timestamp";
- dbType = DbType.Binary;
- break;
- case SqlDbType.VarBinary:
- MetaParameter.TypeName = "varbinary";
- dbType = DbType.Binary;
- isVariableSizeType = true;
- break;
- case SqlDbType.Bit:
- MetaParameter.TypeName = "bit";
- dbType = DbType.Boolean;
- break;
- case SqlDbType.Char:
- MetaParameter.TypeName = "char";
- dbType = DbType.AnsiStringFixedLength;
- isVariableSizeType = true;
- break;
- case SqlDbType.DateTime:
- MetaParameter.TypeName = "datetime";
- dbType = DbType.DateTime;
- break;
- case SqlDbType.SmallDateTime:
- MetaParameter.TypeName = "smalldatetime";
- dbType = DbType.DateTime;
- break;
- case SqlDbType.Decimal:
- MetaParameter.TypeName = "decimal";
- dbType = DbType.Decimal;
- break;
- case SqlDbType.Float:
- MetaParameter.TypeName = "float";
- dbType = DbType.Double;
- break;
- case SqlDbType.Image:
- MetaParameter.TypeName = "image";
- dbType = DbType.Binary;
- isVariableSizeType = true;
- break;
- case SqlDbType.Int:
- MetaParameter.TypeName = "int";
- dbType = DbType.Int32;
- break;
- case SqlDbType.Money:
- MetaParameter.TypeName = "money";
- dbType = DbType.Currency;
- break;
- case SqlDbType.SmallMoney:
- MetaParameter.TypeName = "smallmoney";
- dbType = DbType.Currency;
- break;
- case SqlDbType.NChar:
- MetaParameter.TypeName = "nchar";
- dbType = DbType.StringFixedLength;
- isVariableSizeType = true;
- break;
- case SqlDbType.NText:
- MetaParameter.TypeName = "ntext";
- dbType = DbType.String;
- isVariableSizeType = true;
- break;
- case SqlDbType.NVarChar:
- MetaParameter.TypeName = "nvarchar";
- dbType = DbType.String;
- isVariableSizeType = true;
- break;
- case SqlDbType.Real:
- MetaParameter.TypeName = "real";
- dbType = DbType.Single;
- break;
- case SqlDbType.SmallInt:
- MetaParameter.TypeName = "smallint";
- dbType = DbType.Int16;
- break;
- case SqlDbType.Text:
- MetaParameter.TypeName = "text";
- dbType = DbType.AnsiString;
- isVariableSizeType = true;
- break;
- case SqlDbType.VarChar:
- MetaParameter.TypeName = "varchar";
- dbType = DbType.AnsiString;
- isVariableSizeType = true;
- break;
- case SqlDbType.TinyInt:
- MetaParameter.TypeName = "tinyint";
- dbType = DbType.Byte;
- break;
- case SqlDbType.UniqueIdentifier:
- MetaParameter.TypeName = "uniqueidentifier";
- dbType = DbType.Guid;
- break;
- case SqlDbType.Variant:
- MetaParameter.TypeName = "sql_variant";
- dbType = DbType.Object;
- break;
- default:
- throw new ArgumentException (exception);
- }
- sqlDbType = type;
- }
- public override string ToString()
- {
- return ParameterName;
- }
- private object SqlTypeToFrameworkType (object value)
- {
- if (! (value is INullable)) // if the value is not SqlType
- return value;
- // Map to .net type, as Mono TDS respects only types from .net
- switch (value.GetType ().FullName) {
- case "System.Data.SqlTypes.SqlBinary":
- return ( (SqlBinary) value).Value;
- case "System.Data.SqlTypes.SqlBoolean":
- return ( (SqlBoolean) value).Value;
- case "System.Data.SqlTypes.SqlByte":
- return ( (SqlByte) value).Value;
- case "System.Data.SqlTypes.SqlDateTime":
- return ( (SqlDateTime) value).Value;
- case "System.Data.SqlTypes.SqlDecimal":
- return ( (SqlDecimal) value).Value;
- case "System.Data.SqlTypes.SqlDouble":
- return ( (SqlDouble) value).Value;
- case "System.Data.SqlTypes.SqlGuid":
- return ( (SqlGuid) value).Value;
- case "System.Data.SqlTypes.SqlInt16":
- return ( (SqlInt16) value).Value;
- case "System.Data.SqlTypes.SqlInt32 ":
- return ( (SqlInt32 ) value).Value;
- case "System.Data.SqlTypes.SqlInt64":
- return ( (SqlInt64) value).Value;
- case "System.Data.SqlTypes.SqlMoney":
- return ( (SqlMoney) value).Value;
- case "System.Data.SqlTypes.SqlSingle":
- return ( (SqlSingle) value).Value;
- case "System.Data.SqlTypes.SqlString":
- return ( (SqlString) value).Value;
- }
- return value;
- }
- #if NET_2_0
- [MonoTODO]
- public override void CopyTo (DbParameter param)
- {
- throw new NotImplementedException ();
- }
-
- [MonoTODO]
- public override void ResetDbType ()
- {
- throw new NotImplementedException ();
- }
- #endif // NET_2_0
- #endregion // Methods
- }
- }
|