This is ok
this is not ok ... ?
or
[/CODE]
How can filter a B4xtable column with a string (Msec) ?
B4X:
Dim col2 As B4XTableColumn = B4XTable1.GetColumn("Sec")
B4XTable2.CreateDataView($"${col2.SQLID.Trim} = 'ELT' "$)
this is not ok ... ?
B4X:
Dim Msec As String
Msec="ELT"
B4XTable1.CreateDataView($"${col2.SQLID.Trim} = ${Msec} "$)
or
B4X:
Dim Msec As String
Msec="ELT"
B4XTable1.CreateDataView($"${col2.SQLID.Trim} = '" & Msec & "' "$)
How can filter a B4xtable column with a string (Msec) ?