After the latest SVN update I suddenly get the following error when trying
to scan the arrays returned for a SELECT query using option
OO_ARRAY_OF_ARRAYS:

Error 88.900:  Argument 1 must be a non-sparse array, index 11 is missing

The rexx statement that is executing at the time is the addRowFromArray in
the following do-construct:

data = dbConnection~exec(sql, .TRUE, .ooSQLite~OO_ARRAY_OF_ARRAYS)

do i = 2 to data~items
    item = g.listView~addRowFromArray(data[i], , "")
    g.listView~setItemData(item, data[i])
end

If I add the following say stmts I get different results, which should not
be the case:

say data[1]~items   (gives 65)
say data[2]~items   (gives 35)

This error happens regardless of whether I've set the null attribute or not.

Could this be a result of the latest updates to ooSQLite?

Staffan
------------------------------------------------------------------------------
Own the Future-Intel® Level Up Game Demo Contest 2013
Rise to greatness in Intel's independent game demo contest.
Compete for recognition, cash, and the chance to get your game 
on Steam. $5K grand prize plus 10 genre and skill prizes. 
Submit your demo by 6/6/13. http://p.sf.net/sfu/intel_levelupd2d
_______________________________________________
Oorexx-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/oorexx-users

Reply via email to