I have the following code to insert items into a MySQL database from an Excel form.
Set rs = New ADODB.Recordset
ConnectDB
With wsWorkBook
strSQL = "INSERT INTO work_order (job_status, job_description, system_id) VALUES ....;"
rs.Open strSQL, oConn, adOpenDynamic, adLockOptimistic
' word_order.id
End With
How can I get the last insert id of that line, which is in the work_order.id column?