随笔分类 -  orcale学习笔记

orcale学习笔记
摘要:今天在使用select* 查询数据是出现了ORA-00904: "xxxx": 无效的标识符 的错误。最后的解决方案:sql="select * from table where uname="&uname 改成了 sql="select * from table where uname='"&uname&"' "问题解决。 阅读全文
posted @ 2011-02-28 23:59 wuxiaodong 阅读(4559) 评论(0) 推荐(1)