Android Question An alien mystery

LucaMs

Expert
Licensed User
Longtime User
clsEmployee is a simple class that has its simple properties, like "FirstName".

CurrentEmployee is an object of type clsEmployee.

I change CurrentEmployee.FirstName but...

An alien mystery.gif
 
Last edited:

LucaMs

Expert
Licensed User
Longtime User
I see. Does it happen with the rapid debugger as well (see my private message)?

No, it does not happen in rapid debugger mode.

The strange thing is that now I get a duplicate key error in the database (instructions above) :eek:

android.database.sqlite.SQLiteConstraintException: PRIMARY KEY must be unique (code 19)


I will check.
 
Upvote 0

LucaMs

Expert
Licensed User
Longtime User
more precisely in Rapid Debugger Mode I can see the value of the property member variable I used (mFirstName).


upload_2014-11-10_11-28-13.png
 
Upvote 0

LucaMs

Expert
Licensed User
Longtime User
The strange thing is that now I get a duplicate key error in the database (instructions above) :eek:

android.database.sqlite.SQLiteConstraintException: PRIMARY KEY must be unique (code 19)

This is because I use a transaction with Try-Catch-End Try and in rapid mode debugger the error (mine!) Is reported.
 
Upvote 0
Top