Special characters in this case are accented.

For example:

Our that base has the strings [áaaa,aaaa,bbbb], our function to order the
query is returning in the following order:

aaaa,bbbb,áaaa

We need that the return of the query should be:

aaaa,áaaa,bbbb

I will check collating sequence that Richard suggested, but waiting for
more ideas


On Fri, Oct 19, 2012 at 10:14 PM, Lew <[email protected]> wrote:

> Vinicius wrote:
>
> we did a query in SQLlite, but the result is not in the order that we
>> need, ie, the character "á" is being shown after z.
>>
>> How can I configure my query to ignore special characters
>>
>
> Which characters are "special" to you? It's kind of hard to spell certain
> words without certain accented characters, for
> example, "voilà".
>
> 'getNumericValue()' is a bad idea. It doesn't correspond to collation
> order. 'Ⅼ' will return 50. 'Ⅻ' will return 12.
>
> There are methods to deal with collation order in Java in case the SQLite
> functions are just too "lite".
>
> It's a big topic.
>
> --
> Lew
>
>  --
> You received this message because you are subscribed to the Google
> Groups "Android Developers" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected]
> For more options, visit this group at
> http://groups.google.com/group/android-developers?hl=en
>

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to