egards
MSSQL use the library, and my project I select, insert and update and everything works OK , but only when I run in Debug mode.
But fails when I compile in Release mode
Dim db As MSSQL
dim L as List
Dim str As String
db.setDatabase("x.x.x.x","MyDatabase","MyUsr","Mypwd")
L.Initialize
L = db.Query("Select * from myTable")
If Lx.IsInitialized= True Then
For i= 0 To Lx.Size-1
str = Lx.Get(i)
Msgbox (str ,"")
Next
Else
Return
End If
MSSQL.xml see now using the jtds - 1.2.5 for concetarse to SQL SERVER, now it will not be that jar file is not copied when compiling in release mode.
Now another thing I detect that when db.Query ( "Select * from myTable " ) I run in debug mode delivers data , but release delivery mode null .
MSSQL use the library, and my project I select, insert and update and everything works OK , but only when I run in Debug mode.
But fails when I compile in Release mode
Dim db As MSSQL
dim L as List
Dim str As String
db.setDatabase("x.x.x.x","MyDatabase","MyUsr","Mypwd")
L.Initialize
L = db.Query("Select * from myTable")
If Lx.IsInitialized= True Then
For i= 0 To Lx.Size-1
str = Lx.Get(i)
Msgbox (str ,"")
Next
Else
Return
End If
MSSQL.xml see now using the jtds - 1.2.5 for concetarse to SQL SERVER, now it will not be that jar file is not copied when compiling in release mode.
Now another thing I detect that when db.Query ( "Select * from myTable " ) I run in debug mode delivers data , but release delivery mode null .