vote up 0 vote down star

I want to insert french characters in an Access database using ASP.
Can you please suggest me what can i do??

Many Thanks
Shaheen

flag
Are you using htmlencode? How are you sanitizing data? – Remou Oct 29 at 14:51

1 Answer

vote up 1 vote down

Here is half the answer

If you know the ASCII code of the french character then you can use the chr() function e.g.

INSERT INTO TestTable ( Field1 ) VALUES ( Chr(133));

Here is a list of relevant ascii codes french characters

[EDIT] A rather more complete example below

Sub Test_ASCII()
    Dim strSQL As String, strName As String
    strName = "Andr" & Chr(133) 'Good French Name
    strSQL = "INSERT INTO TestTable ( Field1 ) VALUES ('" & strName & "');"
    DoCmd.RunSQL strSQL
End Sub

Query runs fine, but the French "e" is not displaying correctly. Probably my setup -- refer comment below

I only have access 2002, perhaps later version have support for UFT-8 or UNICODE?

link|flag
Thing is, if shaheen is using html encode, Pádraig will become Pádraig. I find that most characters (cedillas etc, etc) display fine on my version of Access (2000) – Remou Oct 29 at 15:20
@Remou - Thanks for update. I have edited my example. – heferav Oct 29 at 16:53

Your Answer

Get an OpenID
or

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