Hi,
in some posts and examples there is a follow example:
my app make column with:
in my app "rowid" not exists, and i use
into table "data" there are column named "c0, c1, c2, c3, ......."
how to set column name into table "data" ?
in some posts and examples there is a follow example:
B4X:
tbl.sql1.ExecNonQuery2("DELETE FROM data WHERE rowid = ?", Array (RowId))
my app make column with:
B4X:
Dim a1 As B4XTableColumn = tbl.AddColumn("id", tbl.COLUMN_TYPE_TEXT)
a1.Width = 20dip
in my app "rowid" not exists, and i use
B4X:
tbl.sql1.ExecNonQuery2("DELETE FROM data WHERE c0 = ?", Array (RowId))
how to set column name into table "data" ?