Simple MySQL Library

Routine Execution

Hi all!

I'm adding Simple MySQL Library to my Java project and I need some help when calling Stored Routines.

I have several routines that have IN and OUT parameters.
I was using the CallableStatement to achieve this but since now I wanna stop using that and move to this Library, I stumbled upon the problem of executing this routines.

Couldn't find any information about this, so I decided to post to this forum.

Can anyone help me out?

This is the signature of one of my routines:

GetCurrentDriverOfVehicle(p_vehicle_tracker_imei VARCHAR(45), OUT result VARCHAR(90))

Question and comments about the Java Simple MySQL Library.