@aeric,
thank you so much. I was able to select the BDs with the links you sent me. I really appreciate your help.
Now I need a little help with the
Insert and
Update of the selected DB.
I used the following statements when the DB was predefined. Thanks in advance.
Sub InsertRecord (Nombre As String, Salario As Int)
Dim cmd As DBCommand = CreateCommand("insert_employees", Array(Nombre, Salario))
Dim j As HttpJob = CreateRequest.ExecuteBatch(Array(cmd), Null)
Wait For(j) JobDone(j As HttpJob)
If j.Success Then
Log("Inserted successfully!")
End If
j.Release
End Sub
Sub DeleteRecord (Nombre As String)
Dim cmd As DBCommand = CreateCommand("delete_employees", Array(Nombre))
Dim j As HttpJob = CreateRequest.ExecuteBatch(Array(cmd), Null)
Wait For(j) JobDone(j As HttpJob)
If j.Success Then
Log("Deleted successfully!")
End If
j.Release
End Sub