Hi all,
Suppose I have these codes
How many connection use on those codes ? 1 connection or 2 connections?
Suppose I have these codes
B4X:
Private reqM As DBRequestManager
reqM.Initialize(Me, "http://192.168.1.126:12001/rdc")
Private cmd1 As DBCommand
cmd1.Initialize
cmd1.Name = "com1"
reqM.ExecuteQuery(cmd1, 0, Tag)
Private cmd2 As DBCommand
cmd2.Initialize
cmd2.Name = "com2"
reqM.ExecuteQuery(cmd2, 0, Tag)
How many connection use on those codes ? 1 connection or 2 connections?