dbListSequences {pgUtils}R Documentation

Listing all SEQUENCES in a PostgreSQL database.

Description

dbListSequences gets the names of all sequences in the database.

Usage

dbListSequences(conn, pattern, all)

Arguments

conn A connection object (create it with the dbConnect.PgSQL.conn function from the package RdbiPgSQL)
pattern Search for sequences that contain the pattern submitted in their name
all If TRUE also system sequences will be listed. The default is FALSE.

Details

Returns the names of all sequences in the database to wich the user has connected.

Author(s)

Johannes Rainer

References

See Also

createSequence


[Package pgUtils version 1.10.0 Index]