fix typo (dbListTable to dbListTables) (#1590)

This commit is contained in:
Matthew Davis 2023-11-09 04:04:32 +01:00 committed by GitHub
parent 063b366fa5
commit 3e9e201b6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ We'll also show off a useful technique for loading multiple files into a databas
### DBI basics
You can check that the data is loaded correctly by using a couple of other DBI functions: `dbListTable()` lists all tables in the database[^databases-3] and `dbReadTable()` retrieves the contents of a table.
You can check that the data is loaded correctly by using a couple of other DBI functions: `dbListTables()` lists all tables in the database[^databases-3] and `dbReadTable()` retrieves the contents of a table.
[^databases-3]: At least, all the tables that you have permission to see.