This example shows how to customize import options when importing data from a database table using the MySQL® native interface. Control the import options by creating an SQLImportOptions
object. Then, customize the import options for multiple database columns. Import data using the sqlread
function.
The example uses the patients.xls
spreadsheet, which contains patient information. Also, the example uses a MySQL database version 5.7.22 with the MySQL Connector/C++ driver version 8.0.15.
Create a MySQL native interface database connection to a MySQL database using the data source name, user name, and password.
datasource = "MySQLDataSource"; username = "root"; password = "matlab"; conn = mysql(datasource,username,password);
Load patient information into the MATLAB® workspace.
patients = readtable("patients.xls");
Create the patients
database table using the patient information.
tablename = "patients";
sqlwrite(conn,tablename,patients)
SQLImportOptions
ObjectCreate an SQLImportOptions
object using the patients
database table and the databaseImportOptions
function.
opts = databaseImportOptions(conn,tablename);
Display the default data types of the variables by accessing the VariableNames
and VariableTypes
properties of the SQLImportOptions
object using dot notation.
disp([opts.VariableNames' opts.VariableTypes'])
{'LastName' } {'string' } {'Gender' } {'string' } {'Age' } {'double' } {'Location' } {'string' } {'Height' } {'double' } {'Weight' } {'double' } {'Smoker' } {'logical'} {'Systolic' } {'double' } {'Diastolic' } {'double' } {'SelfAssessedHealthStatus'} {'string' }
Change the data types of multiple variables. Convert the data type for all text variables to string
. Also, convert the data type for all numeric variables to single
.
textvars = ["LastName" "Gender" "Location" "SelfAssessedHealthStatus"]; opts = setoptions(opts,textvars,'Type',"string"); numvars = ["Age" "Height" "Weight" "Systolic" "Smoker" "Diastolic"]; opts = setoptions(opts,numvars,'Type',"single");
Display the updated data types of the variables.
disp([opts.VariableNames' opts.VariableTypes'])
{'LastName' } {'string'} {'Gender' } {'string'} {'Age' } {'single'} {'Location' } {'string'} {'Height' } {'single'} {'Weight' } {'single'} {'Smoker' } {'single'} {'Systolic' } {'single'} {'Diastolic' } {'single'} {'SelfAssessedHealthStatus'} {'string'}
Set the import options to replace missing data in the specified variables with the fill value unknown
.
varnames = ["LastName" "Location"]; opts = setoptions(opts,varnames,'FillValue',"unknown");
Set the import options to omit rows with missing data in the LastName
variable.
varname = "LastName"; opts = setoptions(opts,varname,'MissingRule',"omitrow");
Before importing the data, preview it by using the customized import options.
T = preview(opts)
T=8×10 table
LastName Gender Age Location Height Weight Smoker Systolic Diastolic SelfAssessedHealthStatus
__________ ________ ___ ___________________________ ______ ______ ______ ________ _________ ________________________
"Smith" "Male" 38 "County General Hospital" 71 176 1 124 93 "Excellent"
"Johnson" "Male" 43 "VA Hospital" 69 163 0 109 77 "Fair"
"Williams" "Female" 38 "St. Mary's Medical Center" 64 131 0 125 83 "Good"
"Jones" "Female" 40 "VA Hospital" 67 133 0 117 75 "Fair"
"Brown" "Female" 49 "County General Hospital" 64 119 0 122 80 "Good"
"Davis" "Female" 46 "St. Mary's Medical Center" 68 142 0 121 70 "Good"
"Miller" "Female" 33 "VA Hospital" 64 142 1 130 88 "Good"
"Wilson" "Male" 40 "VA Hospital" 68 180 0 115 82 "Good"
Import the variables with the customized data types by using the sqlread
function, and display the first eight rows of imported data.
T = sqlread(conn,tablename,opts); head(T)
ans=8×10 table
LastName Gender Age Location Height Weight Smoker Systolic Diastolic SelfAssessedHealthStatus
__________ ________ ___ ___________________________ ______ ______ ______ ________ _________ ________________________
"Smith" "Male" 38 "County General Hospital" 71 176 1 124 93 "Excellent"
"Johnson" "Male" 43 "VA Hospital" 69 163 0 109 77 "Fair"
"Williams" "Female" 38 "St. Mary's Medical Center" 64 131 0 125 83 "Good"
"Jones" "Female" 40 "VA Hospital" 67 133 0 117 75 "Fair"
"Brown" "Female" 49 "County General Hospital" 64 119 0 122 80 "Good"
"Davis" "Female" 46 "St. Mary's Medical Center" 68 142 0 121 70 "Good"
"Miller" "Female" 33 "VA Hospital" 64 142 1 130 88 "Good"
"Wilson" "Male" 40 "VA Hospital" 68 180 0 115 82 "Good"
Delete the patients
database table using the execute
function.
sqlquery = strcat("DROP TABLE ",tablename);
execute(conn,sqlquery)
Close the database connection.
close(conn)
close
| databaseImportOptions
| execute
| mysql
| preview
| setoptions
| sqlread
| sqlwrite