Add '\' escape character support for Oracle.
This commit is contained in:
parent
87a93f946c
commit
b1d1908f24
|
@ -73,6 +73,9 @@ public class UUIDGenerator extends SvrProcess {
|
||||||
if (!tableName.endsWith("%"))
|
if (!tableName.endsWith("%"))
|
||||||
tableName = tableName + "%";
|
tableName = tableName + "%";
|
||||||
String sql = "SELECT AD_Table_ID, TableName FROM AD_Table WHERE TableName like ? AND IsView = 'N' AND IsActive='Y'";
|
String sql = "SELECT AD_Table_ID, TableName FROM AD_Table WHERE TableName like ? AND IsView = 'N' AND IsActive='Y'";
|
||||||
|
if (DB.isOracle()) {
|
||||||
|
sql = sql + " ESCAPE '\' ";
|
||||||
|
}
|
||||||
PreparedStatement stmt = null;
|
PreparedStatement stmt = null;
|
||||||
ResultSet rs = null;
|
ResultSet rs = null;
|
||||||
int count = 0;
|
int count = 0;
|
||||||
|
|
Loading…
Reference in New Issue