是什么错误的?急急急急急急急急急(0分)

  • 主题发起人 主题发起人 dabing
  • 开始时间 开始时间
D

dabing

Unregistered / Unconfirmed
GUEST, unregistred user!
xd:tdatetime;
yd:tdatetime;


q_sql:='select a.ip ,b.intime from b,a where a.ip=sb and b.intime>=xd and b.intime<=yd ';

query2.parambyname('xd').asdatetime:= datetime1;
query2.parambyname('yd').asdatetime:=datetime2;

老是有错误:query2:parameter 'xd'not found'
是什么错误的?急急急急急急急急急
 
q_sql:='select a.ip ,b.intime from b,a where a.ip=sb and b.intime>=:xd and b.intime<=:yd ';
 
xd,yd前加':'
 
我改过来了,但是又来了个错误?是不是oracle的表的字段建立有问题?
project project2.exe raised exception class edbengineerror with message 'invalid field name'
ora-00904:无效列名',
 
sb不存在,请赋值
 
sb 已经在前面附过值了
~~
 
q_sql:='select a.ip ,b.intime from b,a where a.ip='''+sb +''' and b.intime>=:xd and b.intime<=:yd ';
这么基础都不懂?
 
后退
顶部