[ODBC-14] Application cannot set IPD's SQL_DESC_UNNAMED to SQL_UNNAMED Created: 2014-09-19 Updated: 2014-09-19 Resolved: 2014-09-19 |
|
| Status: | Closed |
| Project: | MariaDB Connector/ODBC |
| Component/s: | None |
| Affects Version/s: | None |
| Fix Version/s: | None |
| Type: | Bug | Priority: | Major |
| Reporter: | Lawrin Novitsky | Assignee: | Lawrin Novitsky |
| Resolution: | Fixed | Votes: | 0 |
| Labels: | None | ||
| Description |
|
According to MSDN application has the right to do it. What is prohibited is to set that field to SQL_NAMED. The problem is more important than seems since that is one of things ADO does when uses parameters |
| Comments |
| Comment by Lawrin Novitsky [ 2014-09-19 ] |
|
The fix and the testcase have been pushed as rev#39. VB testcase would look something like Const adParamInput = &H0001 Const adCmdText = &H0001 Const adVarChar=200 Dim conn, rs, fld, cmd, pr Set conn = CreateObject("ADODB.Connection") conn.Open(DSN) Set cmd = CreateObject("ADODB.Command") Set rs = cmd.Execute() |