Hello
I have two additions that I want to link together
Using START TRANSACTION
And COMMIT
How to do that with the Post function
The example below
I have two additions that I want to link together
Using START TRANSACTION
And COMMIT
How to do that with the Post function
The example below
B4X:
Private Sub InsertSghra
JobInsertSghra.Initialize("JobInsertSghra",Me)
JobInsertSghra.PostString("http://www.***.php", _
" insert into Insert2(NameMuderya,NoaTaleem) VALUES('" & LabelTitleWsta.Text & "','" & EditTextZkoorWsta.Text &"')")
End Sub
Private Sub InsertWsta
JobInsertWsta.Initialize("JobInsertWsta",Me)
JobInsertWsta.PostString("http://www.***.php", _
" insert into Insert2(NameMuderya,NoaTaleem) VALUES('" & LabelTitleWsta2.Text & "','" & EditTextZkoorWsta2.Text &"')")
End Sub