Hi Fellow B4Xers,
I have strange issue. I am using jRDC2 Client in B4J and would like to query a MySQL table
When I use this command, I get a result returned
	
	
	
	
	
	
	
	
	
		    Dim req As DBRequestManager = CreateRequest
    Dim cmd As DBCommand = CreateCommand("ad_SYS1_UnitActive", Array("350183343201117"))
	 
	
	
		
	
 
but when I do it this way around, I get no result
	
	
	
	
	
	
	
	
	
		    Dim IMSI As String = "350183343201117"
    Dim req As DBRequestManager = CreateRequest
    Dim cmd As DBCommand = CreateCommand("ad_SYS1_UnitActive", Array(IMSI))
	 
	
	
		
	
 
I am either missing something or I am going mad.
Can someone help please ?