Interface ISoDataRecord
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Assembly: SoDataBase.dll
Syntax
public interface ISoDataRecord
Properties
Reader
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
SoDataReader Reader { get; }
Property Value
Methods
GetBoolean(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
bool GetBoolean(FieldInfo field)
Parameters
Returns
GetByte(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
byte GetByte(FieldInfo field)
Parameters
Returns
GetChar(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
char GetChar(FieldInfo field)
Parameters
Returns
GetDateTime(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
DateTime GetDateTime(FieldInfo field)
Parameters
Returns
GetDecimal(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
decimal GetDecimal(FieldInfo field)
Parameters
Returns
GetDouble(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
double GetDouble(FieldInfo field)
Parameters
Returns
GetEnum<E>(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
E GetEnum<E>(FieldInfo field)
Parameters
Returns
Type Parameters
GetFloat(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
float GetFloat(FieldInfo field)
Parameters
Returns
GetGuid(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
Guid GetGuid(FieldInfo field)
Parameters
Returns
GetInt16(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
short GetInt16(FieldInfo field)
Parameters
Returns
GetInt32(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
int GetInt32(FieldInfo field)
Parameters
Returns
GetInt32(int)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
Parameters
Type |
Name |
Description |
int |
index |
|
Returns
GetInt32Array(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
int[] GetInt32Array(FieldInfo field)
Parameters
Returns
GetInt64(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
long GetInt64(FieldInfo field)
Parameters
Returns
GetOrdinal(string)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
int GetOrdinal(string name)
Parameters
Type |
Name |
Description |
string |
name |
|
Returns
GetString(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
string GetString(FieldInfo field)
Parameters
Returns
GetValue(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
object GetValue(FieldInfo field)
Parameters
Returns
GetValues(object[])
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
int GetValues(object[] values)
Parameters
Type |
Name |
Description |
object[] |
values |
|
Returns
IsDBNull(FieldInfo)
A version of IDataRecord customized for superoffice - using FieldInfo to look up fields,
and missing some of the more obscure functions that we don't use. Intended for iteration over result sets
Declaration
bool IsDBNull(FieldInfo field)
Parameters
Returns
Extension Methods