2014-01-24 52 views
0
protected String getSQLCarFinder() 
{ 
    StringBuffer sb = new StringBuffer(); 
    sb.append("select distinct T1.ASSET_AMT c1, T1.NAME c2, T1.ALIAS_NAME c3 "); 
    sb.append("from {0}.CARFINDERDB T1 "); 
    sb.append("where T1.ASSET_AMT=? "); 
    sb.append(" and T1.OU_TYPE_CD <> ''NOC'' "); 
    sb.append(" and " + IRDataSource.getLengthFunctionName() + "(T1.ASSET_AMT) <= " + CARFINDER_CODE_MAX_LENGTH); 
    return sb.toString(); 
    } 

错误:SQL - Java的:无效的列名:无效的列名

[2014-01-24 10:42:20,238] Thread-66 ERROR util.XNAMEDbLogProcessor - XNAMEDbLogProcessor :: logItem : ExceptionAn unexpected token "NOC" was found following "nvalid column name '". Expected tokens may include: ",".. SQLCODE=-104, SQLSTATE=42601, DRIVER=4.7.112 
[2014-01-24 10:42:20,238] Thread-66 ERROR util.XNAMEDbLogProcessor - XNAMEDbLogProcessor :: logItem : An error occurred while logging data to the database: An unexpected token "NOC" was found following "nvalid column name '". Expected tokens may include: ",".. SQLCODE=-104, SQLSTATE=42601, DRIVER=4.7.112: Data={[2014-01-24-10.42.17.318000] [server_common_name] [common_name] [] [99999] [0] [] [] [] [E] [INTRANET] [2014-01-24] [10:42:20] [CDLT] [Account : com.microsoft.sqlserver.jdbc.SQLServerException: Invalid column name 'NOC'.] } 
[2014-01-24 10:42:22,458] RMI TCP Connection(98501)-172.28.24.27 DEBUG dataaccess.NewCarViewDataSource - NewCarViewDataSource:: connect : IR connect siebel without user and password 
[2014-01-24 10:42:22,477] RMI TCP Connection(98501)-172.28.24.27 DEBUG dataaccess.IRDataSource - IRDataSource:: getLengthFunctionName : Lenght function name:LEN 
[2014-01-24 10:42:22,478] RMI TCP Connection(98501)-172.28.24.27 ERROR server.AssociateCodeListRetrieveCommand - AssociateCodeListRetrieveCommand ::executeINTRANETCall : Exception Invalid column name 'NOC'. 
[2014-01-24 10:42:22,481] RMI TCP Connection(98501)-172.28.24.27 DEBUG server.REPDatabaseCommand - REPDatabaseCommand :: executeCall : Time to execute CDLT transaction = 23 
[2014-01-24 10:42:23,144] Thread-65 DEBUG util.XNAMEAlertLogProcessor - XNAMEAlertLogProcessor :: logItem : Error alert log processor: ALERT-001 -s "Error occurred in AssociateCodeListInfo" Date:  Time: Server name: server_common_name Client name: common_name 


User id: **strong text** 

我试图

sb.append(" and T1.OU_TYPE_CD <> /'NOC/' "); 
sb.append(" and T1.OU_TYPE_CD <> ''NOC'' "); 
sb.append(" and T1.OU_TYPE_CD <> 'NOC' "); 

没有工作。我在这里做错了什么? T1.OU_TYPE_CD是列名,NOC是其中的值。我想检查T1.OU_TYPE_CD的值是NOT NOC

+1

你能打印出字符串吗? –

+0

你确定问题出在那里吗?那之后呢? –

回答

0

你不需要双单引号括起来NOC

sb.append(" and T1.OU_TYPE_CD <> 'NOC' "); 

您的外字符串分隔符是一个双引号,所以没有必要逃避单引号。

+0

试过,不工作! – user3232895

+0

@ user3232895。 。 。它不应该是同一个错误,因为在这个查询中'NOC'不能是列名。 –

+0

@ Lionoff ......不幸的是同样的错误。无效的列名称NOC! – user3232895

0

列名不需要''

sb.append(" and T1.OU_TYPE_CD <> NOC "); 

编辑:

编译器被解释为NOC列名。如果NOCstring值,我认为您的问题将是一个转义问题。

尝试:

sb.append(" and T1.OU_TYPE_CD <> \'NOC\' ");

或本:

sb.append(" and T1.OU_TYPE_CD NOT IN ('NOC') ");

或直接设置一个aux字符串:

String aux = " and T1.OU_TYPE_CD <> 'NOC' "; 
sb.append(aux); 
+0

它不是列名,NOC是T1.OU_TYPE_CD列中的数据 – user3232895

0

这应该有工作。 ''和'。''''''');;

您确定您收到相同的错误讯息吗?