DOCUMENT:Q278408 11-JAN-2001 [vbwin]
TITLE :PRB: DataGrid Cannot Be Bound to a Non-Bookmarkable Recordset
PRODUCT :Microsoft Visual Basic for Windows
PROD/VER::2.0,2.1,2.1 SP1,2.1 SP2,2.5,2.6,6.0
OPER/SYS:
KEYWORDS:kbADO kbVBp600 kbDSupport
======================================================================
-------------------------------------------------------------------------------
The information in this article applies to:
- Microsoft Visual Basic Professional Edition for Windows, version 6.0
- Microsoft Visual Basic Enterprise Edition for Windows, version 6.0
- ActiveX Data Objects (ADO), versions 2.0, 2.1, 2.1 SP1, 2.1 SP2, 2.5, 2.6
-------------------------------------------------------------------------------
SYMPTOMS
========
When you attempt to bind an OLEDB DataGrid control to a forward-only or dynamic
ActiveX Data Objects (ADO) recordset, you may receive the following run-time
error message:
Run-time error '7004': The Rowset is not bookmarkable
CAUSE
=====
You cannot bind the DataGrid control to recordsets that do not support
bookmarks. The forward-only and dynamic ADO recordsets do not support bookmarks,
and therefore cannot be specified as the DataSource for an OLEDB DataGrid
control.
RESOLUTION
==========
Bind the DataGrid to a bookmarkable recordset such as the keyset and static ADO
recordsets.
MORE INFORMATION
================
Steps to Reproduce Behavior
---------------------------
1. In Visual Basic version 6.0, create a new Data project.
2. In the frmDataEnv form, add a DataGrid and a CommandButton control.
3. In the frmDataEnv form module, paste the following code:
NOTE: Supply the required connection parameters to the cn.Open statement to
connect to the SQL Server, and specify a valid table name in the rs.Open
statement.
'General Declarations Section
Dim cn As ADODB.Connection
Dim rs As ADODB.Recordset
Private Sub Command1_Click()
Set cn = New ADODB.Connection
Set rs = New ADODB.Recordset
cn.Open "Provider=SQLOLEDB;Data Source=<SQL Server>;Initial Catalog=<SQL Database>;User Id=<SQL UserId>;Password=<SQL Password>"
rs.Open "Select * from <TableName>", cn, adOpenDynamic, adLockOptimistic
Set DataGrid1.DataSource = rs
End Sub
4. Save and then run the project.
5. When frmDataEnv is displayed, click the command button.
You receive the error specified in the "Symptoms" section of this article.
6. Modify the rs.Open statement in the Command1_Click() event procedure to open
a keyset or a static ADO recordset. To do this, replace the constant
adOpenDynamic with adOpenKeyset or adOpenStatic.
7. Save and then run the project.
8. On frmDataEnv, click the command button.
The records in the specified table in the OLEDB DataGrid control are displayed.
Additional query words: 7004
======================================================================
Keywords : kbADO kbVBp600 kbDSupport
Technology : kbVBSearch kbAudDeveloper kbADOsearch kbADO210 kbADO200 kbADO210sp1 kbADO210sp2 kbADO250 kbADO260 kbZNotKeyword6 kbZNotKeyword2 kbVB600Search kbVBA600 kbVB600
Version : :2.0,2.1,2.1 SP1,2.1 SP2,2.5,2.6,6.0
Issue type : kbprb
=============================================================================
THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS
PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS
ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO
EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR
ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL,
CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF
MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE
POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION
OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES
SO THE FOREGOING LIMITATION MAY NOT APPLY.
Copyright Microsoft Corporation 2001.