Exemplo n.º 1
0
            private static MutableString[] getOrigColNames(IDBResult rows)
            {
                MutableString[] colNames = new MutableString[rows.getColCount()];
                for (int nCol = 0; nCol < rows.getColCount(); nCol++)
                {
                    colNames[nCol] = MutableString.Create(rows.getOrigColName(nCol));
                }

                return(colNames);
            }
Exemplo n.º 2
0
            private static MutableString[] getOrigColNames(IDBResult rows)
            {
                MutableString[] colNames = new MutableString[rows.getColCount()];
                for (int nCol = 0; nCol < rows.getColCount(); nCol++)
                    colNames[nCol] = MutableString.Create(rows.getOrigColName(nCol));

                return colNames;
            }