Smart questions
Smart answers
Smart people
INTELLIGENT WORK FORUMS
FOR COMPUTER PROFESSIONALS

Member Login

Come Join Us!

Are you a
Computer / IT professional?
Join Tek-Tips now!
  • Talk With Other Members
  • Be Notified Of Responses
    To Your Posts
  • Keyword Search
  • One-Click Access To Your
    Favorite Forums
  • Automated Signatures
    On Your Posts
  • Best Of All, It's Free!

Join Tek-Tips
*Tek-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail.

LINK TO THIS FORUM!

Add Stickiness To Your Site By Linking To This Professionally Managed Technical Forum.
Just copy and paste the
code below into your site.

Partner With Us!

"Best Of Breed" Forums Add Stickiness To Your Site
Partner Button
(Download This Button Today!)

Feedback

"...I always seem to find what I need in previous threads without starting my own. I have started a couple but that's it..."

Geography

Where in the world do Tek-Tips members come from?
smuckers (Programmer)
24 Jun 03 18:30
Good afternoon!

I am unable to edit an ADO recordset for a Form using Stored procedures.  It works when the form has the property "Recordsource" set directly to a single table but not when it is dynamically changed using the code below.  

I created a small table of 3 records with 3 fields in SQL Server 2000 to test.  It has a primary field too.  The form is named "frmTest" and displays in "datasheet" view.  

The records are not editable when the rs is assigned to the recordset property.

THANK YOU in advance for your help!

' **** This section is to check for open connections ***
        If cnn.State = adStateOpen Then
            CurrentProject.CloseConnection
        Else
            cnn.ConnectionString =       CurrentProject.BaseConnectionString   
            cnn.Open
            cnn.CursorLocation = adUseClient
        End If
' ***  Now, to create the instance of the cmd object ***
        Set Cmd = New ADODB.Command
        Set Cmd.ActiveConnection = cnn

        With Cmd
            .CommandText = "MyStoredProcedure"
            .CommandType = adCmdStoredProc
        End With

' *** I believe the parameters below are correct ***
' *** I also tried adLockOptimistic ***

        Set rs = New ADODB.Recordset
        rs.Open Cmd, , adOpenKeyset, adLockBatchOptimistic

        Set Forms!frmTest.Recordset = rs

        Set cmd = Nothing







markphsd (Programmer)
3 Jul 03 15:47
Hey,

This is a adp thing when you use a sp, even though it's only one table you have to set the uniquetable property.

So try this

 Set Forms!frmTest.Recordset = rs
 Forms!frmtest.uniqueTable = "tablename"

Mark P.

Bleh

Reply To This Thread

Posting in the Tek-Tips forums is a member-only feature.

Click Here to join Tek-Tips and talk with other members!

Close Box

Join Tek-Tips® Today!

Join your peers on the Internet's largest technical computer professional community.
It's easy to join and it's free.

Here's Why Members Love Tek-Tips Forums:

Register now while it's still free!

Already a member? Close this window and log in.

Join Us             Close