Hello,
I'am testing the txt jdbc driver. I have a Sql chain to run whith a variable :
select ACCOUNT_LOGIN,ROLE_CODE from IMPORT_ETAFI_ROLE_ACCOUNT.csv where ACCOUNT_LOGIN = ?. This query not run. The driver seems to be unable to replace the varialbe. But, when i add a 'and' or 'or' clause after like this :select ACCOUNT_LOGIN,ROLE_CODE from IMPORT_ETAFI_ROLE_ACCOUNT.csv where ACCOUNT_LOGIN = ? and ACCOUNT_LOGIN ='###', the query runs well ! Is this a bug or may be i don't have understand how to use the driver ?
Best regards
|
What's your error message? Whether you are using PreparedStatement to run that sql?
|