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 Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by pengprog

  1. pengprog

    Using Joins when querying from DBASe table using ODBC driver

    Can I use Join statments when I do SQL queries on DBASE tables? I am programming in ASP to do reports on some old DBASE 5 tables I have. If it does work, can someone give me a sample query string I can take a look at? Thanks in advance.
  2. pengprog

    Update Recordset Errors

    Bemima is the name of Dbase table. When I connected to my databse I created a connection object that points to the directory where my tables are located, that name being "objConn". So in regards to your idea with taking the "." off, it seems to still react erroneously in...
  3. pengprog

    Writing/Updating Errors with dbf tables in Win NT IIS

    I got rid of my previoud error and my new error is Microsoft Cursor Engine error '80004005' Insufficient base table information for updating or refreshing. I then downloaded MDAC 2.7 and it did not help. I am hosting my ASP, VBScript Files on an NT Server and querying Dbase 5 tables. Dim...
  4. pengprog

    Update Recordset Errors

    Here is a bit of the code. It works fine when running in WinXP... Set RS = Server.CreateObject("ADODB.Recordset") sql = "SELECT * FROM BEMIMA.DBF WHERE UNAME = '" & Session("USERNAME") & "' AND PW = '" & Session("PASSWORD") & "'&quot...
  5. pengprog

    Update Recordset Errors

    Here is a bit of the code. It works fine when running in WinXP... Set RS = Server.CreateObject("ADODB.Recordset") sql = "SELECT * FROM BEMIMA.DBF WHERE UNAME = '" & Session("USERNAME") & "' AND PW = '" & Session("PASSWORD") & "'&quot...
  6. pengprog

    Update Recordset Errors

    After some problems here and there, I feel as if I have reached a wall with this error I have been getting when trying to do a RecordSet.Update Microsoft Cursor Engine error '80004005' Insufficient base table information for updating or refreshing. The error is in the line that I call my...
  7. pengprog

    Update Recordset Errors

    After some problems here and there, I feel as if I have reached a wall with this error I have been getting when trying to do a RecordSet.Update Microsoft Cursor Engine error '80004005' Insufficient base table information for updating or refreshing. The error is in the line that I call my...
  8. pengprog

    Writing/Updating Errors with dbf tables in Win NT IIS

    sql = "SELECT * FROM BEMIMA WHERE UNAME = '" & Session("USERNAME") & "' AND MIMA = '" & Session("PASSWORD") & "'"
  9. pengprog

    Writing/Updating Errors with dbf tables in Win NT IIS

    yeah I do. I can't seem to figure out why everything is working on my Win XP version of IIS and not working on Win NT IIS
  10. pengprog

    Updating Records in dbf table using ASP/VB script in WinNT

    Hmm I might have forgotten to close a lock table but how do I make sure it is closed? I have put in the code to close the record set but I still get the same error. How do I know it is definitely closed? And also what is the native dBase driver for NT? This is what I use to open the...
  11. pengprog

    Writing/Updating Errors with dbf tables in Win NT IIS

    Hello, I am trying to make an ASP application and need to be able to not only read, but also Write/Update to my Dbase tables. They are Dbase 5 and I am using VB Script. I use to test my application on Win XP and everything went fine with reading and writing, now I changed everything to...
  12. pengprog

    Updating Records in dbf table using ASP/VB script in WinNT

    Hello, I am trying to make an ASP application and need to be able to not only read, but also Write/Update to my Dbase tables. They are Dbase 5 and I am using VB Script. I use to test my application on Win XP and everything went fine with reading and writing, now I changed everything to...
  13. pengprog

    How to hide data being submitted in the URL box

    Thanks for all the help, my problem has been SOLVED!!!
  14. pengprog

    How to hide data being submitted in the URL box

    I tried using post instead, but then I cant retrieve the query string being sent by the form. My asp file handles the two form data being passed. user_name = Request.QueryString("username") pass_word = Request.QueryString("password") Any other ideas? Or am I doing...
  15. pengprog

    How to hide data being submitted in the URL box

    Dear readers, I am writing a small application when users login with username and password via a simple form. The only problem is that when people submit the form i can see in the URL address box their password. It looks like this...

Part and Inventory Search

Back
Top