Hello Community,
I am a little bit stuck in the following task:
In Visual Basic, I load a csv-file into a datatable.
When I import the datatable into my database, I am using
a loop where I check the headername:
In B4J I can load a csv file including it's headers with LoadCSV2.
Is there a way to make a similar header comparison like in Visual Basic?
Kind regards
h725
I am a little bit stuck in the following task:
In Visual Basic, I load a csv-file into a datatable.
When I import the datatable into my database, I am using
a loop where I check the headername:
B4X:
For i = 0 to datatable.rows.count - 1
Dim name as String = datatable.Rows(i).Item("NAME").ToString)
Next
In B4J I can load a csv file including it's headers with LoadCSV2.
Is there a way to make a similar header comparison like in Visual Basic?
Kind regards
h725