Description Usage Arguments Examples
View source: R/create-ip-tbl.R
The column named in ip_col *must exist* in the data frame or CSV file. All_names must be valid PostgreSQL syntax for said names. Setting drop=TRUE' is destructive.
1 | create_ip_source_table(pgcon, tbl_name, drop = FALSE, xdf, ip_col = "ip")
|
pgcon |
a PostgreSQL DBI connection |
tbl_name |
name of the IP table (valid PG table name syntax) |
drop |
drop existing IP table if it has the same name? Defaults to |
xdf |
Data frame to use to populate the table or a path to a CSV file.
If a path it will be |
ip_col |
Name of the column that holds the IP addresses |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | ## Not run:
DBI::dbConnect(
odbc::odbc(),
driver = "/usr/local/lib/psqlodbca.so",
Database = "working",
Host = "localhost"
) -> con
create_cidr_lookup_table(
pgcon = con,
tbl_name = "amazon_cidrs",
drop = TRUE,
xdf = system.file("extdat", "amzn-cidrs.csv", package = "pgcidr"),
)
create_ip_source_table(
pgcon = con,
tbl_name = "weblog",
drop = TRUE,
xdf = system.file("extdat", "weblog.csv", package = "pgcidr")
)
find_ips_in_cidrs(
con, "weblog", "amazon_cidrs"
)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.