Created
December 20, 2022 21:57
-
-
Save krisrice/006b3d12e8733b71811f6e38c1aec7af to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
//create table todo(id NUMBER GENERATED by default on null as IDENTITY, todo_for varchar2(200)); | |
// | |
var DBUtil = Java.type("oracle.dbtools.db.DBUtil"); | |
var binds={}; | |
binds.name="Oliver"; | |
sql = "insert into todo(todo_for) values(:name)"; | |
// String array of returning columns | |
retCols = Java.to(["ID",],"java.lang.String[]"); | |
// prep passing return cols | |
var ps = conn.prepareStatement(sql,retCols); | |
// helper class to do the binds | |
DBUtil.bind(ps,binds); | |
// execute | |
if (ps.executeUpdate() > 0) { | |
// getGeneratedKeys() returns result set of keys that were auto | |
var generatedKeys = ps.getGeneratedKeys(); | |
// generatedKeys is a resultSet | |
if (null != generatedKeys && generatedKeys.next()) { | |
// data type of return | |
ctx.write(generatedKeys.getMetaData().getColumnTypeName(1) + "\n") | |
// return value ! | |
ctx.write( generatedKeys.getInt(1) + "\n" ) ; | |
} | |
} | |
/* | |
KLRICE@klr> select * from todo; | |
no rows selected | |
KLRICE@klr> script sqlcl_js_returning.js | |
NUMBER | |
17 | |
KLRICE@klr> select * from todo; | |
ID TODO_FOR | |
_____ ___________ | |
17 Oliver | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment