re: [B4X] Cross platform Editable B4XTable + Form Example
I downloaded the TableAndForms.zip file from https://www.b4x.com/android/forum/threads/b4x-cross-platform-editable-b4xtable-form-example.104766/ and it works fine.
Is there a property in B4XTable that can access an existing SQLite table to get the user data?
I ask this because the example is a little confusing for those of us who only use SQLite or other databases to store user data.
The example application that I downloaded runs the sub LoadData to load the data from a CSV file into B4XTable1. The B4XTable library then (internally) converts the CSV data into a SQLIte table. When any row of the B4XTable is edited, deleted or added by the application, the SQLite table gets updated (not the original CSV file). When the application closes the contents of the updated SQLite table gets written back to the CSV file.
This is all well and good for those who use CSV files. My question is, can a future version of B4XTable open an existing SQLite table directly without having to import the data every time the application is run and save it back to the CSV file? Maybe it's just me but this seems a tad inefficient.
TIA
I downloaded the TableAndForms.zip file from https://www.b4x.com/android/forum/threads/b4x-cross-platform-editable-b4xtable-form-example.104766/ and it works fine.
Is there a property in B4XTable that can access an existing SQLite table to get the user data?
I ask this because the example is a little confusing for those of us who only use SQLite or other databases to store user data.
The example application that I downloaded runs the sub LoadData to load the data from a CSV file into B4XTable1. The B4XTable library then (internally) converts the CSV data into a SQLIte table. When any row of the B4XTable is edited, deleted or added by the application, the SQLite table gets updated (not the original CSV file). When the application closes the contents of the updated SQLite table gets written back to the CSV file.
This is all well and good for those who use CSV files. My question is, can a future version of B4XTable open an existing SQLite table directly without having to import the data every time the application is run and save it back to the CSV file? Maybe it's just me but this seems a tad inefficient.
TIA