Home / comp / gb.db / db / edit 
DB.Edit (gb.db)
Syntax
STATIC FUNCTION Edit ( Table AS String [ , Request AS String, Arguments AS , ... ] ) AS Result
Returns a read/write Result object used for editing records in the specified table.

The last feature allows you to write requests that are independant of the underlying database type.

Example
DIM hResult AS Result
DIM sCriteria AS String
DIM iParemeter AS Integer

' Same as Select * from tblDEFAULT where id = [parameter value]
sCriteria = "id = &1"
iParameter = 1012

$hConn.Begin

hResult = $hConn.Edit("tblDEFAULT", sCriteria, iParameter)
' Set field value
hResult!Name = "Mr Smith"

' Update the value
hResult.Update
$hConn.Commit


See also
Delete  Find  Exec  Subst