Home | History | Annotate | Download | only in JDBC2z

Lines Matching refs:tr

25     public TableResultX(SQLite.TableResult tr) {
26 this.column = tr.column;
27 this.rows = tr.rows;
28 this.ncolumns = tr.ncolumns;
29 this.nrows = tr.nrows;
30 this.types = tr.types;
31 this.maxrows = tr.maxrows;
32 sql_type = new int[tr.ncolumns];
36 if (tr.types != null) {
37 for (int i = 0; i < tr.types.length; i++) {
38 sql_type[i] = JDBCDatabaseMetaData.mapSqlType(tr.types[i]);