| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241 |
- //
- // System.Data.SqlClient.SqlParameter
- //
- // Authors:
- // Konstantin Triger <[email protected]>
- // Boris Kirzner <[email protected]>
- //
- // (C) 2005 Mainsoft Corporation (http://www.mainsoft.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 System;
- using System.Collections;
- using System.Data;
- using System.Data.ProviderBase;
- using System.Data.Common;
- using java.sql;
- namespace System.Data.SqlClient
- {
- public class SqlParameter : AbstractDbParameter, IDbDataParameter, ICloneable
- {
- #region Fields
- private SqlDbType _sqlDbType;
- #endregion // Fields
- #region Constructors
- public SqlParameter()
- {
- }
- public SqlParameter(String parameterName, Object value)
- : this(parameterName, SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, String.Empty, DataRowVersion.Current, value,false)
- {
- }
- public SqlParameter(String parameterName, SqlDbType dbType)
- : this(parameterName, dbType, 0, ParameterDirection.Input, false, 0, 0, String.Empty, DataRowVersion.Current, null, true)
- {
- }
-
- public SqlParameter(String parameterName, SqlDbType dbType, int size)
- : this(parameterName, dbType, size, ParameterDirection.Input, false, 0, 0, String.Empty, DataRowVersion.Current, null, true)
- {
- }
- public SqlParameter(String parameterName, SqlDbType dbType, int size, String sourceColumn)
- : this(parameterName, dbType, size, ParameterDirection.Input, false, 0, 0, sourceColumn, DataRowVersion.Current, null, true)
- {
- }
-
- public SqlParameter(
- String parameterName,
- SqlDbType dbType,
- int size,
- ParameterDirection direction,
- bool isNullable,
- byte precision,
- byte scale,
- String sourceColumn,
- DataRowVersion sourceVersion,
- Object value) : this(parameterName,dbType,size,direction,isNullable,precision,scale,sourceColumn,sourceVersion,value,true)
- {
- }
- public SqlParameter(
- String parameterName,
- SqlDbType dbType,
- int size,
- ParameterDirection direction,
- bool isNullable,
- byte precision,
- byte scale,
- String sourceColumn,
- DataRowVersion sourceVersion,
- Object value,
- bool dbTypeExplicit)
- {
- ParameterName = parameterName;
- SqlDbType = dbType;
- Size = size;
- Direction = direction;
- IsNullable = isNullable;
- Precision = precision;
- Scale = scale;
- SourceColumn = sourceColumn;
- SourceVersion = sourceVersion;
- if (!dbTypeExplicit) {
- _isDbTypeSet = false;
- }
- Value = value;
- }
- #endregion // Constructors
- #region Properties
- public override DbType DbType
- {
- get { return SqlConvert.SqlDbTypeToDbType(_sqlDbType); }
- set { SqlDbType = SqlConvert.DbTypeToSqlDbType(value); }
- }
-
- public SqlDbType SqlDbType
- {
- get { return _sqlDbType; }
- set {
- _sqlDbType = value;
- _isDbTypeSet = true;
- }
- }
-
- public override byte Precision
- {
- get { return _precision; }
- set { _precision = value; }
- }
-
- public override int Size
- {
- get {
- int retVal = base.Size;
- return retVal;
- }
- set {
- if (value < 0) {
- throw ExceptionHelper.InvalidSizeValue(value);
- }
- if (value != 0) {
- base.Size = value;
- }
- else {
- base.Size = -1;
- }
- }
- }
- protected internal override string Placeholder {
- get {
- return ParameterName;
- }
- }
-
- public override Object Value
- {
- get { return base.Value; }
- set {
- if (!_isDbTypeSet && (value != null) && (value != DBNull.Value)) {
- _sqlDbType = SqlConvert.ValueTypeToSqlDbType(value.GetType());
- }
- base.Value = value;
- }
- }
- #endregion // Properties
- #region Methods
- public override String ToString()
- {
- return ParameterName;
- }
- public override object Clone()
- {
- SqlParameter clone = new SqlParameter();
- CopyTo(clone);
- clone._sqlDbType = _sqlDbType;
- return clone;
- }
- protected internal sealed override object ConvertValue(object value)
- {
- // can not convert null or DbNull to other types
- if (value == null || value == DBNull.Value) {
- return value;
- }
- // .NET throws an exception to the user.
- object convertedValue = Convert.ChangeType(value,SqlConvert.SqlDbTypeToValueType(SqlDbType));
- return convertedValue;
- }
- protected internal sealed override void SetParameterName(ResultSet res)
- {
- string name = res.getString("COLUMN_NAME");
- if (name != null && name.Length > 0 && name[0] != '@')
- name = String.Concat("@", name);
- ParameterName = name;
- }
- protected internal sealed override void SetParameterDbType(ResultSet res)
- {
- int dataType = res.getInt("DATA_TYPE");
- SqlDbType = SqlConvert.JdbcTypeToSqlDbType(dataType);
- JdbcType = dataType;
- }
- protected internal sealed override void SetSpecialFeatures(ResultSet res)
- {
- // do nothing
- }
- protected internal sealed override int JdbcTypeFromProviderType()
- {
- return SqlConvert.SqlDbTypeToJdbcType(SqlDbType);
- }
- #endregion // Methods
- }
- }
|