Болтун
Зарегистрирован: 21 November 2005
Сообщения: 277
Примеры кода: 0
|
БД: Access. Какой максимальный объём данных ??? |
29 July 2008 16:07 |
|
|
|
|
Unicode string constants that appear in code executed on the server, such as in stored procedures and triggers, must be preceded by the capital letter N. This is true even if the column being referenced is already defined as Unicode. Without the N prefix, the string is converted to the default code page of the database. This may not recognize certain characters.
For example, the stored procedure created in the previous example can be executed on the server in the following way:
EXECUTE Product_Info @name = N'Chain'
The requirement to use the N prefix applies to both string constants that originate on the server and those sent from the client.
<a href=http://avto-credit.com>калькулятор автокредита</a> | <a href=http://avto-credit.com/crash-test.aspx>краш-тесты автомобилей</a> | <a href=http://crash-tests.net>краш-тесты</a>
Данное сообщение получено с сайта GotDotNet.RU
Последний раз редактировалось 29 July 2008 16:07
|
|