spavo Posted July 25, 2016 Share Posted July 25, 2016 Hi All, Apologies if this is redundant, but I was not able to find anything for my specific case when searching google and the forum. I'm having an issue trying to set a specific array element in a 2d array. Code I'm working with: $num_cols=$sqlRet.Fields.Count -1 Global $SQLResultsArray[1][$num_cols] _ArrayDisplay($SQLResultsArray) For $col=0 To ($num_cols) $SQLResultsArray[0][$col] = $sqlRet.Fields($col).Name Next _ArrayDisplay($SQLResultsArray) Executing that yields the following error: SQL_select_test.au3" (79) : ==> Array variable has incorrect number of subscripts or subscript dimension range exceeded.: $SQLResultsArray[0][$col] = $sqlRet.Fields($col).Name ^ ERROR I can update the array just fine using _ArrayAdd, but it doesn't do quite what I'm after. Essentially I'm trying to set the 0th row's values to be the column names from the results of an ADODB query execution. Kind Regards, SP Link to comment Share on other sites More sharing options...
jchd Posted July 25, 2016 Share Posted July 25, 2016 Fix is For $col = 0 To $num_cols - 1 $SQLResultsArray[0][$col] = $sqlRet.Fields($col + 1).Name 0 to $num_cols is 1 too much for the array, but ADO column indices sart at 1. This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe hereRegExp tutorial: enough to get startedPCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta. SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt) Link to comment Share on other sites More sharing options...
spavo Posted July 26, 2016 Author Share Posted July 26, 2016 That did the trick. Many thanks. I'm relatively new to ADO; I'll have to keep the indices starting at 1 in mind going forwards. Thanks again. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now