SynopsisAdds a row to a database table. Prototype#include "emfdb.h" int dbAddRow(int did, char_t* table); Parameters
DescriptionAdds and zeroes one row to the given database table. Return ValuedbAddRow returns the row id of the new row upon success, or a negative number upon error. Exampleif ((rid = dbAdd(did, "detector")) < 0) { Error(wp, 200, "Cant add a detector row"); return; } See Also
|