pstmt = bindParamValues(pstmt,selection,values)
binds parameters specified in the selection argument to the values
specified in the values argument for an SQLPreparedStatement object.
Create an SQL prepared statement to import data from a Microsoft® SQL Server® database using a JDBC database connection. Use the SELECT SQL statement for the SQL query. Import the data from the database and display the results.
Create a JDBC database connection to an SQL Server database with Windows® authentication. Specify a blank user name and password.
Create an SQL prepared statement for importing data from the SQL Server database using the JDBC database connection. The question marks in the SELECT SQL statement indicate it is an SQL prepared statement. This statement selects all data from the database table inventoryTable for the inventory that has an inventory date within a specified date range.
query = strcat("SELECT * FROM inventoryTable ", ..."WHERE inventoryDate > ? AND inventoryDate < ?");
pstmt = databasePreparedStatement(conn,query)
pstmt =
SQLPreparedStatement with properties:
SQLQuery: "SELECT * FROM inventoryTable where inventoryDate > ? AND inventoryDate < ?"
ParameterCount: 2
ParameterTypes: ["string" "string"]
ParameterValues: {[] []}
pstmt is an SQLPreparedStatement object with these properties:
SQLQuery — SQL prepared statement query
ParameterCount — Parameter count
ParameterTypes — Parameter types
ParameterValues — Parameter values
Bind parameter values in the SQL prepared statement. Select both parameters in the SQL prepared statement using their numeric indices. Specify the values to bind as the inventory date range between January 1, 2014 and December 31, 2014. Match the format of dates in the database. The bindParamValues function updates the values in the ParameterValues property of the pstmt object.
pstmt =
SQLPreparedStatement with properties:
SQLQuery: "SELECT * FROM inventoryTable where inventoryDate > ? AND inventoryDate < ?"
ParameterCount: 2
ParameterTypes: ["string" "string"]
ParameterValues: {["2014-01-01 00:00:00.000"] ["2014-12-31 00:00:00.000"]}
Import data from the database using the fetch function and bound parameter values. The results contain four rows of data that represent all inventory with an inventory date between January 1, 2014 and December 31, 2014.
Parameter values to bind for the selected parameters, specified as a numeric scalar,
string scalar, character vector, datetime array,
logical, or cell array. The function treats missing values as
NaN or missing. Use a cell array to specify
multiple values.
You can also select a web site from the following list:
How to Get Best Site Performance
Select the China site (in Chinese or English) for best site performance. Other MathWorks country sites are not optimized for visits from your location.