Hi,
Vb.net boolean True is representing -1 , this code work for Ms Access, Ms SQL ect. But not work Oracle, because Oracle true is setting 1 in database (not -1)
I found this information about <OracleBoolea n Structure> http://msdn.microsoft.com/en-us/libr...v=vs.110).aspx
But I need a sample change for true 1 to -1 for oracle. Thanks for all helps...
Vb.net boolean True is representing -1 , this code work for Ms Access, Ms SQL ect. But not work Oracle, because Oracle true is setting 1 in database (not -1)
Code:
oRow("CAT_SELECTED") = True
If oRow("CAT_SELECTED") = True Then
' Not True
End If
I found this information about <OracleBoolea n Structure> http://msdn.microsoft.com/en-us/libr...v=vs.110).aspx
But I need a sample change for true 1 to -1 for oracle. Thanks for all helps...
Comment