Storing and Retrieving a Matrix | jeckels | 2014-02-12 10:42 |
Status: Closed | ||
Hi Bill, Ah, yes, sorry for jumping to the wrong diagnosis. In general, I don't recommend relying on particular column ordering. For example, in many cases, the server will include additional columns in the results (such as primary key or other values used to general URLs and other types of metadata). You may be able to specify a list explicitly with the "columns" property to tweak the ordering, but that may not be completely stable either. This is a byproduct of the fact that we're not executing the SQL you pass to the server directly against the database, as you might be used to from JDBC or other database APIs. Instead, I'd recommend iterating to find columns based on their names. The ordering for each row should be stable within a given response from the server. Thanks, Josh |
||