-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Closed
Labels
Description
There are a plan to support cursor column in a select ?
Example:
var sql = "" +
"select d.department_id,\n" +
" d.department_name,\n" +
" cursor (select employee_id,\n" +
" first_name,\n" +
" last_name,\n" +
" phone_number\n" +
" from employees e\n" +
" where e.department_id = d.department_id) emps\n" +
" from departments d\n" +
" where department_id = :department_id";
connection.execute(sqlPo, { department_id: 80 }, function(err, result) {
if (err) {
console.error(err.message);
doRelease(connection);
return;
}
callback(result);
});
Result:
NJS-010: unsupported data type in select list
nicholas-ochoa and lzehrung