B4A Question MSMySQL Async SELECTS and results - yiankos1    Sep 7, 2017 Hello my friends,
I use MSMySQL lib from @DonManfred. I use a for-loop to get about 10 Async...)
startDate=dateList.Get(i)
Main.db.QueryASync("SELECT... B4A Question Remote server connection how to port B4J code (working) to B4A (SQL.InitializeAsync) - Culjko (first post)    Dec 22, 2024 maybe i was wrong :)
class mySQL
Sub Class_Globals
Public mySQL As SD_SQL
Private... this method if needed.
Public Sub Initialize(CallbackModule As Object, EventName As String)
mySQL... B4A Question JdbcSQL InitializeAsync timeout - Drago Bratko (first post)    Oct 23, 2024   (1 reaction) Exactly, my code is combination of great Erel's example.... B4J Question jSQL: async version of ExecQuerySingleResult - DonManfred (first post)    May 28, 2021   (1 reaction) Honestly you should always use the Async methods.
Edit: Especially when working with a Remote-Database.... B4J Question SQL and Async Query - Swissmade    Feb 27, 2014 Hi,
Search the forum I can not find what I need.
I like to use ExeCQueryAsync.
Now I miss the option to also make use of a Taskid.
This is not possible here or I miss something.
SQLRespond_querycomplete(Success As Boolean, RS As ResultSet)
Something like this
SQLDB.ExecQueryAsync("SQLRespond... Bug? SQL null on ExecQueryAsync - EnriqueGonzalez    Jan 20, 2018 with that but in the tooltip for execQueryAsync there is an example passing a Null value.
public Sub fillCmb(query As String,params() As String,cmb As ComboBox)
Dim sf As Object = sql.ExecQueryAsync... 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 switch to SQL.ExecQueryAsync:
Dim SenderFilter As Object = sql.ExecQueryAsync("SQL"....
The new standard way to insert data is:
For i = 1 To 1000
sql.AddNonQueryToBatch("INSERT INTO table1 VALUES (?)", Array(Rnd(0, 100000)))
Next
Dim SenderFilter As Object = sql.ExecNonQueryBatch("SQL")
Wait For (SenderFilter) SQL_NonQueryComplete (Success As Boolean)
Log... B4A Question Sql1.InitializeAsync - can anyone help with the Library to reference? - Erel (first post)    Oct 3, 2019 Use JdbcSQL: https://www.b4x.com/android/forum/threads/jdbcsql-directly-connect-to-remote-databases.84016/#content... B4A Question Resumable Sub that returns 2 values - Alessandro71    Jan 3, 2023 How can you write a Resumable Sub that returns 2 values, just like ExecQueryAsync? I always see Resumable Subs that returns just one value Dim SenderFilter As Object = sql.ExecQueryAsync("SQL", "SELECT * FROM table1", Null) Wait For (SenderFilter) SQL_QueryComplete (Success As Boolean, rs As ResultSet)... Share My Creation (PHP/MySQL/API) User Login App - aeric    Aug 16, 2024   (31 reactions) Web API Updates: Latest B4XPages user login client apps (using B4J server): https://www.b4x.com/android/forum/threads/project-template-user-login-client-b4x.161914/ Older project: https://www.b4x.com/android/forum/threads/b4j-mysql-api-server-key-token-and-b4x-user-login-apps.126081/ 94106 94119 94118 Android App 94107941089411194112 94109 102583 This is the 3rd version of login exam... Page: 1   2   3   4   5   6   7   |