insert

  1. Alexander Stolte

    Android Example [B4X] Supabase - INSERT or UPDATE a record and return it

    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")...
  2. S

    B4J Library Build parametized SQL queries for Insert,Update and Delete

    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...
  3. S

    B4A Class Build parametized SQL queries for Insert,Update and Delete

    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...
  4. saeed10051

    B4J Question Inserting data to online mysql database

    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...
  5. DALB

    Android Question SQLite Insert seems not to insert

    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 & _...
  6. Mashiane

    B4J Question Is there a way around? DBUtils InsertMaps Transaction?

    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...
  7. Olivier Zeegers

    Android Question Voice recorder with rewind and overwrite/insert possible?

    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
Top