The Get method reads and returns the value of a specified column in the database.
SimpleDBDS.Get(Column)
The following example assumes that a SimpleDBDS object named myProduct
has been created, and that it has returned an object containing properties corresponding to the columns in the database table row. The following example stores the value of the sku
column into the variable sku
:
sku = myProduct.Get("sku")
SimpleDBDS read only and read/write