Move (and possible convert) something to something else.
| 34 | |
| 35 | // Move (and possible convert) something to something else. |
| 36 | void MOVD_move(thread_db* tdbb, dsc* from, dsc* to) |
| 37 | { |
| 38 | try |
| 39 | { |
| 40 | MOV_move(tdbb, from, to); |
| 41 | } |
| 42 | catch (const status_exception& ex) |
| 43 | { |
| 44 | Arg::StatusVector newVector; |
| 45 | newVector << Arg::Gds(isc_dsql_error) << Arg::Gds(isc_sqlerr) << Arg::Num(-303); |
| 46 | newVector.append(Arg::StatusVector(ex.value())); |
| 47 | status_exception::raise(newVector); |
| 48 | } |
| 49 | } |