Description Usage Arguments Details Value
View source: R/create_date_table.R
'create_date_table' create edge list date table in MySQL
1 2 | create_date_table(conMysql, tableName = "EdgeList_date",
targetName = "Target", dateName = "DatePMID")
|
conMysql |
an RMariaDB connection |
tableName |
string with the name of the table used to store the last update dates for pmids |
targetName |
string with the name of the column used to store the Target PMID of the edge list |
dateName |
string with the name of the column used to store the date of the update |
Default values for this table are: tableName = "EdgeList_date", targetName = "Target", dateName = "DatePMID" MySQL statment: CREATE TABLE Edgelist_date ( Target INT, DatePMID date, INDEX index_target(Target));
create_date_table() always returns a scalar numeric that specifies the number of rows affected by the statement. An error is raised when issuing a statement over a closed or invalid connection, if the syntax of the statement is invalid
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.