Results 1 to 2 of 2

Thread: Access Craters!?!?!?

  1. #1

    Thread Starter
    Fanatic Member Avatarp's Avatar
    Join Date
    Sep 2002
    Location
    Calgary
    Posts
    826

    Access Craters!?!?!?

    I have linked tables in a database on my hard drive. I have this database on the network as well. When copying the database up to the network it craters if there is a bad data type or any error message in my linked tables. Am I screwed working with Access with a network? What should I do here

  2. #2
    Evil Genius alex_read's Avatar
    Join Date
    May 2000
    Location
    Espoo, Finland
    Posts
    5,538
    It really depends on how many users and records you're working with in Access, technically, yes it can support working across a network.

    Normally it's better practice to use a larger database system which was built for this such as SQL Server if you can get hold of this.

    As far as your question on the data type errors etc, normally you would check / validate any entered information in your code before passing this to the database...
    VB Code:
    1. If len(txtUserPassword.text) < 20 then
    2.     strSQL = "SELECT * FROM Orders WHERE " & _
    3.     "CustomerID = '" & cstr(txtUserPassword.text) & "'"
    4. End If

    Please rate this post if it was useful for you!
    Please try to search before creating a new post,
    Please format code using [ code ][ /code ], and
    Post sample code, error details & problem details

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width