Home
last modified time | relevance | path

Searched refs:rowOut (Results 1 – 2 of 2) sorted by relevance

/AOO42X/main/connectivity/java/sdbc_postgresql/src/com/sun/star/sdbcx/comp/postgresql/
H A DPostgresqlDatabaseMetadata.java122 ORowSetValue[] rowOut = new ORowSetValue[18]; in getColumns() local
123 rowOut[0] = new ORowSetValue(tableCat); in getColumns()
124 rowOut[1] = new ORowSetValue(tableSchem); in getColumns()
125 rowOut[2] = new ORowSetValue(tableName); in getColumns()
126 rowOut[3] = new ORowSetValue(columnName); in getColumns()
127 rowOut[4] = new ORowSetValue(dataType); in getColumns()
128 rowOut[5] = new ORowSetValue(typeName); in getColumns()
129 rowOut[6] = new ORowSetValue(columnSize); in getColumns()
130 rowOut[7] = new ORowSetValue(bufferLength); in getColumns()
131 rowOut[8] = new ORowSetValue(decimalDigits); in getColumns()
[all …]
/AOO42X/main/connectivity/java/sdbc_jdbc/src/com/sun/star/comp/sdbc/
H A DJavaSQLDatabaseMetaData.java558 ORowSetValue[] rowOut = new ORowSetValue[7]; in getTablePrivileges() local
559 for (int i = 0; i < rowOut.length; i++) { in getTablePrivileges()
560 rowOut[i] = new ORowSetValue(""); in getTablePrivileges()
561 rowOut[i].setNull(); in getTablePrivileges()
566 rowOut[entry.getValue()].setNull(); in getTablePrivileges()
568 rowOut[entry.getValue()].setString(value); in getTablePrivileges()
571 rowsOut.add(rowOut); in getTablePrivileges()