Closed GoogleCodeExporter closed 8 years ago
SO one simple start to the fix is on 2767 on Parser.java in the
readIdentifierWithSchema method is to allow chaining "." in alias names:
if (equalsToken(".", currentToken)) {
read(".");
if (currentTokenType != IDENTIFIER) {
throw DbException.getSyntaxError(sqlCommand, parseIndex, "identifier");
}
s += "." + currentToken;
read();
}
Now working on the calls to the alias.
Original comment by mcinto...@gmail.com
on 14 Dec 2011 at 10:36
Such a support for Oracle packages would be fine for us too.
Original comment by SvRe...@gmail.com
on 17 Jan 2012 at 8:12
How does the actual Oracle procedure call look like (the real example)?
Original comment by thomas.t...@gmail.com
on 17 Feb 2012 at 1:40
Has this been implemented?
Original comment by wolfey...@gmail.com
on 11 Feb 2013 at 12:02
I imagine the procedure call would look something like this:
call TEST_SCHEMA.PACKAGE_NAME.PROCEDURE_IN_PACKAGE(?)
Original comment by wolfey...@gmail.com
on 11 Feb 2013 at 12:08
> Has this been implemented?
I suggest to try yourself if it works for you.
Original comment by thomas.t...@gmail.com
on 12 Feb 2013 at 5:50
Original issue reported on code.google.com by
mcinto...@gmail.com
on 14 Dec 2011 at 10:01