Should return an SQLFieldValues object populated with the fields to be written to the database. The first argument of the SQLFieldValues.Add function is the database field name, the second is the field's value.

Namespace: DatabaseObjects
Assembly: DatabaseObjects (in DatabaseObjects.dll) Version: 3.8.1.0

Syntax

C#
SQLFieldValues SaveFields()
Visual Basic
Function SaveFields As SQLFieldValues
Visual C++
SQLFieldValues^ SaveFields()

Return Value

[Missing <returns> documentation for "M:DatabaseObjects.IDatabaseObject.SaveFields"]

Examples

CopyC#
Protected Function SaveFields() As SQL.SQLFieldValues Implements IDatabaseObject.SaveFields

    SaveFields = New SQL.SQLFieldValues
    SaveFields.Add("ProductCode", pstrCode)
    SaveFields.Add("ProductDescription", pstrDescription)

End Function

See Also