|
BeTheBall -> RE: keyword search (4/6/2005 22:18:40)
|
Although not intentional, there is a lot of learning that can be gleaned from this thread. For example, if you get this: Expected ')' It is exactly what it says. There is a missing parenthesis somewhere and the error will usually tell you the line. Microsoft VBScript compilation error '800a03f6' Expected 'End' That one is a missing End If. Something I am famous for. SELECT * FROM Results WHERE ([position] LIKE '%%%')Database Results Error: mismatched parameter delimiters That one has to do with the SQL receiving %%%. It doesn't expect to get % in threes. I think it would have handled '%' or '%%', but not '%%%'.
|
|
|
|