Pagina di Descrizione

Datarow

datarow

The object represents a new or saved record of a table in the database.

getvalue

Description

Retrieve the value of a specific field present within the datarow.

Type Value

object

Format

object = datarow.getvalue(columnname)

Typology

Metodo

Systems

Windows, Web, Android, IOS, Mac OS

Parametro

Tipo Valore

Description

columnname

string

The name of the field from which to retrieve the value.

Examples

value = datarow.getvalue(`name`)

save

Description

Save the values present in the record inside the database.

Type Value

boolean

Format

boolean = datarow.save()

Typology

Metodo

Systems

Windows, Web, Android, IOS, Mac OS

Examples

bool = datarow.save()

setvalue

Description

Set the value of a specific field present within the datarow.

Type Value

Format

datarow.setvalue(columnname, value)

Typology

Metodo

Systems

Windows, Web, Android, IOS, Mac OS

Parametro

Tipo Valore

Description

columnname

string

The name of the field where to save the value.

value

object

The value to be saved inside the field.

Examples

datarow.setvalue(`name`,`Bob`)

tablename

Description

The name of the table that the datarow belongs to.

Type Value

string

Format

string = datarow.tablename

Typology

Proprietà

Systems

Windows, Web, Android, IOS, Mac OS

{% endblock %}