Lines Matching refs:xRowRes
47 final XRowSet xRowRes = (XRowSet) UnoRuntime.queryInterface(XRowSet.class, in testFunctions() local
52 … final XPropertySet xProp = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xRowRes); in testFunctions()
59 curdate(xRowRes); in testFunctions()
68 curtime(xRowRes); in testFunctions()
77 dayname(xRowRes); in testFunctions()
86 dayofmonth(xRowRes); in testFunctions()
95 dayofweek(xRowRes); in testFunctions()
104 dayofyear(xRowRes); in testFunctions()
113 hour(xRowRes); in testFunctions()
122 minute(xRowRes); in testFunctions()
131 month(xRowRes); in testFunctions()
140 monthname(xRowRes); in testFunctions()
149 now(xRowRes); in testFunctions()
158 quarter(xRowRes); in testFunctions()
167 second(xRowRes); in testFunctions()
176 week(xRowRes); in testFunctions()
185 year(xRowRes); in testFunctions()
194 …private XRow execute(final XRowSet xRowRes, final String sql) throws com.sun.star.uno.Exception, c… in execute() argument
196 … final XPropertySet xProp = (XPropertySet) UnoRuntime.queryInterface(XPropertySet.class, xRowRes); in execute()
198 xRowRes.execute(); in execute()
199 final XResultSet xRes = (XResultSet) UnoRuntime.queryInterface(XResultSet.class, xRowRes); in execute()
205 …private void dayofweek(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.bean… in dayofweek() argument
207 final XRow row = execute(xRowRes, "DAYOFWEEK('1998-02-03') "); in dayofweek()
211 …private void dayofmonth(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.bea… in dayofmonth() argument
213 final XRow row = execute(xRowRes, "DAYOFMONTH('1998-02-03') "); in dayofmonth()
217 …private void dayofyear(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.bean… in dayofyear() argument
219 final XRow row = execute(xRowRes, "DAYOFYEAR('1998-02-03') "); in dayofyear()
223 …private void month(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Un… in month() argument
225 final XRow row = execute(xRowRes, "month('1998-02-03') "); in month()
229 …private void dayname(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.… in dayname() argument
231 final XRow row = execute(xRowRes, "DAYNAME('1998-02-05') "); in dayname()
235 …private void monthname(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.bean… in monthname() argument
237 final XRow row = execute(xRowRes, "MONTHNAME('1998-02-05') "); in monthname()
241 …private void quarter(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.… in quarter() argument
243 …final XRow row = execute(xRowRes, "QUARTER('98-01-01'),QUARTER('98-04-01'),QUARTER('98-07-01'),QUA… in quarter()
250 …private void week(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unk… in week() argument
252 final XRow row = execute(xRowRes, "WEEK('1998-02-20') "); in week()
256 …private void year(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unk… in year() argument
258 final XRow row = execute(xRowRes, "YEAR('98-02-03') "); in year()
262 …private void hour(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unk… in hour() argument
264 final XRow row = execute(xRowRes, "HOUR('10:05:03') "); in hour()
268 …private void minute(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.U… in minute() argument
270 final XRow row = execute(xRowRes, "MINUTE('98-02-03 10:05:03') "); in minute()
274 …private void second(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.U… in second() argument
276 final XRow row = execute(xRowRes, "SECOND('10:05:03') "); in second()
280 …private void curdate(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.… in curdate() argument
282 final XRow row = execute(xRowRes, "CURDATE() "); in curdate()
287 …private void curtime(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.… in curtime() argument
289 final XRow row = execute(xRowRes, "CURTIME() "); in curtime()
294 …private void now(final XRowSet xRowRes) throws com.sun.star.uno.Exception, com.sun.star.beans.Unkn… in now() argument
296 final XRow row = execute(xRowRes, "NOW() "); in now()