摘要:
先查看数据库逻辑名称:restore filelistonly from disk='D:/database.bak'然后恢复:restore database smsdb from disk = 'd:\smsdb.bak'with move '数据库逻辑名称' to 'C:\Progra... 阅读全文
摘要:
1 """A parser for SGML, using the derived class as a static DTD.""" 2 3 # XXX This only supports those SGML features used by HTML. 4 5 # XXX... 阅读全文
摘要:
Null:Null是一个象Integer或者String一样的变量类型,它表示一个没有合法数据的变量。这有别于zero、Nothing、Empty或者vbNullString。 可以使用IsNull语句来判断表达式是否为Null:If IsNull(my_variable) Then ... Empty:这也是一个象Integer或者String一样的变量类型,它表示了一个还没有进行初始化的变量。它与Null的意义不同,Null表示没有合法数据。 一个没有初始化的变量的数值是Empty。你可以使用IsEmpty语句来判断是否变量进行了初始化:Dim a As Variant '注意:I 阅读全文