Inserting a record by calling a stored procedure in MySQL. Need access to the identity (LAST_INSERT_ID()) of the new record, which is being returned from the sproc..
Use the result attribute with CFQuery.
In CFQuery, use the result attribute to name the stored
procedure response, eg myResult.
Access the identity with myResult.GENERATED_KEY.
+