B4A Tutorial [B4X] SQL with Wait For - Erel    May 15, 2017   (22 reactions)   tags: wait, Wait For, Resumable Sub, SQL Wait For progress web, SQL .ExecNonQueryBatch("SQL")
Wait For (SenderFilter) SQL_NonQueryComplete (Success As Boolean)
Log... will be caught by the correct Wait For call in all cases.
- Note that SQL.ExecNonQueryBatch begins... B4A Question Unknown problem while using ExecNonQueryBatch, JdbcSQL [Solved] - Anser    Aug 24, 2023 a remote MySQL table.
I am using ExecNonQueryBatch to do a batch insert to remote MySQL server.
The problem that I am facing is that
I am not getting any error
ExecNonQueryBatch status is returning... B4J Code Snippet jtds jdbc driver with standalone package - Erel    Aug 25, 2021   (11 reactions) .ExecNonQueryBatch("SQL")
Wait For (SenderFilter) SQL_NonQueryComplete (Success As Boolean)
Log("NonQuery: " & Success)
End Sub
If you get an error such as: "SSO...=test&password=test")
For i = 1 To 10
sql.AddNonQueryToBatch("INSERT....LoadLayout("Layout1")
MainForm.Show
Dim sql As SQL
sql.Initialize("net... B4A Tutorial SQL tutorial - Erel    Oct 2, 2019   (20 reactions)   tags: sqliteimages, begin transaction, SQL . Batch inserts SQL.AddNonQueryToBatch / ExecNonQueryBatch allow you to asynchronously process a batch...))) Next sql1.ExecNonQueryBatch("SQL") ... Sub SQL_NonQueryComplete (Success As Boolean... AddNonQueryToBatch and eventually call ExecNonQueryBatch. The task will be processed in the background... code: Sub CreateTables SQL1.ExecNonQuery("DROP TABLE IF EXISTS table1") SQL1.ExecNonQuery("DROP TABLE IF EXISTS table2") SQL1.ExecNonQuery("CREATE TABLE table1... Share My Creation (PHP/MySQL/API) User Login App - aeric    Aug 16, 2024   (31 reactions) simple PHP with mysql_query function. I have later updated the 2nd sample with mysqli since mysql... Wish [Wish] SetNonQuery2Statement, AddNonQuery2Args, ExecNonQuery2Batch - OliverA    Apr 24, 2018   (3 reactions) AddNonQueryToBatch is such a case: For i = 1 To 1000 sql.AddNonQueryToBatch("INSERT INTO table1 VALUES (?)", Array(Rnd(0, 100000))) Next Dim SenderFilter As Object = sql.ExecNonQueryBatch("SQL...The current AddNonQueryToBatch/ExecNonQueryBatch is very flexible by allowing various non-query... of 1000 entries). The ExecNonQueryBatch then iterates over that list (https://github.com....AddNonQuery2Args(Array(Rnd(0, 100000))) Next Dim SenderFilter As Object = sql.ExecNonQuery2Batch... B4J Question MySQL AddNonQueryToBatch - aeric (first post)    Nov 5, 2024 , "password")
Before executing the batch, you can try check if the database is initialized or opened.
If MySQL.IsInitialized Then
Dim SenderFilter As Object = MySQL.ExecNonQueryBatch("SQL")
Wait For (SenderFilter) SQL_NonQueryComplete (Success As Boolean)
Log("NonQuery...Maybe you can try to use
MySQL.InitializeAsync("sql", "com.mysql.jdbc.Driver"... B4A Question SQLite, ExecNonQueryBatch with WaitFor; missing SQL_QueryComplete - leitor79 (first post)    Jul 27, 2017 Hi Erel, thank you for your answer.
I can't reproduce the error. I mean; I uncommented the section (which I've replaced with... B4A Question SQLite - trouble with ExecNonQueryBatch and SQL_NonQueryComplete - Erel (first post)    Dec 1, 2013 1. Code modules cannot handle events. DBUtils was written before the addition of classes. I recommend you to change DBUtils to a class. You will then be able to handle the events.
2.
If Cmd.Trim = &... B4A Question cloudKVS - how to identify specific changes on NewData event? - Erel (first post)    Sep 11, 2023 It is being a while since I've touched this code, but it looks like you can get the list of updated items at this point: 'ser_BytesToObject If items.Size > 0 Then For Each item1 As Item In items InsertItemIntoData(item1, True) Next sql.ExecNonQueryBatch("getuser") End If ... Page: 1   2   3   4   5   6   7   |