I have got about 9 combo box in registration form and i would like to save all of them as blob data type in mysql and retrieve them in edit form my view form looks like the following
<%= select("pcs","pc_info[HDD]",options_for_select(["---Select---","20GB","40GB","160GB","250GB","Other"]"), {:style => "width:142px"}) %> </td>
<%= select("pcs","pc_info[DRIVE]",options_for_select(["---Select---","Combo Drive","DVD Writer","Other"]), {:style => "width:142px"}) %>
pc_info is the blob data type in MySQL It could save successfully to MySQL My Question is how to retrieve blob data type value and make the combo box selected according to those values.