Skip to content
Snippets Groups Projects
Commit e2874361 authored by Julien Lopez's avatar Julien Lopez
Browse files

Add simple README

parent 564baee7
Branches
No related tags found
No related merge requests found
This project is an implementation of the Query Intermediate Representation.
== Build ==
To create the archive qir.jar, run ant on the root directory.
......@@ -130,7 +130,7 @@ public class OracleDriver extends DBDriver {
oraArguments += ") RETURN NUMBER";
String addOrUpdate = update ? "update" : "add";
String query = "begin sys." + addOrUpdate + "_SLSQL_Function ('scott', '" + name + "', ' " + oraArguments + " ', '" + function + "'); end;";
String query = "begin sys." + addOrUpdate + "_UDF_Function ('scott', '" + name + "', ' " + oraArguments + " ', '" + function + "', 'SLSQL'); end;";
try (Statement stmt = conn.createStatement()) {
stmt.executeUpdate(query);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment