Access数据库中无效的字符字段的行为

  • 来源: 互联网 作者: 若水   2008-04-02/11:09
  • Dealing with Null strings in Access database fields
    By default Access string fields contain NULL values unless a string value (including a blank string like "") has been assigned. When you read these fields using recordsets into VB string variables, you get a runtime type-mismatch error. The best way to deal with this problem is to use the built-in & operator to concatenate a blank string to each field as you read it. For example:

    Dim DB As Database
    Dim RS As Recordset
    Dim sYear As String 
    Set DB = OpenDatabase("Biblio.mdb")
    Set RS = DB.OpenRecordset("Authors")
    sYear = "" & RS![Year Born]
    -

    评论 {{userinfo.comments}}

    {{money}}

    {{question.question}}

    A {{question.A}}
    B {{question.B}}
    C {{question.C}}
    D {{question.D}}
    提交

    驱动号 更多