in reply to DBD ERROR: error possibly near <*> indicator at char

In addition to the answer you've already received, I'd also recommend specifying the column names in the INSERT statement. That can save you from nasty surprises down the road.
Change:
insert into u_configname values (?,?,?,?,?,?,?,?,?,?,?)
to:
insert into u_configname (ad_client_id,ad_org_id,created,...) values ( +?,?,?,?,?,?,?,?,?,?,?)