Oracle 11, java, jdbc 11.2.0.3
The problem arises when you get a sequence from an insert like this
PreparedStatement ps = connection.prepareStatement(QUERY, new String[] { "student_id" });
, jdbc "SELECT * FROM" . .
T4CConnection.doDescribeTable
T4CStatement localT4CStatement = new T4CStatement(this, -1, -1);
localT4CStatement.open();
String str1 = paramAutoKeyInfo.getTableName();
String str2 = new StringBuilder().append("SELECT * FROM ").append(str1).toString();
localT4CStatement.sqlObject.initialize(str2);
Oracle "*", .