My Experience Notes
These pages contain my experiences using technology.
All of the works are working properly at the time when they wrote. You may use them for any purposes.
Friday, February 13, 2026
java: comparison between database api in java android and jdbc in java standard edition
Here is comparison between database api in java android and jdbc in java standard edition
Operation
Java Android
Java SE (JDBC)
INSERT
Returns new row ID (long)
Returns affected rows (int)
UPDATE
Returns affected rows (int)
Same
DELETE
Returns affected rows (int)
Same
In java SE (JDBC) id can be retrive using jse ps.getGeneratedKeys() return long where ps is PreparedStatement.