Search results for query: *

  • Users: redm
  • Content: Threads
  • Order by date
  1. R

    Update database after copy

    Hi I'm using a OleDb.OleDbConnection() to connect to an access database. The following code *is* working Dim cb As New OleDb.OleDbCommandBuilder(DB.da_B) dsNewRow = DB.ds_B.Tables("B_Data").NewRow() dsNewRow.Item("Name") = DB.ds_A.Tables("A_Data").Rows(0).Item(0) dsNewRow.Item("1") =...
  2. R

    Problem with database contents

    This might belong in the ADO area, depending on where the root cause of my problem is, but I thought I would start here. I have a program, that installs and runs fine (on the machine I have .NET installed). However when I install on a different machine I get the error "Problem with database...
  3. R

    Saving 'Null' Fields

    I am working with an Access database, and when I save a blank or null value to a memo field it gives an error. I had a similar problem with saving to a text field, however I was able to resolve that by changing the 'Allow Zero Length' field in access to 'Yes'. The same does not fix the memo...
  4. R

    Deleting a newly added record

    Ok, I'm trying to learn the whole access database connection in .Net (note I'm running an older version, so I'm unable to open some of the samples I've seen posted). Anyhow, my program works for the most part, I'm able to open, scroll through records, delete, update and even add records...
Back
Top