https://www.b4x.com/android/forum/threads/b4x-supabase-the-open-source-firebase-alternative.149855/
It is possible to create a new data record and return it directly.
Use the SelectData property
Dim Insert As Supabase_DatabaseInsert = xSupabase.Database.InsertData
Insert.From("users")...
This is a small class to easily build SQL queries
declare an instance of the class clBuildSQL and initialize it
Private fBuildSQL As clBuildSQL
....
fBuildSQL.initialize
Insert record
Just pass as first parameter the table name and as second parameter a map with pairs keys/values...
This is a small class to easily build SQL queries
declare an instance of the class clBuildSQL and initialize it
Private fBuildSQL As clBuildSQL
....
fBuildSQL.initialize
Insert record
Just pass as first parameter the table name and as second parameter a map with pairs keys/values...
i am trying to insert data to my online database using following php script
<?php
$conn = new mysqli("fdb23.awardspace.net", "3373050_restaurant", "abc123", "3373050_restaurant");
if ($conn->connect_error) {
die("ERROR: Unable to connect: " . $conn->connect_error);
}
echo...
Hello every pro,
I use the code below to insert datas in a table which name is pvpt (for geography)
synt="INSERT INTO pvpt(pays,villes,lat,ns,lon,ew,abrv,ajout) VALUES " & _
"('" & _
txtPays.Text & sep & _
txtSaisieNelleVille.Text & sep & _...
Ola
I'm adding multiple records to my sqlite db using DBUtils InsertMaps. This uses a transaction for the inserts. This works perfectly, however if there are records in your table that conflict with a primary key, even if there are new records in your INSERT statements, the whole transaction...
Hello,
I want to develop my own voice recorder app (dictate app) .. The app should be able to rewind and playback the recorded audio and also work in overwrite or insert mode when recording. Can this be done with b4x?
Thank you
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.