a problem

  • Thread starter Thread starter Fatboyslimro
  • Start date Start date
F

Fatboyslimro

Error: " Code page translations are not supported for the text data type.
From:1250 To:1252"
This error apears in a form only when some text info is added in a field for
comments.
On other machines everything is ok with this form.
I've searched the net but didn't found a solution.

thanks for any clue
 
Obviously a mix of code pages beetween the client machine and the server.
You should tell us more about the kind of provider used (ODBC, OLEDB/ODBC,
OLEDB for SQL-Server, etc.) and the parameters provided in the connection
string.

Also, it might be a good idea to use ntext field instead of text field. The
following article should give you a fair start:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsql2k/html/sql_dataencoding.asp .

The code page 1252 is the one with the Euro symbol and is now the default
installation; the 1250 is the old one, without the Euro symbol.

S. L.
 
Back
Top