Lines Matching refs:updateRow
128 XRowUpdate updateRow = (XRowUpdate)UnoRuntime.queryInterface(XRowUpdate.class,srs); in retrieveSalesData2() local
129 updateRow.updateFloat(2, (float)0.69); in retrieveSalesData2()
133 updateRs.updateRow(); // this call updates the data in DBMS in retrieveSalesData2()
136 updateRow.updateFloat(2, (float)0.99); in retrieveSalesData2()
138 updateRow.updateFloat(2, (float)0.79); in retrieveSalesData2()
139 updateRs.updateRow(); in retrieveSalesData2()
158 XRowUpdate updateRow = (XRowUpdate)UnoRuntime.queryInterface(XRowUpdate.class,rs); in insertRow() local
161 updateRow.updateInt(1, 4); in insertRow()
162 updateRow.updateInt(2, 102); in insertRow()
163 updateRow.updateInt(3, 5); in insertRow()
164 updateRow.updateString(4, "FTOP Darjeeling tea"); in insertRow()
165 updateRow.updateDate(5, new Date((short)1,(short)2,(short)2002)); in insertRow()
166 updateRow.updateFloat(6, 150); in insertRow()
204 XRowUpdate updateRow = (XRowUpdate)UnoRuntime.queryInterface(XRowUpdate.class,rs); in refreshRow() local
206 updateRow.updateFloat(2, 150); in refreshRow()
207 updateRs.updateRow(); in refreshRow()