Plateforme Level Extreme
Abonnement
Profil corporatif
Produits & Services
Support
Légal
English
String or binary data would be truncated
Message
 
 
Information générale
Forum:
Microsoft SQL Server
Catégorie:
Autre
Divers
Thread ID:
01310262
Message ID:
01310393
Vues:
33
>>I succeeded to bypass that issue by adding this in the oCommand.CommandText in my SQLUpdate() and SQLInsert() methods:
>>
>>
>>                ' In SQL Server, we have to turn off ANSI Warnings as we will have an error
>>                ' if a field value is greater than the field length
>>                If nBackend = 2 Then
>>                    oCommand.CommandText = "SET ANSI_WARNINGS OFF; " + oCommand.CommandText
>>                End If
>>
>>
>>However, this is effective for all updates or inserts in a hit. If anyone would have a simpler method where the setting would only be set once per hit, that would be great.
>
>Hi Michel,
>
>I was reading on these settings yesterday in the SQL Server book I have and it is said that the connection setting overwrites database setting. Perhaps you can set it per connection?
>
>UPDATE. I tried to search on google how to set it per connection, but nothing good comes up so far :(

Looking through http://msdn2.microsoft.com/en-us/library/ms130822(SQL.100).aspx
and http://www.connectionstrings.com/?carrier=sqlserver2005

I believe you can add ;AnsiNPW = no at the end of your connection string.
If it's not broken, fix it until it is.


My Blog
Précédent
Suivant
Répondre
Fil
Voir

Click here to load this message in the networking platform