Lines Matching refs:execute

53         execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where \"Identifier\" like 'B%'");  in testFunctions()
54 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where not \"Identifier\" like 'B%'"); in testFunctions()
55 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where not \"Identifier\" not like 'B%'"); in testFunctions()
56 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where not(0 = 1)"); in testFunctions()
57 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where 0 = 0"); in testFunctions()
58 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where (0 = 0)"); in testFunctions()
59 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where 0 <> 1"); in testFunctions()
60 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where 0 < 1"); in testFunctions()
61 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where 2 > 1"); in testFunctions()
62 execute(xRowRes,"1,1+1,'a' + 'b' FROM \"biblio\" \"biblio\" where 2 > 1"); in testFunctions()
66 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where not \"Identifier\" is NULL"); in testFunctions()
67 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where \"Identifier\" is not NULL"); in testFunctions()
68 execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where \"Identifier\" = \"Identifier\""); in testFunctions()
69execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where not(not(\"Identifier\" = \"Identifier\"))"); in testFunctions()
70execute(xRowRes,"1 FROM \"biblio\" \"biblio\" where (1 = 1 and 2 = 1) or 3 = 33 or 4 = 44 or ('a' … in testFunctions()
73 …private void execute(final XRowSet xRowRes, String sql) throws com.sun.star.uno.Exception, com.sun… in execute() method in DBaseSqlTests
79 xRowRes.execute(); in execute()