CREATE PROCEDURE
适用于 ❌ 开源版 ✅ Express 版 ✅ 专业版 ✅ 企业版
// Create a procedure that inserts a log message in a table
create.createProcedure("log")
.as(insertInto(LOG).columns(LOG.TEXT).values("Log called"))
.execute();
// Call the previously created procedure with generated code:
log(configuration);
// ...or with the CALL statement in an anonymous block
create.begin(call(name("log"))).execute();
// ...or with the CALL statement directly
call(name("log")).execute();
反馈
您对本页面有什么反馈吗? 我们很想听听您的意见!