You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is there a reason why SQLiteStatement#executeUpdateDelete() 's return type is long, instead of int (as specified in Android's API)?
The value in any case comes from mDatabase.lastChangeCount(), which is int by itself, so I don't understand why to change the type. Could you please elaborate?
Thanks!
Alex.
The text was updated successfully, but these errors were encountered:
Thank you for the inquiry, as it turns out, the call to lastChangeCount() internally calls SQLite sqlite3_changes which returns an int. This is likely a historical mistake, we will correct the return signature. Thanks!
Hi,
Is there a reason why SQLiteStatement#executeUpdateDelete() 's return type is long, instead of int (as specified in Android's API)?
The value in any case comes from mDatabase.lastChangeCount(), which is int by itself, so I don't understand why to change the type. Could you please elaborate?
Thanks!
Alex.
The text was updated successfully, but these errors were encountered: