Namespace:  NHibernate.Exceptions
Assembly:  NHibernate (in NHibernate.dll)

Syntax

Visual Basic (Declaration)
Public Shared Function Convert ( _
	sqle As Exception, _
	message As String, _
	sql As SqlString, _
	parameterValues As Object(), _
	namedParameters As IDictionary _
) As ADOException
C#
public static ADOException Convert(
	Exception sqle,
	string message,
	SqlString sql,
	Object[] parameterValues,
	IDictionary namedParameters
)
Visual C++
public:
static ADOException^ Convert(
	Exception^ sqle, 
	String^ message, 
	SqlString^ sql, 
	array<Object^>^ parameterValues, 
	IDictionary^ namedParameters
)
JavaScript
NHibernate.Exceptions.ADOExceptionHelper.convert = function(sqle, message, sql, parameterValues, namedParameters);

Parameters

sqle
Type: System..::.Exception
message
Type: System..::.String
sql
Type: NHibernate.SqlCommand..::.SqlString
parameterValues
Type: array< System..::.Object >[]()[]
namedParameters
Type: System.Collections..::.IDictionary

See Also