MCPcopy Create free account
hub / github.com/FirebirdSQL/firebird / MOVD_move

Function MOVD_move

src/dsql/movd.cpp:36–49  ·  view source on GitHub ↗

Move (and possible convert) something to something else.

Source from the content-addressed store, hash-verified

34
35// Move (and possible convert) something to something else.
36void 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}

Callers 1

mapInOutMethod · 0.85

Calls 7

MOV_moveFunction · 0.85
GdsClass · 0.85
NumClass · 0.85
raiseFunction · 0.85
StatusVectorClass · 0.70
appendMethod · 0.45
valueMethod · 0.45

Tested by

no test coverage detected