コード例 #1
0
ファイル: RhoDatabase.cs プロジェクト: joelbm24/rhodes
            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);
            }
コード例 #2
0
ファイル: RhoDatabase.cs プロジェクト: Chanic/rhodes
            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;
            }