| SqlRowAdd Method |
Adds a new field to the row.
Namespace:
Galactic.Sql
Assembly:
Galactic.Sql (in Galactic.Sql.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax public bool Add(
int order,
string name,
Object value
)
Public Function Add (
order As Integer,
name As String,
value As Object
) As Boolean
public:
bool Add(
int order,
String^ name,
Object^ value
)
member Add :
order : int *
name : string *
value : Object -> bool
Parameters
- order
- Type: SystemInt32
The order of the field. - name
- Type: SystemString
The name of the field. - value
- Type: SystemObject
The value of the field.
Return Value
Type:
BooleanTrue if the field was added, false otherwise.
See Also