SQL procedure looks like this:

PROCEDURE MainSchema.insertPerson(inName varchar(50),  inSurname 
varchar(50))
BEGIN
insert into Persons (Name, Surname, LogTime)
values (inName, inSurname, NOW());
       
        #there's auto-increment id as well, not important for this example

END

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to