5.16 调用存储过程 // 调用存储过程,查询 salary 表Record first = Db.findFirst("CALL FindSalary (1,\"201901\")"); int update2 = Db.update("CALL InsertSalary (3, 123)"); // 调用存储过程,更新 salary 表 // 调用存储过程,删除 salary 表int delete = Db.delete("CALL DeleteSalary(3)");