Android Tutorial DBUtils - Android databases are now simple!

cirollo

Active Member
Licensed User
Longtime User
cannot update a record with dbutils

Hello!

I cannot understand why I cannot update a record on a table this way:

Sub BtnSalva_Click
Dim WhereFields As Map
WhereFields.Initialize
WhereFields.Put("IdConfig", "EMMECI")
DBUtils.UpdateRecord(SQL, "Impostazioni", "IdAge", "ciro", WhereFields)
End Sub

I got an error msg in the dbutils module at line 127!
 

cirollo

Active Member
Licensed User
Longtime User
here's the error

this is my 127 line of dbutils module

SQL.ExecNonQuery2(sb.ToString, args)


the error it raises is:

LastException.android.database.SQLLite.SQLLiteconstraintexception:error code 19: constraint failed

I don't know what could be :-(
 

cirollo

Active Member
Licensed User
Longtime User
trying to update

Well. Erel
what i'm trying to do istituto to update the fields of the record with primary key
idconfig=emmeci
maybe i didn't understand how update works
 

cirollo

Active Member
Licensed User
Longtime User
but....

with this:

Sub BtnSalva_Click
Dim WhereFields As Map
WhereFields.Initialize
WhereFields.Put("IdConfig", "EMMECI")
DBUtils.UpdateRecord(SQL, "Impostazioni", "IdAge", "ciro", WhereFields)
End Sub

I'm not updating an existing record identified by the primary key='EMMECI'????

I don't want to inser a new record, only to change some fields in an existing one.

what's wrong???
thanks
 

rickydalley

New Member
Licensed User
Longtime User
Not working in emulator

The project doesn't work in the emulator.

It says LastException android.database.sqlite.SQLiteException: unable to open database

B4X:
   If FirstTime Then
      SQL.Initialize(File.DirRootExternal, "mytest.db",True)
   End If

but if I run this on a Samsung Galaxy Tablet it runs fine.

What am I doing wrong? My first assumption would be that the app can't write to the emulator and if it is that I don't know what to do.

regards, Ricky
 

Ricky D

Well-Known Member
Licensed User
Longtime User
Thanks

my new username wouldn't work for some reason.

This is my old one from my b4ppc days on my win phone 6.1 lol

I recreated the emulator and it works. Thanks

regards, Ricky
 

Ricky D

Well-Known Member
Licensed User
Longtime User
executehtml question

I am wondering what the list argument in the call is? I've tried to search but it's not anywhere.
Regards, Ricky
 

splatt

Active Member
Licensed User
Longtime User
HTML Column Width

In the ExecuteHtml sub routine, I assume the width of the columns is based on the column name. Is it possible to make this width greater, so that longer text items display in a more readable way?
 

Erel

B4X founder
Staff member
Licensed User
Longtime User
The width is set automatically by WebView. It considers both the title and the cells text.

If you want to manually set the width you can modify ExecuteHtml sub.
For example to set the second column width you can use this code:
B4X:
For i = 0 To cur.ColumnCount - 1
      If i = 1 Then
         sb.Append("<th style='width:200px;'>").Append(cur.GetColumnName(i)).Append("</th>")
      Else
         sb.Append("<th>").Append(cur.GetColumnName(i)).Append("</th>")
      End If
   Next
 

splatt

Active Member
Licensed User
Longtime User
I tried this and it did not make any difference.

The resulting table has three columns of equal width, which appears to be dictated by the width of the webview.

Is it possible to produce wider tables, as we have the ability to zoom in or out anyway?
 

splatt

Active Member
Licensed User
Longtime User
Excellent. Thanks for that Erel. I've set my report width to 150% and it works fine now.
 

Penko

Active Member
Licensed User
Longtime User
Erel, what is the reason to lowercase the database field names in ExecuteMap?

I was searching for an error in my code until I used Log for my map object only to see that my key is "list" instead of "LIST".

I am just asking if there is any reason to do so provided that I use uppercase fields when designing databases(no matter MySQL, SQLite or anything else) because it's easier to read them(at least for me).

Of course I can pass the lowercase value of my name but I wondered why is this?

Edit: I have another question. By returning "Null" in various occassions, what is the best way to get my results? I've used:

B4X:
txtFileName.Text = values.Get("list")
   txtNotes.Text = values.Get("notes")

This crashes when my database field is empty. I had to apply the following change to DBUtils in order to make it return a blank string which won't crash my application.

B4X:
Dim val As Object
   
   For i = 0 To cur.ColumnCount - 1
   
   val = cur.GetString2(i)
   
   If(val = Null) Then
      val = ""
   End If

      res.Put(cur.GetColumnName(i).ToLowerCase, val)
   Next

Unfortunately, it won't work for INTEGER.
 
Last edited:
Cookies are required to use this site. You must accept them to continue using the site. Learn more…