Bryan - Gendev
Programmer
A user has found a 'bug' in my application
I have a field (fname) consisting of filenames with paths ( some very long) in a table used to report from.
As an option in my reporting module I want to create the list of records ordered on the filename. I have this:-
This works but puts the uppercase filenames in the list before the lowercase ones.
I have tried upper(fname) and lower(fname) for the order but this fails leaving the records in their default order.
Can someone suggest an expression to get the records in 'true' alphabetic order regardless of case?
Thanks
GenDev
I have a field (fname) consisting of filenames with paths ( some very long) in a table used to report from.
As an option in my reporting module I want to create the list of records ordered on the filename. I have this:-
Code:
Select * From (mytable) Into Cursor mycursor Order By fname
This works but puts the uppercase filenames in the list before the lowercase ones.
I have tried upper(fname) and lower(fname) for the order but this fails leaving the records in their default order.
Can someone suggest an expression to get the records in 'true' alphabetic order regardless of case?
Thanks
GenDev