i have a clients table with 2 columns
CREATE TABLE clients
(
client_id serial primary key,
name VARCHAR(40) not null
)
i have a json data like
[{client_id:"1",name:"Rick"},{client_id:"2",name:"Carlin"}]
Now i need to use this json to parse and insert into my client table. How can i do it using jsp servlets and postgres database.