[android-developers] Re: Strange and interesting problem (For Really ANDROID Lovers)

2009-01-15 Thread Ronald Krijgsheld
Hi, MyMsg is a global string. so it is overwritten. instead declare the string inside the for like: final string MyMsg = str[Myi] ; - ronald On Thu, Jan 15, 2009 at 9:47 AM, ipeg.stud...@gmail.com wrote: Hi developers... First of all thanks

[android-developers] Re: android.database.sqlite.SQLiteConstraintException: error code 19

2009-01-15 Thread Ronald Krijgsheld
hi, you can check the documentation of sqlite itself. as i understand it, it is a thrown when a constraint in the database is violated. e.g. a foreign key constraint or delete constraint. a google let me to the following issue: http://code.google.com/p/android/issues/detail?id=1221 - ronald