G
Guest
Hello,
I have opened a datset from an Oracle Database.
I am trying to 'Select' a non key column.
strFind = "INTERNAL_EMPL_ID = '" & provId & "'" - This yields :
"INTERNAL_EMPL_ID = '0000015615'"
drArray = ds.Tables(0).Select(strFind)
This should return a single row row array but it does not. No exception is thrown.
in the immediate window the phrase :
? isNothing(ds.tables(0).select("INTERNAL_EMPL_ID = '0000015615'"))
Yields False and I have seen the id in the table. I know it is out there. Why won't Select find it?
help.
mklapp
I have opened a datset from an Oracle Database.
I am trying to 'Select' a non key column.
strFind = "INTERNAL_EMPL_ID = '" & provId & "'" - This yields :
"INTERNAL_EMPL_ID = '0000015615'"
drArray = ds.Tables(0).Select(strFind)
This should return a single row row array but it does not. No exception is thrown.
in the immediate window the phrase :
? isNothing(ds.tables(0).select("INTERNAL_EMPL_ID = '0000015615'"))
Yields False and I have seen the id in the table. I know it is out there. Why won't Select find it?
help.
mklapp