Method | Description | |
---|---|---|
getSequenceName ( ) : name | Returns the sequence name, if any | |
resolveSequenceName ( ) : name | Resolve the sequence name, if any | |
sequenceNextVal ( string $name ) : mixed | Get the next value from a sequence | |
setSequenceName ( string $name ) : null | Set the sequence name, if any |
Method | Description | |
---|---|---|
_checkSequence ( ) : null | Create a sequence if not exists | |
_createOracleSequence ( ) : null | Create an Oracle sequence | |
_createPostgresqlSequence ( ) : null | Create a PostgreSQL sequence | |
_oracleSequenceExists ( string $name ) : exists | Check if an Oracle sequence exists | |
_postgresqlSequenceExists ( string $name ) : exists | Check if an PostgreSQL sequence exists | |
_sequenceExists ( ) : exists | Check if a sequence exists |
public static getSequenceName ( ) : name | ||
return | name | of the sequence |
public static resolveSequenceName ( ) : name | ||
return | name | of the sequence |
public static sequenceNextVal ( string $name ) : mixed | ||
$name | string | sequence name |
return | mixed | next value |
public static setSequenceName ( string $name ) : null | ||
$name | string | of the sequence |
return | null |