DOCUMENT:Q177186 24-NOV-1997 [vbwin] TITLE :PRB: Error 40069 Update Resultset Returned from Stored Procedure PRODUCT :Microsoft Visual Basic for Windows PROD/VER:WINDOWS:5.0 OPER/SYS:WINDOWS KEYWORDS:vb5all kberrmsg ====================================================================== --------------------------------------------------------------------- The information in this article applies to: - Microsoft Visual Basic Enterprise Edition for Windows, version 5.0 --------------------------------------------------------------------- SYMPTOMS ======== When you are updating a recordset returned from a stored procedure using ClientBatch cursor driver, and you do not specify the source table and the key column, the following errors occur: Run-time error '40069': Client Cursor: 39 - One of the modified columns has no source table defined CAUSE ===== When you perform a SELECT query or a join to build the resultset using a stored procedure, the source table and key column information is not filled in. This occurs because the ODBC layers cannot parse the SQL query to point back to the table and key column from where the chosen column draws its data. RESOLUTION ========== You have to provide SourceTable and KeyColumn properties in code in order to update resultsets returned from the stored procedure using ClientBatch cursor driver. STATUS ====== This behavior is by design. MORE INFORMATION ================ In addition to steps to reproduce the errors, the following sample code demonstrates how to update resultsets returned from a stored procedure successfully using Client Batch cursor driver. The stored procedure, GetInfo, is created in SQL Server Pubs database, which retrieves information from the Authors table. Command1 updates the resultset returned from the stored procedure without the SourceTable and KeyColumn information; therefore, errors occur. Command2 demonstrates how a successful update is done by providing the source table and key column information. Step 1: Create the Stored Procedure ----------------------------------- 1. Open the SQL Server 6.5 ISQL utility and change the default database to Pubs. 2. Paste the following code in the Query window: CREATE PROCEDURE GetInfo AS Select au_id, au_lname From Authors 3. Click Execute Query or press the CTRL+E keys to execute the Transact-SQL code. 4. The following confirmation message appears: "This command did not return data, and it did not return any rows" This indicates that the Transact-SQL code created the stored procedure correctly. Step 2: Create the Visual Basic Code ------------------------------------ 1. Start a new project in Visual Basic and choose "Standard EXE." Form1 is created by default. 2. From the Project menu, select References, and then place a check next to Microsoft Remote Data Object 2.0. 3. Add 2 CommandButtons, Command1, and Command2, to Form1. 4. Paste the following code in the General Declarations section of Form1: Dim cn As New rdoConnection Private Sub Command1_Click() Dim qy As New rdoQuery Dim rs As rdoResultset With qy Set .ActiveConnection = cn .SQL = "{Call GetInfo}" End With Set rs = qy.OpenResultset(rdOpenKeyset, rdConcurRowVer) rs.Edit rs!au_lname = "Weeks" rs.Update Debug.Print rs!au_lname rs.Close qy.Close End Sub Private Sub Command2_Click() Dim qy As New rdoQuery Dim rs As rdoResultset With qy Set .ActiveConnection = cn .SQL = "{Call GetInfo}" End With Set rs = qy.OpenResultset(rdOpenKeyset, rdConcurRowVer) rs("au_id").SourceTable = "Authors" rs("au_lname").SourceTable = "Authors" rs("au_id").KeyColumn = True rs.Edit rs!au_lname = "Weeks" rs.Update Debug.Print rs!au_lname rs.Close qy.Close End Sub Private Sub Form_Load() Dim strConnect As String Dim strSQL As String strConnect = "Driver={SQL Server}; _ Server=MyServer;Database=Pubs;Uid=sa;Pwd=" With cn .CursorDriver = rdUseClientBatch .Connect = strConnect .EstablishConnection rdDriverNoPrompt End With End Sub Private Sub Form_Unload(Cancel As Integer) cn.Close End Sub 5. Note that you should change your Server, Uid, and Pwd parameters in the RDO connection string. 6. Start the program or press the F5 key. REFERENCES ========== "Hitchhiker's Guide to Visual Basic and SQL Server," Microsoft Press. ISBN: 1-57231-567-9 ====================================================================== Keywords : vb5all kberrmsg Version : WINDOWS:5.0 Platform : WINDOWS 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 1997.