I'm having issues trying to read a catalog with more than one table, using the fill function. For some reason, it needs me to specify the tableRef. I don't know wich one it is, and it wouldn't be good for me to hardcode on my app the name of a table that might change later.
I thought _defaultTableRef would hold a reference to it, but is null. Theres this piece of code nulling it:
|
if (this._numBuffers != 1) |
|
this._defaultTableRef = null; |
if (this._numBuffers != 1)
this._defaultTableRef = null;
Should defaultTableRef be null if there's more than one table for some "background" reason?