@@ -202,7 +202,7 @@ func (s *SQL) SelectAND(table string, colvals [][]string) ([][]string, error) {
for rows.Next() {
err := rows.Scan(&bytes)
if err != nil {
- panic(err.Error())
+ return rsltRow, errors.New(err.Error())
}
rsltCol = append(rsltCol, string(bytes[:]))