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 Mike Lewis 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. lodestar

    syntax error

    As your HTML variable is a string you need to enclose it with single quotes: sqlstring = "SELECT * from (table) WHERE (field)='" &(variable) & "'"
  2. lodestar

    Maddening MySql question

    The fields in the MySQL database are set to NOT NULL, which means that you can't insert a '' value into them. Try altering the script to insert a single space as in INSERT INTO table (field1, field2) VALUES (' ', ' ') and see if that works. If it does, then use TRIM() to retrieve the values from...

Part and Inventory Search

Back
Top