brouznouf / fivem-mysql-async

MySql Async Library for FiveM
MIT License
111 stars 106 forks source link

Calling Procedures does not work #182

Open GabsReDeal opened 3 years ago

GabsReDeal commented 3 years ago

I have tried multiple times but it seems that I cannot execute procedures using this library.

I have tried the following using Lua

MySQL.Async.execute("CALL MyProc(@p1, @p2, @p3)",
    {
        ["@p1"] = p1,
        ["@p2"] = p2,
        ["@p3"] = p3
    })

No errors are given whatsoever, but nothing happens in the db either.