-
It uses net.sourceforge.supercsv library. It would be great to apply the patch ASAP!
Many thanks.
2009-09-17 08:52:53 UTC by evx
-
I am attaching a patch to fix the CSV export with correct escapes.
2009-09-17 08:51:13 UTC by nobody
-
The proposed bugfix resolves the problem only for the select category,
In the com.elvyx.ResultSet category the elapsed time information is completely missing,
if the statements contains some '~' character.
The bugfix must be made deeper in the engine maybe by replacing '~' with a more save token.
2009-04-09 12:41:00 UTC by pb00067
-
Following code change fixes the bug (see uploaded DatFile.java) :
DatFile.java:
...
String statement = st.nextToken();
> //possible solution for Bug item #2724667
> //if there are more then 2 tokens left, then the statement itself contains the token
> while (st.countTokens() > 2) {
> statement = statement + token + st.nextToken();...
2009-04-09 12:14:03 UTC by pb00067
-
Also the tilde (~) sign apparently creates problems to elvyx when appearing in a parameter:
Exception in thread "Thread-178" java.lang.NumberFormatException: For input string: "1125899906894912'"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
at java.lang.Integer.parseInt(Integer.java:459)
at java.lang.Integer.(Integer.java:620)
2009-04-09 06:57:24 UTC by pb00067
-
Due the exception the client simply ignores the concerning statement,
so the statement is'nt displayed at all in the GUI.
2009-04-01 08:08:02 UTC by pb00067
-
Elvyx has problems with some special character in conditions
java.lang.NumberFormatException: For input string: "{}|@zZ'"
at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
at java.lang.Integer.parseInt(Integer.java:447)
at java.lang.Integer.(Integer.java:620)
at com.elvyx.server.DatFile.run(DatFile.java:85)
at...
2009-04-01 08:01:43 UTC by pb00067
-
When a string is provided as an argument, then in the SQL with the arguments substitued, the string is delimited by two single quotes and single quotes within the string remain are not escaped. For example:
"my 'example' string"
is shown as
''my 'example' string''
instead of
'my ''example'' string'.
2009-01-23 10:44:47 UTC by runciblespoon
-
If you click on the column heading for "Avg pstmt" it sorts by "Avg elapsed" and visa versa. It gets others wrong if you rearrange the columns.
Also the chart is updated when you click on a column header, but the title on the chart is not updated.
Otherwise: excellent piece of kit.
2009-01-16 11:53:07 UTC by runciblespoon
-
Works fine for me.
2008-11-15 18:51:47 UTC by ryanshillington