本帖最后由 single_dream 于 2010-12-09 00:55:21 编辑

解决方案 »

  1.   

    怎么没人回复呢,我那个数据库是sqlserver的,如果是access也没问题。
      

  2.   

    .Open ("select * from test where id=3")
    if not .eof then
      .Fields("contentexcel") = iStm.Read
      .Update
    end if
      

  3.   


    With rsimage
      .Open ("select * from test where id=3")
      .Fields("contentexcel") = iStm.Read
      .Update
      End With
    没看见指定的哪个连接读数据库么,还有,读取属性设一下        .ActiveConnection =cnn
            .CursorLocation = adUseClient
            .CursorType = adOpenStatic
            .LockType = adLockOptimistic
      

  4.   

    这里的忘记写了,呵呵,实际程序是有的,关键是看哪个问题,我更新不了image字段,这个表里有2个image字段。只要一更新字段,程序就像死了一样,不动了。