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.8.0.0 (5.8.21.0208)
Syntaxpublic 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
RemarksMethod 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