-
I sometimes inadvertently click the 'Monitor' tab when
I intend to click the SQL tab, and then have to wait
while the app collects all the monitor information from
the server to display before it will allow (or notice)
clicks elsewhere in the app. It would be great if that
data gathering was asynchronous (different thread,
perhaps?) so the overall app remained responsive.
2006-08-29 16:38:49 UTC in SQuirreL SQL Client
-
Logged In: YES
user_id=456585
Nevermind; it already does this. It's just switching
between a few more things, so I didn't notice at first.
Good job!
2006-08-23 19:45:14 UTC in SQuirreL SQL Client
-
It would be handy to have a keyboard shortcut to switch
between open windows, like Ctrl-Tab, rather than having
to use the menu to select a different window every time.
Sometimes I'm developing a function or stored
procedure, and I like to be working on that in one
window but have another SQL Worksheet window open
(Ctrl-N) for general scratch space and whatnot, and it
would be very...
2006-08-23 19:25:14 UTC in SQuirreL SQL Client
-
Logged In: YES
user_id=456585
Okay, I read the fine manual again (or more to the point,
README.freetds), and see that this is a known issue. As I
was able to patch freetds per instructions and resolve the
issue, I'll close the bug. However, for what it's worth, I
find it interesting that freetds's own command-line sql
client, tsql, does not exhibit the problem behavior without
the...
2006-03-24 12:52:00 UTC in ShellSQL
-
Given the following test setup:
create table shtest (
a int,
b int
);
insert into shtest values (0, null);
insert into shtest values (1, 1);
insert into shtest values (2, null);
insert into shtest values (3, null);
insert into shtest values (4, 4);
insert into shtest values (5, null);
The command:
shsql $HANDLE "select * from shtest";
...returns the following:
"0" ""
"1"...
2006-03-21 00:14:17 UTC in ShellSQL
-
jfouse committed patchset 8 of module jtax to the JTax CVS repository, changing 4 files.
2004-10-04 16:11:35 UTC in JTax
-
jfouse committed patchset 7 of module jtax to the JTax CVS repository, changing 1 files.
2004-10-04 16:02:42 UTC in JTax
-
jfouse committed patchset 6 of module jtax to the JTax CVS repository, changing 17 files.
2004-10-04 15:53:19 UTC in JTax
-
jfouse committed patchset 5 of module jtax to the JTax CVS repository, changing 1 files.
2004-10-04 15:24:02 UTC in JTax
-
Hey guys,
I noticed this morning that sql comments w/in sql
statements are being parsed for parameter markers and
such. Both of the following test queries:
select getdate(); -- ?
select getdate(); /* ? */
...return a SQLException: "The SQL statement must not
contain a procedure call or parameter markers."
Poked around the code a bit and saw that comments
weren't being taken...
2004-08-18 18:13:29 UTC in jTDS - SQL Server and Sybase JDBC driver