VB中AdodcGrid.Refresh有问题,提示对象Refresh的方法IAdodc失败,代码如下

2024-12-15 13:34:59
推荐回答(3个)
回答1:

问题可能出在SQL语句上,单独执行看是否取到了数据;注意数据类型,文本要单引号,数字不用单引号的

回答2:

缺少应有的空格:

... s join SC[] " & "on s.sno=SC.sno join Course c on c.cno=SC.cno where[]" & ...
正确的写法必须保证应有的空格:

... s join SC " & "on s.sno=SC.sno join Course c on c.cno=SC.cno where " & ...

回答3:

数据库没连接?