当前位置:编程学习 > VB >>

VSFlexGrid保存到数据库问题

rs.open"select * from 工资表",Cnn, adOpenKeyset, adLockOptimistic
  with vsflexgird1
    for i = 1 to .rows-1
      for j = 0 to .cols-1
          rs.fields(.TextMatrix(i,j))=.TextMatrix(i,j)
      next j
    next i
  end with
rs.updata
rs.close
为什么不能保存到数据库呢 ,sql server 2000 数据库
  --------------------编程问答-------------------- adOpenKeyset?
updata(update)? --------------------编程问答-------------------- 程序里是update 我写错了
adOpenKeyset 这个有什么不妥吗? --------------------编程问答-------------------- 上面我写的代码错了
rs.fields(.TextMatrix(i,j))=.TextMatrix(i,j) 
应该把i 改成 0 
rs.fields(.TextMatrix(0,j))=.TextMatrix(i,j) 
问题依旧
补充:VB ,  基础类
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,