Getting values of a datatable's row...
Hi guys,
i'm a problem with datatable...
I've create a dynamic datatable which has 6 fixed columns and others dnamic column(from 1 to ...n).
I've followed stetp by step BalusC Populate Datatable article,but i'm using my datatable as input data.
I'm associated a command button to each row to sending row data.
Now i have to send data.
publicvoid SendBiosample(ActionEvent e)throws SQLException{
setMyItem((Biosample) getMyDynamicDataTable().getRowData());
}
with this method i select current row.
This row has
id name lastname city age sex .....(dynamic)
and i need to send the known columns to a table of my db,and each one of others columns into a different row of another table.
How can i getValue of each column and putting it into a prepared statement?
Please help me and excuse me for my english and my lots post about datatables....thanks very much!!

