Click or drag to resize
Galactic API

SqlRow Class

SqlRow is a data class that contains a row from a SQL Database table. It is used in conjunction with StoredProcedure to return results from a procedure.
Inheritance Hierarchy
SystemObject
  Galactic.SqlSqlRow

Namespace:  Galactic.Sql
Assembly:  Galactic.Sql (in Galactic.Sql.dll) Version: 1.3.0.499 (1.3.0.499)
Syntax
public class SqlRow

The SqlRow type exposes the following members.

Constructors
  NameDescription
Public methodSqlRow
Default constructor.
Top
Properties
Methods
  NameDescription
Public methodAdd
Adds a new field to the row.
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodGetValue(Int32)
Get the value of a field in this row by column index number.
Public methodGetValue(String)
Get the value of a field in this row by name.
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodSetValue(Int32, Object)
Sets the value of a field in this row by column index number.
Public methodSetValue(String, Object)
Sets the value of a field in this row by name.
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also