Oracle driver first data

This commit is contained in:
Rinie Kervel
2022-10-11 17:04:38 +02:00
parent 4939b74179
commit 51952ecfdd
25 changed files with 259 additions and 381 deletions

View File

@@ -1,3 +1,6 @@
module.exports = `
select conname as "constraint_name" from pg_constraint where contype = 'u'
select constraint_name
from all_constraints
where constraint_type = 'U'
and constraint_name =OBJECT_ID_CONDITION
`;