Lines Matching refs:XRow
201 …private XRow execute(final XRowSet xRowRes, String sql) throws com.sun.star.uno.Exception, com.sun… in execute()
209 return (XRow) UnoRuntime.queryInterface(XRow.class, xRes); in execute()
214 final XRow row = execute(xRowRes, "upper('test'),UCASE('test') "); in upper()
221 final XRow row = execute(xRowRes, "lower('TEST'),LCASE('TEST') "); in lower()
232 final XRow row = execute(xRowRes, "ASCII('2') "); in acsii()
238 …final XRow row = execute(xRowRes, "char_length('test'),character_length('test'),OCTET_LENGTH('test… in char_length()
246 final XRow row = execute(xRowRes, "CONCAT('Hello',' ','World') "); in concat()
252 final XRow row = execute(xRowRes, "LOCATE('bar', 'foobarbar') "); in locate()
258 final XRow row = execute(xRowRes, "SUBSTRING('Quadratically',5) "); in substring()
264 final XRow row = execute(xRowRes, "LTRIM(' barbar') "); in ltrim()
270 final XRow row = execute(xRowRes, "RTRIM('barbar ') "); in rtrim()
276 final XRow row = execute(xRowRes, "space(6) "); in space()
282 final XRow row = execute(xRowRes, "REPLACE('www.OOo.com', 'w', 'Ww') "); in replace()
288 final XRow row = execute(xRowRes, "REPEAT('OOo', 3) "); in repeat()
294 final XRow row = execute(xRowRes, "INSERT('Quadratic', 3, 4, 'What') "); in insert()
300 final XRow row = execute(xRowRes, "LEFT('foobarbar', 5) "); in left()
306 final XRow row = execute(xRowRes, "RIGHT('foobarbar', 4) "); in right()
312 final XRow row = execute(xRowRes, "CHAR(ascii('t'),ascii('e'),ascii('s'),ascii('t')) "); in chartest()