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

Search results for query: *

  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...
  16. pengprog

    Can I Use SQL Statements in ASP(VB Script) to query from DBASE 5 Table

    I have figured out my problem! Looks like the problem was with the SQL statment. Looks like it does not like me to use EMPLOYEE.FIELDNAME so by just using the field name it works. sorry have not used dates yet
  17. pengprog

    Can I Use SQL Statements in ASP(VB Script) to query from DBASE 5 Table

    I have figured out my problem! Looks like the problem was with the SQL statment. Looks like it does not like me to use EMPLOYEE.FIELDNAME so by just using the field name it works. sorry have not used dates yet
  18. pengprog

    Can I Use SQL Statements in ASP(VB Script) to query from DBASE 5 Table

    I have figured out my problem! Looks like the problem was with the SQL statment. Looks like it does not like me to use EMPLOYEE.FIELDNAME so by just using the field name it works.
  19. pengprog

    need sql statement to return table/field names

    Here is my full code: Error message below that. 'OPEN Connection---------------------------------- Dim objConn Set objConn = Server.CreateObject("ADODB.Connection") objConn.ConnectionString="Driver={Microsoft dBASE Driver (*.dbf)};" &...
  20. pengprog

    need sql statement to return table/field names

    Just FYI for people, I was doing some more testing and my SQL statement: sql = "SELECT * FROM EMPLOYEE" does work and the sql = "SELECT * FROM EMPLOYEE.dbf" works as well

Part and Inventory Search

Back
Top