BUG: DBUtils

JMB

Active Member
Licensed User
Longtime User
Hi Erel

I think I may have found a bug in one of the Subs in the DBUtils package.

In Sub ExceuteMemoryTable you've got a loop doing

For row = 0 to Limit - 1

Inside that loop, you've got a string array for the column values which is Dim'd as

Dim values(c.RowCount) as String

That does not work properly.

I think it should be:

Dim values(c.ColumnCount) as String

That made things work for me.


Hope this helps.

JMB
 
Top