radubalmus
Programmer
i am building a query depending if some cells(my interface is excel) have text or not..
it is working, but when i am trying to read from a certain field it gives me an error "80040e14"
ex: So the following works:
or
but when this query is build i have the error:
is Sql(database or language) sezitive to some words??? or what could be the problem
There are simple solutions for almost every problem! The hard part is to see them!!!!
it is working, but when i am trying to read from a certain field it gives me an error "80040e14"
ex: So the following works:
Code:
SELECT testorder,shortyear,orderdate,requester,tel,weno,partno,partname,samples,costcat,status,product_rating FROM test_orders WHERE orderdate>=(1/1/2007) AND (costcat='2.4 CoP')
Code:
SELECT testorder,shortyear,orderdate,requester,tel,weno,partno,partname,samples,costcat,status,product_rating FROM test_orders WHERE orderdate>=(1/1/2007) AND (testtype='ES Tests')
but when this query is build i have the error:
Code:
SELECT testorder,shortyear,orderdate,requester,tel,weno,partno,partname,samples,costcat,status,product_rating FROM test_orders WHERE orderdate>=(1/1/2007) AND (status='Open')
is Sql(database or language) sezitive to some words??? or what could be the problem
There are simple solutions for almost every problem! The hard part is to see them!!!!