vote up 1 vote down star

I hava a problem with this mssql_query in PHP :

$query = 'SELECT Ville FROM tblLstManufacturiers where province = "Québec"';

The result is empty because I have an accent in Québec

How can I do this?

flag

1 Answer

vote up 1 vote down check
SELECT Ville
FROM tblLstManufacturiers
WHERE province = N'Québec' COLLATE Latin1_General_CS_AI
link|flag
Are you sure that's working with a MSSQL query? – Bigballs Feb 25 at 13:50
Ah, sorry, confused with MySQL – Quassnoi Feb 25 at 14:03
See updated post – Quassnoi Feb 25 at 14:05
It'S not working, but I use the utf8_decode function on my query and it's working. Thank's a lot! – Bigballs Feb 25 at 14:37

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.