When I try to use the clause UPPER in a SQL
statement I get the error message : 'Query execution
failed. Variant is not an array.' When I remove the
UPPER clause from the statement it works fine.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2003-07-01
Logged In: YES
user_id=747819
The error occurs when one of the fields which is being
checked is empty. You can work around it by extending the
query to check if the field is empty. EG:
And (Field <> '')
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
I check this error and I verify that it happens when the
table has null values for the field I am using the Upper
statement.
If the table dont have any null field the exception dont
happens.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The code of the query
Logged In: YES
user_id=747819
The error occurs when one of the fields which is being
checked is empty. You can work around it by extending the
query to check if the field is empty. EG:
And (Field <> '')
Logged In: YES
user_id=894801
I check this error and I verify that it happens when the
table has null values for the field I am using the Upper
statement.
If the table dont have any null field the exception dont
happens.