Class SQLWrapperResultRow
A class used to return access the results of an individual sql wrapper result row
Inheritance
System.Object
SQLWrapperResultRow
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: LemonEdge.API.Entities.Helpers
Assembly: API.dll
Syntax
public class SQLWrapperResultRow
Constructors
SQLWrapperResultRow(SQLWrapperInterpretor, ISQLWrapperResult)
Creates a new sql wrapper result row
Declaration
public SQLWrapperResultRow(SQLWrapperInterpretor interprator, ISQLWrapperResult row)
Parameters
Type | Name | Description |
---|---|---|
SQLWrapperInterpretor | interprator | The interpator for retrieving values from the specified result row |
ISQLWrapperResult | row | The row to return values for |
Methods
GetValue(String)
Returns the value of the specified column from the sql result row
Declaration
public object GetValue(string columnName)
Parameters
Type | Name | Description |
---|---|---|
System.String | columnName | The name of the column to return the value of from the current sql wrapper result row |
Returns
Type | Description |
---|---|
System.Object | The value of the specified column from the sql result row |