Generate the appropriate select statement to to retreive the next value of a sequence.

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

Syntax

C#
public virtual string GetSequenceNextValString(
	string sequenceName
)
Visual Basic
Public Overridable Function GetSequenceNextValString ( _
	sequenceName As String _
) As String
Visual C++
public:
virtual String^ GetSequenceNextValString(
	String^ sequenceName
)

Parameters

sequenceName
Type: System..::..String
the name of the sequence

Return Value

String The "nextval" select string.

Remarks

This should be a "stand alone" select statement.

See Also