199 lines
7.3 KiB
C#
199 lines
7.3 KiB
C#
|
//
|
||
|
// SqlParameter.cs
|
||
|
//
|
||
|
// Author:
|
||
|
// Rolf Bjarne Kvinge <rolf@xamarin.com>
|
||
|
//
|
||
|
// Copyright (c) 2016 Xamarin, Inc.
|
||
|
//
|
||
|
// 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.Data;
|
||
|
using System.Data.Common;
|
||
|
using System.Data.SqlTypes;
|
||
|
|
||
|
namespace System.Data.SqlClient
|
||
|
{
|
||
|
public class SqlParameter : DbParameter , IDbDataParameter, IDataParameter, ICloneable
|
||
|
{
|
||
|
const string EXCEPTION_MESSAGE = "System.Data.SqlClient.SqlParameter is not supported on the current platform.";
|
||
|
|
||
|
public SqlParameter ()
|
||
|
: this (String.Empty, SqlDbType.NVarChar, 0, ParameterDirection.Input, false, 0, 0, String.Empty, DataRowVersion.Current, null)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public SqlParameter (string parameterName, object value)
|
||
|
{
|
||
|
throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
|
||
|
}
|
||
|
|
||
|
public SqlParameter (string parameterName, SqlDbType dbType)
|
||
|
: this (parameterName, dbType, 0, ParameterDirection.Input, false, 0, 0, null, DataRowVersion.Current, null)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public SqlParameter (string parameterName, SqlDbType dbType, int size)
|
||
|
: this (parameterName, dbType, size, ParameterDirection.Input, false, 0, 0, null, 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)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public SqlParameter (string parameterName, SqlDbType dbType, int size, ParameterDirection direction, bool isNullable, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, object value)
|
||
|
{
|
||
|
throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
|
||
|
}
|
||
|
|
||
|
public SqlParameter (string parameterName, SqlDbType dbType, int size, ParameterDirection direction, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, bool sourceColumnNullMapping, Object value, string xmlSchemaCollectionDatabase, string xmlSchemaCollectionOwningSchema, string xmlSchemaCollectionName)
|
||
|
: this (parameterName, dbType, size, direction, false, precision, scale, sourceColumn, sourceVersion, value)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
public override string ToString ()
|
||
|
{
|
||
|
throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
|
||
|
}
|
||
|
|
||
|
public override void ResetDbType ()
|
||
|
{
|
||
|
throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
|
||
|
}
|
||
|
|
||
|
public void ResetSqlDbType ()
|
||
|
{
|
||
|
throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
|
||
|
}
|
||
|
|
||
|
public override DbType DbType {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public override ParameterDirection Direction {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public override bool IsNullable {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public int Offset {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public override string ParameterName {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public byte Precision {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public byte Scale {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public override int Size {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public override string SourceColumn {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public override DataRowVersion SourceVersion {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public SqlDbType SqlDbType {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public override object Value {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public SqlCompareOptions CompareInfo {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public int LocaleId {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public object SqlValue {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public override bool SourceColumnNullMapping {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public string XmlSchemaCollectionDatabase {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public string XmlSchemaCollectionName {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public string XmlSchemaCollectionOwningSchema {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public string UdtTypeName {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
public string TypeName {
|
||
|
get { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
set { throw new PlatformNotSupportedException (EXCEPTION_MESSAGE); }
|
||
|
}
|
||
|
|
||
|
object ICloneable.Clone ()
|
||
|
{
|
||
|
throw new PlatformNotSupportedException (EXCEPTION_MESSAGE);
|
||
|
}
|
||
|
}
|
||
|
}
|