Пример #1
0
 public OdbcParameter(string name, System.Data.Odbc.OdbcType type, int size, string sourcecolumn) : this()
 {
     this.ParameterName = name;
     this.OdbcType      = type;
     this.Size          = size;
     this.SourceColumn  = sourcecolumn;
 }
Пример #2
0
 public OdbcParameter(string parameterName, System.Data.Odbc.OdbcType odbcType, int size, ParameterDirection parameterDirection, byte precision, byte scale, string sourceColumn, DataRowVersion sourceVersion, bool sourceColumnNullMapping, object value) : this()
 {
     this.ParameterName           = parameterName;
     this.OdbcType                = odbcType;
     this.Size                    = size;
     this.Direction               = parameterDirection;
     this.PrecisionInternal       = precision;
     this.ScaleInternal           = scale;
     this.SourceColumn            = sourceColumn;
     this.SourceVersion           = sourceVersion;
     this.SourceColumnNullMapping = sourceColumnNullMapping;
     this.Value                   = value;
 }
Пример #3
0
 public System.Data.Odbc.OdbcParameter Add(string?parameterName, System.Data.Odbc.OdbcType odbcType, int size, string?sourceColumn)
 {
     throw null;
 }
Пример #4
0
 public System.Data.Odbc.OdbcParameter Add(string?parameterName, System.Data.Odbc.OdbcType odbcType)
 {
     throw null;
 }
Пример #5
0
 public OdbcParameter(string?name, System.Data.Odbc.OdbcType type, int size, string?sourcecolumn)
 {
 }
Пример #6
0
 public OdbcParameter(string?parameterName, System.Data.Odbc.OdbcType odbcType, int size, System.Data.ParameterDirection parameterDirection, byte precision, byte scale, string?sourceColumn, System.Data.DataRowVersion sourceVersion, bool sourceColumnNullMapping, object?value)
 {
 }
Пример #7
0
 public OdbcParameter(string?parameterName, System.Data.Odbc.OdbcType odbcType, int size, System.Data.ParameterDirection parameterDirection, bool isNullable, byte precision, byte scale, string?srcColumn, System.Data.DataRowVersion srcVersion, object?value)
 {
 }
Пример #8
0
 public OdbcParameter(string?name, System.Data.Odbc.OdbcType type, int size)
 {
 }
 public OdbcParameter(string name, System.Data.Odbc.OdbcType type)
 {
 }
Пример #10
0
 public OdbcParameter(string name, System.Data.Odbc.OdbcType type, int size) : this()
 {
     this.ParameterName = name;
     this.OdbcType      = type;
     this.Size          = size;
 }