Share My Creation Csv to SQLite program - klaus    Apr 24, 2023   (42 reactions)   tags: csv sql, Import, export Attached you find a small project to convert csv files to a SQLite database. The program: - detects... are the values of the first line in the csv file. - three test csv files are included. - by default, the Database generic file name is the same as the csv file name. - by default, the Table name is also the same as the csv file name, but empty characters are automatically removed and "-"... Added reading csv files without a header, adds Col0, Col1, Col2 etc as column names. Column names... B4A Library [B4X] CSVParser - CSV parser and generator - Erel    Jun 29, 2020   (33 reactions)   tags: parser, csv CSV - comma separated values format.
The various StringUtils libraries include methods for loading and saving CSV files.
However these methods have a few drawbacks:
- They work with files instead....
- As they are implemented inside a native library it is not possible to modify their behavior. Some CSV files are not 100%... CSV strings:
Dim parser As CSVParser
parser.Initialize
Dim table As List = parser.Parse(File... B4A Tutorial [B4X] B4XTable - Editable table and export to CSV - Erel    Apr 11, 2019   (15 reactions)   tags: xuiTable, B4X B4XTable Editable tbl As String(InputTemplate.Text, RowId)) When the window is closed the updated data is saved in a CSV file... B4A Question search in huge CSV file - Zeev Goldstein    May 25, 2025 hi
i have a huge csv file (~14 MB)
it has one column only
what is the fastest way to search for... the value i search is in the csv or not
no need to load anything
any idea?
a short sample... B4A Library Introducing liteCsvParse: A Lightweight Library for Efficient CSV Processing - carlos7000    Jul 21, 2024   (14 reactions) Hello everyone,
I’d like to share with you a tool I’ve developed called liteCsvParse. It’s a lightweight library I created to make working with CSV files easier, especially on older devices or those with limited resources.
The library consists of two main functions:
CsvToList: This function takes a CSV file and converts it into a list of arrays, allowing for easy manipulation of the contained... B4A Example Import a CSV Text File Into a Newly Created SQLite Table - Mahares    Sep 6, 2023   (10 reactions) 1. I use StringUtils library to import the CSV text file into the SQLite table. There are other ways to import like, such as CSVParser class module, RegEx.Split and TextReader, although TextReader is no longer recommended by the community. 2. The text file in this project has a semi colon as delimiter. With StringUtils, you can use whatever delimiter came with the file. 3. The column names... relevant code snippets are: Dim su As StringUtils 'stringutils lib checked MyList = su.LoadCSV2... B4A Library xCSVHelper - wrapper from Apache Commons CSV - tummosoft    Apr 21, 2024   (5 reactions) Apache Commons is a powerful library for handling CSV files. It offers features like reading...
#AdditionalJar: commons-csv-1.10.0.jar
#MultiDex: true
Sub Process_Globals
Private xui As XUI... B4A Tutorial ✅ [B4X] [XUI] [B4XPages] B4A PreoptimizedCLV lazy loading from SQLite and CSV - Newer developers - Peter Simpson    Feb 23, 2021   (28 reactions) is a simple example on using B4XPages with both an SQLite database and also a CSV file with multiple.... When it comes to the CSV file, yes I could have imported the file list of ISO 3166 country codes and... how to manipulate files and insert the data into multiple PreoptimizedCLV. The CSV file has 249 rows...-loading-from-sqlite-and-csv-newer-developers.127939/ https://www.b4x.com/android/forum/threads/%F0%9F%92%A1-b4x-xui-b4xpages-b4j-preoptimizedclv-lazy-loading-from-sqlite-and-csv-newer-developers... Wish LoadCSV from a String - Alessandro71    Oct 5, 2025 StringUtils LoadCSV requires a file in input.
Having already read the file, it would be nice to run LoadCSV on a string.... B4R Question SD-card: writing .CSV files - peacemaker    Aug 19, 2024 Hi, All
Just trying rSD lib with ESP32 and SPI card slot.
The main, it's usage "/" root prefix at the file names.
But how to save multiline text .CSV files correctly ?
Such sub... Page: 1   2   3   4   5   6   7   |