Article ID: 111723
Article Last Modified on 7/27/2001
//create a table with 127 columns
CREATE TABLE lot_of_columns (col1 INT, col2 INT, ..., col127 INT)
//Prepare an update statement with 254 parameter markers
SQLPrepare: UPDATE lot_of_columns SET col1 = ?,..., col127 = ?
WHERE col1 = ?,..., col127 = ?
SQLSetParam for each one of these parameters. The 252nd SQLSetParam
returns SQL_ERROR:
For users of Microsoft Access version 1.1, do the following:
Additional query words: SQLSetParam S1093
Keywords: kbbug KB111723