DBDriverBaseGetAllSystemSequences Method |
Gets all system sequence instances for the database targeted. System sequences are sequences which are system wide, like @@IDENTITY.
Namespace:
SD.LLBLGen.Pro.DBDriverCore
Assembly:
SD.LLBLGen.Pro.DBDriverCore (in SD.LLBLGen.Pro.DBDriverCore.dll) Version: 5.6.0.0 (5.6.19.0117)
Syntax public virtual List<DBSequence> GetAllSystemSequences()
Public Overridable Function GetAllSystemSequences As List(Of DBSequence)
Return Value
Type:
ListDBSequenceList of system sequences for this database. By default it returns an empty list
Remarks Method is expected to produce these sequences without a database connection. DBSequence instances without a schema set (ContainingSchema is
set to null) are considered system sequences.
See Also