Return SQL needed to drop the named table. May (and should) use some form of "if exists" clause, and cascade constraints.

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

Syntax

Visual Basic (Declaration)
Public Overridable Function GetDropTableString ( _
	tableName As String _
) As String
C#
public virtual string GetDropTableString(
	string tableName
)
Visual C++
public:
virtual String^ GetDropTableString(
	String^ tableName
)
JavaScript
function getDropTableString(tableName);

Parameters

tableName
Type: System..::.String

Return Value

See Also