I hope this is not outside the scope of this newsgroup.
have been useing BulkAdd with ms-access with good success.
Until now that I;m switching to MSDE which is on a shared server.
The problem is that MSDE gives an error:
Invalid attribute/option identifier, sql state=HY092
which corresponds to:
SQL_ATTR_CONCUR RENCY statement attribute was set to SQL_CONCUR_READ _ONLY.
but my BulkAdd routine explicitly has a call to:
SQLSetStmtAttr( stHndl, SQL_ATTR_CONCUR RENCY, SQL_CONCUR_LOCK , iRet)
I cannot imagine how the concurrency is readonly.
Could it be that I'm looking at the wrong place or the wrong attribute???
Thanks in adv.
have been useing BulkAdd with ms-access with good success.
Until now that I;m switching to MSDE which is on a shared server.
The problem is that MSDE gives an error:
Invalid attribute/option identifier, sql state=HY092
which corresponds to:
SQL_ATTR_CONCUR RENCY statement attribute was set to SQL_CONCUR_READ _ONLY.
but my BulkAdd routine explicitly has a call to:
SQLSetStmtAttr( stHndl, SQL_ATTR_CONCUR RENCY, SQL_CONCUR_LOCK , iRet)
I cannot imagine how the concurrency is readonly.
Could it be that I'm looking at the wrong place or the wrong attribute???
Thanks in adv.
Comment