Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
2answers
2k views

normalizing accented characters in MySQL queries

I'd like to be able to do queries that normalize accented characters, so that for example: é, è, and ê are all treated as 'e', in queries using '=' and 'like'. I have a row with username field set ...
4
votes
1answer
79 views

Unicode-ready wordsearch - Question

Is this code OK? I don't really have a clue which normalization-form I should us (the only thing I noticed is with NFD I get a wrong output). #!/usr/local/bin/perl use warnings; use 5.014; use utf8; ...
3
votes
1answer
154 views

PostgreSQL 9.1 using collate in select statements

I have a postgresql 9.1 database table, "en_US.UTF-8": CREATE TABLE branch_language ( id serial NOT NULL, name_language character varying(128) NOT NULL, branch_id integer NOT NULL, ...
2
votes
1answer
1k views

SQLite Query in non case sensitive alphabetical order

All I want to do is grab the stuff in alphabetical order and ignore the capital letters. db.rawQuery("SELECT " + catName + " FROM "+tableName+" ORDER BY "+catName+" ASC COLLATE NOCASE;", null); ...
2
votes
3answers
642 views

Cant insert utf8 characters on mysql (with utf8 collation, charset and nameset)

im facing a really stressing problem here.. i have everything in UTF-8 , all my DB and tables are utf8_general_ci but when trying to insert or update from a single PHP script all i see are symbols.. ...
2
votes
1answer
506 views

Problem with mysql character set & GWT

Hi I've a SmartGWT application which interacts with a mysql database using rpc services. Suppose it as a simple form with a textbox & two save & load buttons. My database & tables & ...
2
votes
1answer
1k views

What does the COLLATE keyword do when creating a sqlite index?

According to the sqlite3 documentation, The COLLATE clause following each column name defines a collating sequence used for text entries in that column. The default collating sequence is ...
1
vote
1answer
119 views

MYSQL and REGEX compare

I have some problem with REGEXP and MYSQL. How I cant ignore the accent on my string to compare with the regexp value? SELECT ('estágio') REGEXP '(estagio)') AS dados I cant remove the accent from ...
1
vote
1answer
159 views

Inconsistent MySQL COLLATE errors across databases

I have two physically-separate MySQL databases on which I have to run a single query. The query has a section of SQL that looks like this: and foo_table.bar_column like concat('%', rules.pattern, ...
1
vote
0answers
513 views

Syntax for using collate nocase in a SQLite replace function

I have an existing database where they created theiw own unicode collation sequence. I'm trying to use the following code and get a "no such collation sequence" exception. Can anybdy hlep with the ...
0
votes
0answers
21 views

Crystal Reports Server 2011 character set compatibility

I'm currently working on SQL Server 2008 R2 and plan to get Crystal Reports Server 2011 up and running with SQL Server. Wanted to see if Crystal Reports Server 2011 supports the Latin-1 general ...
0
votes
1answer
231 views

PL/SQL equivelent to MYSQL COLLATE

I am trying to convert some MYSQL code over to ORACLE PL/SQL. I am looking for a equivalent to the COLLATE command. Here is a code snippet: CREATE TABLE IF NOT EXISTS `service_types` ( ...
0
votes
2answers
122 views

How to properly frame a collate command in T-SQL?

I'm trying to write a query across two linked servers. Having set up the link with an appropriate logon, I'm getting this collate error: Cannot resolve the collation conflict between ...
0
votes
1answer
491 views

MySQL Collate Latin1_General_CI_AI Problem

I have the following select statement where I'm trying to search for a players first and last name that may contain accents in it. $sql = " SELECT * FROM player WHERE player.player_first ...
0
votes
1answer
285 views

MS SQL 2005 - order by collate with subquery fails

This is a simplified version of a real query to show the problem. It can be executed on the sample Adventureworks database: SELECT Person.Address.*, (SELECT TOP 1 [Name] FROM Person.StateProvince ...
0
votes
1answer
2k views

Using COLLATE in Android SQLite - Locales is ignored in LIKE statement

When creating my SQLite database in Android I set the database locale - db.setLocale(new Locale("cz_CZ")). This is a Czech locale. A SELECT statement works and takes the locale into account, for ...
0
votes
1answer
475 views

How can I define my custom collate in Sqlite (in Objective-C) (for iPhone)

I need to define an arbitrary comparison method for sqlite in code. I need to be able to search for "e" and find both "e" and "é" (this is an example and the actual characters are in Persian). any ...