简体   繁体   中英

Common list of SQL exceptions with numbers

Can someone list some of the common SQL exceptions(with Numbers) we will be facing. Need to catch them in my project.

Language: C# MS SQL server

SQL Server error messages can be found here:

http://technet.microsoft.com/en-us/library/cc645603(v=sql.105).aspx

Or you can query them with the following query:

SELECT * FROM sys.messages WHERE language_id = 1033

The provider specific exception classes and error codes should be listed in the provider's documentation.

For example ODBC error codes are listed here: http://msdn.microsoft.com/en-us/library/ms714687.aspx

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM