Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Records not updating, datareader not showing new records

Status
Not open for further replies.

JunglesMcBeef

Programmer
Sep 18, 2003
266
0
0
Hi,

I'm having trouble retrieving an ID field from records I insert into an Access database. The record inserts fine, but then when I read the database again, even if i create new oledb connection and command objects, it doesn't add the new record to the reader, but when i open the database, the record is there saved. Why is this happening?

Code:
    cn = New OleDbConnection(DBCONN)
    cn.Open()

    str = "INSERT INTO [CatchShot] ([Vessel], [Date],     [LogBookSheetNo], [ShotNo], [Latitude], " & _
                  "[Longitude], [WaterTemp], [SubSample], [Volume], [Comments]) VALUES ('" & cboVessel.Text & _
                  "',#" & CDate(txtDate.Text) & "#," & CInt(txtLogBookSheetNo.Text) & "," & _
                  CInt(txtShotNo.Text) & "," & CSng(txtLatDeg.Text) & "," & CSng(txtLongDeg.Text) & _
                  "," & CSng(txtWaterTemp.Text) & "," & chkSubSample.Checked & "," & CSng(txtVolume.Text) & _
                  ",'" & txtComments.Text & "')"
    cmd = New OleDbCommand(str, cn)
    cmd.ExecuteNonQuery()

    cmd = New OleDbCommand("SELECT * FROM CatchShot", cn)
    dr = cmd.ExecuteReader
    While dr.Read
        iCatchID = dr.Item("ID")
    End While
 
i think
its because you are accessing the wrong data
dr.read - reads the topmost row
the row you've just saved
might be located down below.
you can include where in your command sql
 
I worked out that i needed to sort by ID (ORDER BY) in the readers SQL statement. The reader will cycle through all the records and the last ID will be saved to my variable. Thanks for replying though maytel
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top