
Last chance! 50% off unlimited learning
Sale ends in
This function returns the projectName specified in the calling sequence, the unique alphanumeric identifier projectId for the new project, the name of the modeling dataset uploaded to create this project, and the project creation time and date.
SetupProjectFromMySQL(server, database, table, user, port = NULL,
prefetch = NULL, projectName = NULL, password = NULL,
encryptedPassword = NULL, maxWait = 60 * 60)
character. The address of the MySQL server
character. The name of the database to use
character. The name of the table to fetch
character. The username to use to access the database
integer. Optional. The port to reach the MySQL server. If not specified, will use the default specified by DataRobot (3306).
integer. Optional. If specified, specifies the number of rows to stream at a time from the database. If not specified, fetches all results at once. This is an optimization for reading from the database
character. Optional. String specifying a project name.
character. Optional. The plaintext password to be used to access MySQL
database. Will be first encrypted with DataRobot. Only use this or
encryptedPassword
, not both.
character. Optional. The encrypted password to be used to access
MySQL database. Only use this or password
, not both.
integer. The maximum time to wait for each of two steps: (1) The initial project creation request, and (2) data processing that occurs after receiving the response to this initial request.
This function returns a list with the following four components:
The name assigned to the DataRobot project
The unique alphanumeric project identifier for this DataRobot project
The name of the CSV modeling file uploaded for this project
String containing the time and date of project creation
# NOT RUN {
SetupProjectFromMySQL(server = 'myServer',
database = 'myDatabase',
table = 'myTable',
user = 'sqlUser',
port = '12345')
# }
Run the code above in your browser using DataLab