You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@@ -33,131 +33,135 @@ using System.Data.SqlTypes;
|
||||
|
||||
namespace Microsoft.SqlServer.Server
|
||||
{
|
||||
public sealed class SqlDataRecord : IDataRecord
|
||||
public class SqlDataRecord : IDataRecord
|
||||
{
|
||||
public bool GetBoolean (int ordinal)
|
||||
public SqlDataRecord (params SqlMetaData[] metaData)
|
||||
{
|
||||
}
|
||||
|
||||
public virtual bool GetBoolean (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public byte GetByte (int ordinal)
|
||||
public virtual byte GetByte (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public long GetBytes (int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)
|
||||
public virtual long GetBytes (int ordinal, long fieldOffset, byte[] buffer, int bufferOffset, int length)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public char GetChar (int ordinal)
|
||||
public virtual char GetChar (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public long GetChars (int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)
|
||||
public virtual long GetChars (int ordinal, long fieldOffset, char[] buffer, int bufferOffset, int length)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public IDataReader GetData (int ordinal)
|
||||
public virtual IDataReader GetData (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public string GetDataTypeName (int ordinal)
|
||||
public virtual string GetDataTypeName (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public DateTime GetDateTime (int ordinal)
|
||||
public virtual DateTime GetDateTime (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public decimal GetDecimal (int ordinal)
|
||||
public virtual decimal GetDecimal (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public double GetDouble (int ordinal)
|
||||
public virtual double GetDouble (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public System.Type GetFieldType (int ordinal)
|
||||
public virtual System.Type GetFieldType (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public float GetFloat (int ordinal)
|
||||
public virtual float GetFloat (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public Guid GetGuid (int ordinal)
|
||||
public virtual Guid GetGuid (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public short GetInt16 (int ordinal)
|
||||
public virtual short GetInt16 (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public int GetInt32 (int ordinal)
|
||||
public virtual int GetInt32 (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public long GetInt64 (int ordinal)
|
||||
public virtual long GetInt64 (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public string GetName (int ordinal)
|
||||
public virtual string GetName (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public int GetOrdinal (string name)
|
||||
public virtual int GetOrdinal (string name)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public string GetString (int ordinal)
|
||||
public virtual string GetString (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public object GetValue (int ordinal)
|
||||
public virtual object GetValue (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public int GetValues (object[] values)
|
||||
public virtual int GetValues (object[] values)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public bool IsDBNull (int ordinal)
|
||||
public virtual bool IsDBNull (int ordinal)
|
||||
{
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
public int FieldCount {
|
||||
public virtual int FieldCount {
|
||||
get {
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
}
|
||||
|
||||
public object this [string name] {
|
||||
public virtual object this [string name] {
|
||||
get {
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
}
|
||||
|
||||
public object this [int ordinal] {
|
||||
public virtual object this [int ordinal] {
|
||||
get {
|
||||
throw new NotImplementedException ();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user