Library code snippets
SQL Data Provider VB.NET Class
- The Class
- Example Usage
- SqlDatabaseException
SqlDatabaseException
Namespace SqlDataProvider
''' <summary>
''' Represents errors that occur during application execution.
''' </summary>
Public Class SqlDatabaseException
Inherits Exception
#Region " Constructor "
''' <summary>
''' Initializes a new instance of the ADO.SqlDatabaseException class.
''' </summary>
Public Sub New()
End Sub
''' <summary>
''' Initializes a new instance of the ADO.SqlDatabaseException class with a specified error message.
''' </summary>
''' <param name="message">The message that describes the error.</param>
Public Sub New(ByVal message As String)
MyBase.New(message)
End Sub
''' <summary>
''' Initializes a new instance of the ADO.SqlDatabaseException class with a specified error message and a reference to the inner exception that is the cause of this exception.
''' </summary>
''' <param name="message">The error message that explains the reason for the exception.</param>
''' <param name="innerException">The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.</param>
Public Sub New(ByVal message As String, ByVal innerException As Exception)
MyBase.New(message, innerException)
End Sub
#End Region
End Class
End Namespace
Related articles
Related discussion
-
VB.NET Type 'SqlDatabaseException' not defined
by Mulish Mehdi (1 replies)
-
Very slow inserts using SqlCommand.ExecuteNonQuery()
by porchelvi (1 replies)
-
An Introduction to VB.NET and Database Programming
by yen (12 replies)
-
how to make smtp in vb.net
by konikula (1 replies)
-
String size limit and array upperbound limit
by konikula (3 replies)
Related podcasts
-
A Practical Look at Silverlight 2 Part 2
Now that Silverlight 2 is at the Olympics and making a big splash, we wanted to explore this fascinating technology more. Microsoft Silverlight 2 is a cross-browser, cross-platform, and cross-device plug-in for delivering the next generation of .NET based media experiences and rich interactive ap...
Related jobs
-
Microsoft .Net Architect
in AMSTERDAM (€50K-€90K per annum)
Events coming up
-
Dec
6
Developing AJAX Web Applications with Castle Monorail
London, United Kingdom
Monorail is the model-view-controller engine of the Castle Project, bringing many of the best ideas of Ruby on Rails to the .NET world. In this talk, David De Florinier and Gojko Adzic show how Monorail makes it easy to develop .NET based AJAX applications, and how to use the Castle Project to build Web 2.0 applications effectively. Come to this session if you are a .NET web developer. Everyone is welcome!
HI
how can I download the above code to test it
Thanks
This thread is for discussions of SQL Data Provider VB.NET Class.