{{theTime}}

Search This Blog

Total Pageviews

How to create Updateable ResultSet?

How to create Updateable Resultset?

Use ResultSet Concurrency Constant in createStatement(), prepareStatement(), or prepareCall()

CONCUR_READ_ONLY  -- Read only
CONCUR_UPDATABLE  -- Updateable.

No comments:

Java Script GET request Sample Code

fetch(' https://api.public.com/api ')   .then(response => response.json())   .then(data => console.log(data))   .catch(error =...