ORA-01745: invalid host/bind variable name 报错

这是在网上找的。

偶然一次,用强类型的TableAdapter的update(table)方法时,总是报错(ORA-01745: invalid host/bind variable name )。—— 无效的主机/赋值变量名的错误。

在网上查到的答案大部分是这个:

ORA-01745: invalid host/bind variable name
Cause: A colon in a bind variable or INTO specification was followed by an inappropriate name, perhaps a

reserved word.
Action: Change the variable name and retry the operation.

闹了老半天,也解决不了,最后一步一步的跟踪调试,难道是变量名的问题?

最后突然间想起了,前段时间遇到一个查询不能执行的问题,当时的原因是,我的一个变量叫“RESOURCE”,意思是:资源量。结果这是个oracle的关键字!当时加了个""就把那个问题凑合过去了!

难不成,这次还是它的问题?

在把这个字段更正为“RESOURCES”后,问题解决!

以后千万不能用RESOURCE等关键字作为字段名了……

 

我的问题差不多也是用了Oracle的关键词,是在写SQL语句的是。

你可能感兴趣的:(oracle,sql,table,action,resources)