Interface IRecord
Definition
- Assembly:
- Tizen.Data.Tdbc.dll
Record class. This class provides the result of query.
public interface IRecord : IEnumerator<IRecord>
Methods
View SourceGetBool(int)
Get bool type value from the record with given index.
Declaration
bool GetBool(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| bool |
GetChar(int)
Get char type value from the record with given index.
Declaration
char GetChar(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| char |
GetChars(int)
Get chars type value from the record with given index.
Declaration
char[] GetChars(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| char[] |
GetData(int)
Get blob type value from the record with given index.
Declaration
byte[] GetData(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| byte[] |
GetDate(int)
Get date type value from the record with given index.
Declaration
DateTime GetDate(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| DateTime |
GetDateTime(int)
Get datetime type value from the record with given index.
Declaration
DateTime GetDateTime(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| DateTime |
GetDecimal(int)
Get decimal type value from the record with given index.
Declaration
Decimal GetDecimal(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| Decimal |
GetDouble(int)
Get double type value from the record with given index.
Declaration
double GetDouble(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| double |
GetFloat(int)
Get float type value from the record with given index.
Declaration
float GetFloat(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| float |
GetInt(int)
Get integer type value from the record with given index.
Declaration
int GetInt(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| int |
GetInt16(int)
Get 16-bit signed integer type value from the record with given index.
Declaration
short GetInt16(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| short |
GetInt64(int)
Get 64-bit signed integer type value from the record with given index.
Declaration
long GetInt64(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| long |
GetName(int)
Get the name from the record with given index.
Declaration
string GetName(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| string |
GetString(int)
Get string type value from the record with given index.
Declaration
string GetString(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| string |
GetTime(int)
Get time type value from the record with given index.
Declaration
TimeSpan GetTime(int columnIndex)
Parameters
| Type | Name | Description |
|---|---|---|
| int | columnIndex | The index of value. |
Returns
| Type | Description |
|---|---|
| TimeSpan |