g_dbconn.Execute sql, affectLines语句中参数affectLines的作用,如何定值
我是一名初学用VB6.0+Access编程的菜鸟,在看别人做的一个可执行程序时,在下述函数编码中发现一个语句g_dbconn.Execute sql, affectLines,其中有一参数affectLines,不知起什么作用,又如何来确定它的值(在该程序其它地方没有相关的设定),请各位大虾给小弟指点一下迷津。多谢啦!'* 函数名:AppendChapter
'* 功 能:追加章节信息
'* 参 数:ChapterInfo 章节信息
'* 返回值:true 追加成功(Boolean)
'* :false 追加失败
'***********************************************************************
Public Function AppendChapter(ByRef newChapterInfo As ChapterInfo) As Boolean
If IsNull(newChapterInfo.chapterName) Or _
IsEmpty(newChapterInfo.chapterName) Or _
newChapterInfo.chapterName = "" Then
AppendChapter = False
Exit Function
End If
Dim sql As String
Dim affectLines As Long
sql = "INSERT INTO chapter(chapterName) VALUES('" & _
newChapterInfo.chapterName & "')"
On Error GoTo ERREND
g_dbconn.Execute sql, affectLines
If affectLines = 1 Then
AppendChapter = True
Else
AppendChapter = False
End If
Exit Function
ERREND:
AppendChapter = False
End Function
'************