View source: R/labkey.importRows.R
labkey.importRows | R Documentation |
Bulk import rows of data into the database.
labkey.importRows(baseUrl, folderPath,
schemaName, queryName, toImport, na)
baseUrl |
a string specifying the |
folderPath |
a string specifying the |
schemaName |
a string specifying the |
queryName |
a string specifying the |
toImport |
a data frame containing rows of data to be imported |
na |
(optional) the value to convert NA's to, defaults to NULL |
Multiple rows of data can be imported in bulk. The toImport
data frame must contain
values for each column in the dataset and must be created with the stringsAsFactors
option
set to FALSE. The names of the data in the data frame must be the column names from the
LabKey Server. To import a value of NULL, use an empty string ("") in the data frame
(regardless of the database column type). Also, when importing data into a study dataset, the
sequence number must be specified.
A list is returned with named categories of command, rowsAffected, queryName, containerPath and schemaName. The schemaName, queryName and containerPath properties contain the same schema, query and folder path used in the request. The rowsAffected property indicates the number of rows affected by the API action. This will typically be the same number as passed in the request.
Cory Nathe
labkey.selectRows
, labkey.executeSql
, makeFilter
,
labkey.insertRows
, labkey.updateRows
, labkey.deleteRows
,
labkey.query.import
## Not run:
## Note that users must have the necessary permissions in the database
## to be able to modify data through the use of these functions
# library(Rlabkey)
newrows <- data.frame(
DisplayFld="Imported from R"
, RequiredText="abc"
, RequiredInt=1
, stringsAsFactors=FALSE)
newrows = newrows[rep(1:nrow(newrows),each=5),]
importedInfo <- labkey.importRows("http://localhost:8080/labkey",
folderPath="/apisamples", schemaName="lists", queryName="AllTypes",
toImport=newrows)
importedInfo$rowsAffected
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.