Я пытаюсь обработать массивный массив в традиционном ASP, но достигаю пределов ....
По сути, мне нужен массив (70 листов, 10000 строк, 200 столбцов), чтобыподготовьте электронную таблицу XML и документ PDF.
Я пробовал вложить объекты словаря (см. ниже), но они болезненно медленны.
Любые предложения будутс благодарностью .....
С уважением,
Пол
Использование объекта словаря: -
Dim HugeArray = CreateObject("Scripting.Dictionary")
Sub AddCell(x,y,z,aText)
Dim NewCol
if not HugeArray.exists(x) then
set NewCol = CreateObject("Scripting.Dictionary")
HugeArray.Add x,NewCol
set NewCol = nothing
end if
if not HugeArray(x).exists(y) then
set NewCol = CreateObject("Scripting.Dictionary")
HugeArray(x).Add y,NewCol
set NewCol = nothing
end if
if HugeArray(x).Exists(y) then
set y=HugeArray(x)(y)
if not y.Exists(z) then
y.Add z,aText
else
y(z)=aText
end if
end if
End Sub
Function GetCell(x,y,z)
Dim a
GetCell=""
if HugeArray(x).Exists(y) then
set a=HugeArray(x)(y)
GetCell=a(z)
end if
End Function