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... csv / Time to convert.
The CsvToSQLiteExe file is still the old file, a new file with Java 11... B4A Example SQLiteLight four simple SQLite projects - klaus    Nov 29, 2018   (54 reactions)   tags: SqlLite Connection, SQL LITE Some users asked here for a simple SQLite project as an example to make their first steps in SQLite... are explained in the B4XSQLiteDatabase Booklet.
Attached three small projects:
- SQLiteLight1
A very... B4A Example [B4X] B4XPages B4XPages_SQLiteLight2 cross-platform project - klaus    Dec 9, 2020   (22 reactions) The attached project is a porting of the B4X_SQLiteLight2 project which is included in the B4X SQLLite database booklet.
It uses as much as possible XUI objects and common code.
Tested... B4A Library [Class] Flexible Table - klaus    May 22, 2025   (51 reactions)   tags: B4A UI, Klaus, Tree, table view sort, Table View, tabla : 2020.04.14 Version 3.14 Added the methods below - LoadSQLiteDB4(SQLite As SQL, Query As String, AutomaticWidths As Boolean) loads SQLite data with data type checking - LoadSQLiteDB5(SQLite As SQL, Query As String, Values() As String, AutomaticWidths As Boolean). loads SQLite data with data type checking , similar to LoadSQLiteDB4 but for parametrized queries. - GetColumnDataTypes As String..., Row As Int) - Changed LoadSQLiteDB2 signature. Replaced the possible values from "T"... Share My Creation iSQLiteLight Three simple SQLite projects - klaus    Feb 5, 2019   (8 reactions) The three projects are portations of the three BA4 SQLiteLight programs to B4i.
These examples are explained in the B4XSQLiteDatabase Booklet.
- iSQLiteLight1
A very simple project with a very... previous entry
- iSQLiteLight2
A simple project with some more functions:
A default database...
- iSQLiteLight3
Same as SQLiteLight2, all functions are the same.
The differences are the database path... B4A Question android.database.sqlite.SQLiteException: no such table: field1 (code 1 SQLITE_ERROR[1]): , while compiling: INSERT INTO field1 VALUES (?) - klaus (first post)    Feb 8, 2024 With the code of Mahares your project works OK. But, what is the purpose of your database. I have seen that you have 55 tables called field1 to field55. And each table has one column called dataxx, where xx is the number of the field. This database structure surprises me.... B4A Tutorial [B4X] Documentation Booklets - klaus    Aug 24, 2025   (95 reactions)   tags: help manual sample, books, Booklets Tutorials, B4x Documentation Booklet between B4A, B4J and B4i projects. B4X SQLiteDatabase This booklet explains the use of the SQLite library... B4A Tutorial SQLiteDB - klaus    Feb 9, 2014   (11 reactions) Below you find an application with a SQLite database and a ScrollView based table.
What the program...: 2013.02.08
Amended error reported in post #27
Updated zip file SQLiteDB_2D_v_1_2.zip
EDIT: 2013.02.09
Amended error reported in post #30
Updated zip file SQLiteDB_2D_v_1_3.zip
EDIT: 2013.04.19
Eliminated error with Null values in a database reported in post #45.
Updated zip file SQLiteDB_2D_v_1_4.zip... B4A Question Blank text retrieval from sqlite db - klaus (first post)    Jun 6, 2024   (4 reactions) According to the answer in post #2, have you tried this, ? Do While rs.NextRow LabelforLg.Text = rs.GetString("Body") Labelhead1.Text = rs.GetString("PageTitle") LabelforLg.Height = strUtils.MeasureMultilineTextHeight(LabelforLg, LabelforLg.Text) LG_ScrollView.Panel.Height = LabelforLg.Height Loop Inverting the two last lines ... B4A Question I have a problem with SQLite that fails when inserting a large number of records into a table. Please Help. - klaus (first post)    Mar 7, 2024
@klaus : you forgot to add after try this line: SQL2.EndTransaction
Thank you !
I have updated post #4.... Page: 1   2   3   4   5   6   7   |