Method | Description | |
---|---|---|
AddColumn ( String colName, String colValue ) : System.Boolean |
Add a column to the data set in memory. This is useful when stored procedures used for saving data require optional parameters. The new column will act just like a real SQL data column, and you may want to add a faux SQL data type to its properties, as well as any other properties, so that you can manipulate it properly.
|
|
DatabaseRow ( ) : System |
Initialize the DatabaseRow with an empty row.
|
|
DatabaseRow ( |
Initialize the DatabaseRow with a single row form a Halide.H3Reader object.
|
|
DeleteColumn ( String colName ) : System.Boolean |
Delete a column from the data set in memory.
|
|
DeleteColumn ( int index ) : System.Boolean |
Delete a column from the data set in memory.
|
|
this ( String columnName ) : |
Return the DatabaseItem of the specified name. If you try to retrieve an item that does not exist, one is created automatically.
|
|
this ( int ColumnIndex ) : |
Return the DatabaseItem at the specified index, or set the value.
|
public AddColumn ( String colName, String colValue ) : System.Boolean | ||
colName | String | Name of the new column. |
colValue | String | Value of the new column. |
return | System.Boolean |
public DatabaseRow ( |
||
reader | An open Halide.H3Reader object that can be used to read a row from a database. | |
return | System |
public DeleteColumn ( String colName ) : System.Boolean | ||
colName | String | Name of the column to delete. |
return | System.Boolean |
public DeleteColumn ( int index ) : System.Boolean | ||
index | int | Index number of the column to delete. |
return | System.Boolean |
public this ( String columnName ) : |
||
columnName | String | The column name of the DatabaseItem. |
return |
public this ( int ColumnIndex ) : |
||
ColumnIndex | int | The index number of the column from which to retrieve the DatabaseItem. |
return |