目前,我创建了一个允许用户输入 SQL 代码的类,然后该类将结果返回到他们可以进一步使用的数组中。大多数方法使用循环将数据从 OleDbDataReader 对象传输到数组。在处理大量项目时,这可能会非常慢。
当前方法:
Dim SQLdr As OleDbDataReader 'SQL reader
Dim SQLCmd As New OleDbCommand() 'The SQL Command
Dim firstline As Boolean
SQLCmd.Connection = SQLConn 'Sets the Connection to use with the SQL Command
SQLCmd.CommandText = SQLStr 'Sets the SQL String
SQLdr = SQLCmd.ExecuteReader 'Gets Data
然后后来..
While (SQLdr.Read)
If firstline = True Then
'fill headers
Do Until j = SQLdr.FieldCount
result(j, i) = SQLdr.GetName(j)
j = j + 1
Loop
firstline = False
j = 0
i = 1
End If
j = 0
Do Until j = SQLdr.FieldCount
ReDim Preserve result(result.GetUpperBound(0), result.GetUpperBound(1) + 1)
If display = True Then
MsgBox(j & ":" & i & SQLdr(j).ToString)
End If
result(j, i) = SQLdr(j).ToString
j = j + 1
Loop
i = i + 1
End While
我想知道是否有更直接的方法将结果输出到数组中。我很抱歉,但我不知道从哪里开始,如果有可能,或者是否有人尝试过前。