Load collection from 'Birdscan MR1' 'SQL' database.
Arguments
- dbConnection
 A valid database connection.
- dbDriverChar
 This was the name of the driver, and is now automatically detected, therefore it should be omitted into the future.
- timeInterval
 Null An optional vector of timestamps (either as
DateorPOSIXct) to limit the data retrieved from the collections table. The filtering is done based on the original radar timezone.
See also
Other read SQL database functions:
QUERY(),
dbConnectBirdscanSQL(),
extractDbData(),
getBatClassification(),
getEchoFeatures(),
getEchoValidationTable(),
getProtocolTable(),
getRadarTable(),
getRfClassification(),
getSiteTable(),
getTimeBinsTable(),
getVisibilityTable()
Examples
if (FALSE) { # \dontrun{
# Set server and database settings
# ==========================================================================
  # Using and Microsoft SQL database
  # ========================================================================
    dbServer     = "MACHINE\\SERVERNAME" # Set the name of your SQL server
    dbName       = "db_Name"             # Set the name of your database
    dbDriverChar = "SQL Server"          # Set to "SQL Server"
  # Using a PostgreSQL
  # ========================================================================
    dbServer     = "cloud.birdradar.com" # Set the name or IP of your postgreSQL
    dbName       = "db_Name"             # Set the name of your database
    dbDriverChar = "PostgreSQL"          # Set to "PostgreSQL"
# Open the connection with the database
# ==========================================================================
  dbConnection = dbConnectBirdscanSQL(
                   dbDriverChar = dbDriverChar,
                   dbServer     = dbServer,
                   dbName       = dbName,
  )
collectionTable = getCollectionTable(dbConnection)
} # }