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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454
|
//
// System.Data.SqlClient.SqlParameterCollection.cs
//
// Author:
// Rodrigo Moya (rodrigo@ximian.com)
// Daniel Morgan (danmorg@sc.rr.com)
// Tim Coleman (tim@timcoleman.com)
// Diego Caravana (diego@toth.it)
// Umadevi S (sumadevi@novell.com)
//
// (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 System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Data.Common;
using Mono.Data.Tds;
namespace System.Data.SqlClient
{
[ListBindable (false)]
[Editor ("Microsoft.VSDesigner.Data.Design.DBParametersEditor, " + Consts.AssemblyMicrosoft_VSDesigner, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]
#if NET_2_0
public sealed class SqlParameterCollection : DbParameterCollection, IDataParameterCollection, IList, ICollection, IEnumerable
#else
public sealed class SqlParameterCollection : MarshalByRefObject, IDataParameterCollection, IList, ICollection, IEnumerable
#endif // NET_2_0
{
#region Fields
ArrayList list = new ArrayList();
TdsMetaParameterCollection metaParameters;
SqlCommand command;
#endregion // Fields
#region Constructors
internal SqlParameterCollection (SqlCommand command)
{
this.command = command;
metaParameters = new TdsMetaParameterCollection ();
}
#endregion // Constructors
#region Properties
#if ONLY_1_1 || ONLY_1_0
[Browsable (false)]
[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
#endif
public
#if NET_2_0
override
#endif // NET_2_0
int Count {
get { return list.Count; }
}
#if NET_2_0
public override bool IsFixedSize {
get {
return list.IsFixedSize;
}
}
public override bool IsReadOnly {
get {
return list.IsReadOnly;
}
}
public override bool IsSynchronized {
get {
return list.IsSynchronized;
}
}
public override object SyncRoot {
get {
return list.SyncRoot;
}
}
#else
object IList.this [int index] {
get { return (SqlParameter) this [index]; }
set { this [index] = (SqlParameter) value; }
}
bool IList.IsFixedSize {
get { return list.IsFixedSize; }
}
bool IList.IsReadOnly {
get { return list.IsReadOnly; }
}
bool ICollection.IsSynchronized {
get { return list.IsSynchronized; }
}
object ICollection.SyncRoot {
get { return list.SyncRoot; }
}
object IDataParameterCollection.this [string index] {
get { return this [index]; }
set {
if (!(value is SqlParameter))
throw new InvalidCastException ("Only SQLParameter objects can be used.");
this [index] = (SqlParameter) value;
}
}
#endif
[Browsable (false)]
[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
public
#if NET_2_0
new
#endif // NET_2_0
SqlParameter this [int index] {
get {
if (index < 0 || index >= list.Count)
throw new IndexOutOfRangeException ("The specified index is out of range.");
return (SqlParameter) list [index];
}
set {
if (index < 0 || index >= list.Count)
throw new IndexOutOfRangeException ("The specified index is out of range.");
list [index] = (SqlParameter) value;
}
}
[Browsable (false)]
[DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
public
#if NET_2_0
new
#endif // NET_2_0
SqlParameter this [string parameterName] {
get {
foreach (SqlParameter p in list)
if (p.ParameterName.Equals (parameterName))
return p;
throw new IndexOutOfRangeException ("The specified name does not exist: " + parameterName);
}
set {
if (!Contains (parameterName))
throw new IndexOutOfRangeException("The specified name does not exist: " + parameterName);
this [IndexOf (parameterName)] = value;
}
}
#if NET_2_0
protected override DbParameter GetParameter (int index)
{
return this [index];
}
protected override DbParameter GetParameter (string parameterName)
{
return this [parameterName];
}
protected override void SetParameter (int index, DbParameter value)
{
this [index] = (SqlParameter) value;
}
protected override void SetParameter (string parameterName, DbParameter value)
{
this [parameterName] = (SqlParameter) value;
}
#endif
internal TdsMetaParameterCollection MetaParameters {
get { return metaParameters; }
}
#endregion // Properties
#region Methods
#if NET_2_0
[EditorBrowsable (EditorBrowsableState.Never)]
#endif // NET_2_0
public
#if NET_2_0
override
#endif // NET_2_0
int Add (object value)
{
if (!(value is SqlParameter))
throw new InvalidCastException ("The parameter was not an SqlParameter.");
Add ((SqlParameter) value);
return IndexOf (value);
}
public SqlParameter Add (SqlParameter value)
{
if (value.Container != null)
throw new ArgumentException ("The SqlParameter specified in the value parameter is already added to this or another SqlParameterCollection.");
value.Container = this;
list.Add (value);
metaParameters.Add (value.MetaParameter);
return value;
}
#if NET_2_0
[EditorBrowsable (EditorBrowsableState.Never)]
[Obsolete ("Do not call this method.")]
#endif // NET_2_0
public SqlParameter Add (string parameterName, object value)
{
return Add (new SqlParameter (parameterName, value));
}
#if NET_2_0
public SqlParameter AddWithValue (string parameterName, object value)
{
return Add (new SqlParameter (parameterName, value));
}
#endif // NET_2_0
public SqlParameter Add (string parameterName, SqlDbType sqlDbType)
{
return Add (new SqlParameter (parameterName, sqlDbType));
}
public SqlParameter Add (string parameterName, SqlDbType sqlDbType, int size)
{
return Add (new SqlParameter (parameterName, sqlDbType, size));
}
public SqlParameter Add (string parameterName, SqlDbType sqlDbType, int size, string sourceColumn)
{
return Add (new SqlParameter (parameterName, sqlDbType, size, sourceColumn));
}
public
#if NET_2_0
override
#endif // NET_2_0
void Clear()
{
metaParameters.Clear ();
foreach (SqlParameter p in list)
p.Container = null;
list.Clear ();
}
public
#if NET_2_0
override
#endif // NET_2_0
bool Contains (object value)
{
if (!(value is SqlParameter))
throw new InvalidCastException ("The parameter was not an SqlParameter.");
return Contains (((SqlParameter) value).ParameterName);
}
public
#if NET_2_0
override
#endif // NET_2_0
bool Contains (string value)
{
foreach (SqlParameter p in list)
if (p.ParameterName.Equals (value))
return true;
return false;
}
#if NET_2_0
public bool Contains (SqlParameter value)
{
return (this.IndexOf(value) != -1);
}
#endif // NET_2_0
public
#if NET_2_0
override
#endif // NET_2_0
void CopyTo (Array array, int index)
{
list.CopyTo (array, index);
}
public
#if NET_2_0
override
#endif // NET_2_0
IEnumerator GetEnumerator()
{
return list.GetEnumerator ();
}
public
#if NET_2_0
override
#endif // NET_2_0
int IndexOf (object value)
{
if (!(value is SqlParameter))
throw new InvalidCastException ("The parameter was not an SqlParameter.");
return IndexOf (((SqlParameter) value).ParameterName);
}
public
#if NET_2_0
override
#endif // NET_2_0
int IndexOf (string parameterName)
{
for (int i = 0; i < Count; i += 1)
if (this [i].ParameterName.Equals (parameterName))
return i;
return -1;
}
#if NET_2_0
public int IndexOf (SqlParameter value)
{
return list.IndexOf(value);
}
#endif // NET_2_0
public
#if NET_2_0
override
#endif // NET_2_0
void Insert (int index, object value)
{
list.Insert (index, value);
}
#if NET_2_0
public void Insert (int index, SqlParameter value)
{
list.Insert (index,value);
}
#endif //NET_2_0
public
#if NET_2_0
override
#endif // NET_2_0
void Remove (object value)
{
//TODO : this neds validation to check if the object is a
// sqlparameter.
((SqlParameter) value).Container = null;
metaParameters.Remove (((SqlParameter) value).MetaParameter);
list.Remove (value);
}
#if NET_2_0
public void Remove (SqlParameter value)
{
//both this and the above code are the same. but need to work with
// 1.1!
value.Container = null;
metaParameters.Remove (value.MetaParameter);
list.Remove (value);
}
#endif //NET_2_0
public
#if NET_2_0
override
#endif // NET_2_0
void RemoveAt (int index)
{
this [index].Container = null;
metaParameters.RemoveAt (index);
list.RemoveAt (index);
}
public
#if NET_2_0
override
#endif // NET_2_0
void RemoveAt (string parameterName)
{
RemoveAt (IndexOf (parameterName));
}
#if NET_2_0
public override void AddRange (Array values)
{
if (values == null)
throw new ArgumentNullException("The argument passed was null");
foreach (object value in values) {
if (!(value is SqlParameter))
throw new InvalidCastException ("Element in the array parameter was not an SqlParameter.");
SqlParameter param = (SqlParameter) value;
if (param.Container != null)
throw new ArgumentException ("An SqlParameter specified in the array is already added to this or another SqlParameterCollection.");
param.Container = this;
list.Add (param);
metaParameters.Add (param.MetaParameter);
}
}
public void AddRange (SqlParameter[] values)
{
AddRange((Array) values);
}
public void CopyTo (SqlParameter[] array, int index)
{
list.CopyTo (array, index);
}
#endif
#endregion // Methods
}
}
|