Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Collation data base

Status
Not open for further replies.

raai

Programmer
Jul 17, 2008
30
0
0
MX
I created one data base with collation equal to SQL_Latin1_General_CP1_CI_AS.
The server have installed SQL Server 2005.

I created a web application when i make a insert or update, the data saving wrong (p.e BLVD Ñ Í Ó DIAZ ORDAZ, must be BLVD Ñ Í Ó DIAZ ORDAZ)

The charset of web application is ISO 8859-1.

Please help me, thank's
 
You can always define the address field as nvarchar. nvarchar uses 2 bytes per character, but it gives you all of the unicode characters.

Alternatively, you can change the code page for the database, but that is a pretty painful way to go.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top