| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196 |
- //
- // 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
- {
- [MonoTODO]
- public SqlParameter () {
- // FIXME: do this
- }
- [MonoTODO]
- public SqlParameter (string parameterName, object value) {
- // FIXME: do this
- }
-
- [MonoTODO]
- public SqlParameter(string parameterName, SqlDbType dbType) {
- // FIXME: do this
- }
- [MonoTODO]
- public SqlParameter(string parameterName, SqlDbType dbType,
- int size) {
- // FIXME: do this
- }
-
- [MonoTODO]
- public SqlParameter(string parameterName, SqlDbType dbType,
- int size, string sourceColumn) {
- // FIXME: do this
- }
-
- [MonoTODO]
- public SqlParameter(string parameterName, SqlDbType dbType,
- int size, ParameterDirection direction,
- bool isNullable, byte precision,
- byte scale, string sourceColumn,
- DataRowVersion sourceVersion, object value) {
- // FIXME: do this
- }
- [MonoTODO]
- public DbType DbType {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public ParameterDirection Direction {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public bool IsNullable {
- get {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public int Offset {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public string ParameterName {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public string SourceColumn {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public DataRowVersion SourceVersion {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
-
- [MonoTODO]
- public SqlDbType SqlDbType {
- get {
- throw new NotImplementedException ();
- }
-
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public object Value {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public byte Precision {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public byte Scale {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public int Size
- {
- get {
- throw new NotImplementedException ();
- }
- set {
- throw new NotImplementedException ();
- }
- }
- [MonoTODO]
- public override string ToString() {
- throw new NotImplementedException ();
- }
- }
- }
|