S
Sriram
Hi All,
I am using "dataView.RowFilter" method to filter the
values in my .NET 1.0 C# web application.
There is a Oracle 8i Database with a table "Operation" in
which we have a field OperationCode( varchar2) with the
following values :
a1, a2, a3, 20, 21, 23, JEN
I am using DataView.RowFilter method 'CaseSensitivity'
property of underlying datatable is set to true.
1) Setting dataviews's rowfilter Criteria as
OPERATIONCODE < 'a101' returns 4 records a1, 20,21, 23 in
the application.
2) TOAD/Oracle sqlplus Returns 5 records a1, 20, 21, 23,
JEN
sqlplus returns the same a1, 20, 21, 23, JEN
SO Oracle consider A-Z to be less than a-z whereas .net
dataview rowfilter doesnt seem to do so
So the filtering values are different from the values
which we get by querying the database. Is there a way to
get the same values from my dataviews row filter.
We have tried the same thing in framework 1.1 also and
with all types of providers for oracle like OLEDB ODBC and
Microsoft and Oracle Data Providers but all give the same
results.
Any thoughts on this....
Thanks in advance.
Regards,
Sriram
I am using "dataView.RowFilter" method to filter the
values in my .NET 1.0 C# web application.
There is a Oracle 8i Database with a table "Operation" in
which we have a field OperationCode( varchar2) with the
following values :
a1, a2, a3, 20, 21, 23, JEN
I am using DataView.RowFilter method 'CaseSensitivity'
property of underlying datatable is set to true.
1) Setting dataviews's rowfilter Criteria as
OPERATIONCODE < 'a101' returns 4 records a1, 20,21, 23 in
the application.
2) TOAD/Oracle sqlplus Returns 5 records a1, 20, 21, 23,
JEN
sqlplus returns the same a1, 20, 21, 23, JEN
SO Oracle consider A-Z to be less than a-z whereas .net
dataview rowfilter doesnt seem to do so
So the filtering values are different from the values
which we get by querying the database. Is there a way to
get the same values from my dataviews row filter.
We have tried the same thing in framework 1.1 also and
with all types of providers for oracle like OLEDB ODBC and
Microsoft and Oracle Data Providers but all give the same
results.
Any thoughts on this....
Thanks in advance.
Regards,
Sriram