Searched refs:xCurrentRow (Results 1 – 5 of 5) sorted by relevance
/trunk/main/connectivity/source/commontools/ |
H A D | dbtools2.cxx | 673 Reference< XRow > xCurrentRow(xPrivileges, UNO_QUERY); in getTablePrivileges() local 675 if ( xCurrentRow.is() ) in getTablePrivileges() 709 sCat = xCurrentRow->getString(1); in getTablePrivileges() 710 sSchema = xCurrentRow->getString(2); in getTablePrivileges() 711 sName = xCurrentRow->getString(3); in getTablePrivileges() 712 sGrantor = xCurrentRow->getString(4); in getTablePrivileges() 714 sGrantee = xCurrentRow->getString(5); in getTablePrivileges() 715 sPrivilege = xCurrentRow->getString(6); in getTablePrivileges() 717 sGrantable = xCurrentRow->getString(7); in getTablePrivileges()
|
/trunk/main/connectivity/source/drivers/hsqldb/ |
H A D | HUser.cxx | 142 Reference<XRow> xCurrentRow(xRes,UNO_QUERY); in findPrivilegesAndGrantPrivileges() local 143 while( xCurrentRow.is() && xRes->next() ) in findPrivilegesAndGrantPrivileges() 145 ::rtl::OUString sGrantee = xCurrentRow->getString(5); in findPrivilegesAndGrantPrivileges() 146 ::rtl::OUString sPrivilege = xCurrentRow->getString(6); in findPrivilegesAndGrantPrivileges() 147 ::rtl::OUString sGrantable = xCurrentRow->getString(7); in findPrivilegesAndGrantPrivileges()
|
/trunk/main/connectivity/source/drivers/mysql/ |
H A D | YUser.cxx | 142 Reference<XRow> xCurrentRow(xRes,UNO_QUERY); in findPrivilegesAndGrantPrivileges() local 143 while( xCurrentRow.is() && xRes->next() ) in findPrivilegesAndGrantPrivileges() 145 ::rtl::OUString sGrantee = xCurrentRow->getString(5); in findPrivilegesAndGrantPrivileges() 146 ::rtl::OUString sPrivilege = xCurrentRow->getString(6); in findPrivilegesAndGrantPrivileges() 147 ::rtl::OUString sGrantable = xCurrentRow->getString(7); in findPrivilegesAndGrantPrivileges()
|
/trunk/main/dbaccess/source/core/api/ |
H A D | FilteredContainer.cxx | 368 Reference< XRow > xCurrentRow( xTables, UNO_QUERY_THROW ); in construct() local 375 sCatalog = xCurrentRow->getString(1); in construct() 376 sSchema = xCurrentRow->getString(2); in construct() 377 sName = xCurrentRow->getString(3); in construct() 378 sType = xCurrentRow->getString(4); in construct()
|
/trunk/main/connectivity/source/parse/ |
H A D | sqliterator.cxx | 296 Reference< XRow > xCurrentRow( xRes, UNO_QUERY ); in lcl_findTableInMetaData() local 297 if ( xCurrentRow.is() && xRes->next() ) in lcl_findTableInMetaData() 301 impl_getRowString( xCurrentRow, 1, sCatalog ); in lcl_findTableInMetaData() 302 impl_getRowString( xCurrentRow, 2, sSchema ); in lcl_findTableInMetaData() 303 impl_getRowString( xCurrentRow, 3, sName ); in lcl_findTableInMetaData()
|
Completed in 41 milliseconds