数据库操作的pc文件里犯了个错误:
snprintf(SqlCont,sizeof(SqlCont),"%s",
"select EventClassID,AlarmMode,deleteFlag from Monitor_Event_Alarm"
"where modifytime>=to_date(:v1,'yyyy-mm-dd hh24:mi:ss')");
pc执行这里面的语句的时候就报错:ORA-00933: SQL command not properly ended
是因为snprintf把select那一行和where那一行直接拼在了一起,语句里出现了
“Monitor_Event_Alarmwhere”这样的东西
注意格式!注意空格!
阅读(1125) | 评论(0) | 转发(0) |