|
From: SVN by r. <sv...@ca...> - 2007-09-19 09:05:01
|
Author: roy Date: 2007-09-19 11:04:54 +0200 (Wed, 19 Sep 2007) New Revision: 152 Modified: README Log: mention another feature Modified: README =================================================================== --- README 2007-09-18 13:01:03 UTC (rev 151) +++ README 2007-09-19 09:04:54 UTC (rev 152) @@ -78,3 +78,4 @@ - Large query results don't show (> 300.000 rows?) - 'where x' doesn't autocomplete table names - make ctrl+j (for example) auto insert join +- make ctrl+c abort query |
|
From: SVN by r. <sv...@ca...> - 2007-09-28 12:54:42
|
Author: rotman Date: 2007-09-28 14:54:41 +0200 (Fri, 28 Sep 2007) New Revision: 155 Modified: README Log: add fix Modified: README =================================================================== --- README 2007-09-28 12:53:04 UTC (rev 154) +++ README 2007-09-28 12:54:41 UTC (rev 155) @@ -62,6 +62,7 @@ 0.3 (Unreleased) - focus fix in login dialog +- fix to stop spooled lines being appended to each other. FUTURE - Improve desc table (to show primary key, references, etc) |
|
From: SVN by r. <sv...@ca...> - 2007-09-28 14:09:37
|
Author: roy
Date: 2007-09-28 16:09:32 +0200 (Fri, 28 Sep 2007)
New Revision: 156
Modified:
pom.xml
Log:
fixed reference to hsqldb jar
Modified: pom.xml
===================================================================
--- pom.xml 2007-09-28 12:54:41 UTC (rev 155)
+++ pom.xml 2007-09-28 14:09:32 UTC (rev 156)
@@ -43,7 +43,7 @@
<dependency>
<groupId>hsqldb</groupId>
<artifactId>hsqldb</artifactId>
- <version>1.8.0</version>
+ <version>1.8.0.7</version>
</dependency>
<dependency>
<groupId>db</groupId>
|
|
From: SVN by r. <sv...@ca...> - 2007-09-30 09:48:11
|
Author: roy
Date: 2007-09-30 11:48:08 +0200 (Sun, 30 Sep 2007)
New Revision: 158
Modified:
pom.xml
Log:
removed oracle dependancy
Modified: pom.xml
===================================================================
--- pom.xml 2007-09-30 09:47:31 UTC (rev 157)
+++ pom.xml 2007-09-30 09:48:08 UTC (rev 158)
@@ -46,12 +46,6 @@
<version>1.8.0.7</version>
</dependency>
<dependency>
- <groupId>db</groupId>
- <artifactId>oracle</artifactId>
- <version>1.4</version>
- <scope>test</scope>
- </dependency>
- <dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
|
|
From: SVN by r. <sv...@ca...> - 2007-09-30 09:54:12
|
Author: roy Date: 2007-09-30 11:54:09 +0200 (Sun, 30 Sep 2007) New Revision: 159 Modified: README Log: mention changes Modified: README =================================================================== --- README 2007-09-30 09:48:08 UTC (rev 158) +++ README 2007-09-30 09:54:09 UTC (rev 159) @@ -62,11 +62,13 @@ 0.3 (Unreleased) - focus fix in login dialog +- Improve desc table to show primary key - fix to stop spooled lines being appended to each other. +- Improve tab completion for update FUTURE -- Improve desc table (to show primary key, references, etc) -- Improve tab completion for delete and alter table queries +- Improve desc table (to show references, etc) +- Improve tab completion for update, delete and alter table queries - Highlight the commands to make a distinction between the output and the commands - Remember commands over sessions - Make it possible to export/import data via xml (I think there is even an xml standard for this) |
|
From: SVN by r. <sv...@ca...> - 2007-10-02 09:30:46
|
Author: rotman Date: 2007-10-02 11:30:44 +0200 (Tue, 02 Oct 2007) New Revision: 161 Modified: README Log: mention fix Modified: README =================================================================== --- README 2007-10-02 09:24:45 UTC (rev 160) +++ README 2007-10-02 09:30:44 UTC (rev 161) @@ -65,6 +65,7 @@ - Improve desc table to show primary key - fix to stop spooled lines being appended to each other. - Improve tab completion for update +- NullPointerException fix when not running from jar. FUTURE - Improve desc table (to show references, etc) |
|
From: SVN by r. <sv...@ca...> - 2007-10-02 09:34:24
|
Author: rotman Date: 2007-10-02 11:34:21 +0200 (Tue, 02 Oct 2007) New Revision: 162 Added: ChangeLog Modified: README Log: moved changes per version to ChangeLog Added: ChangeLog =================================================================== --- ChangeLog (rev 0) +++ ChangeLog 2007-10-02 09:34:21 UTC (rev 162) @@ -0,0 +1,45 @@ +0.3 (Unreleased) + * focus fix in login dialog + * Improve desc table to show primary key + * fix to stop spooled lines being appended to each other. + * Improve tab completion for update + * NullPointerException fix when not running from jar. + +0.2 (17-09-2007) + * Search in history (for example by entering '/query' to make the current command the last command with query in it) + * \n always tries to execute the command even if you are not at the end of the command + * Show tables (show a list of tables that is available for querying) + * BUGFIX: handle large results a bit better (memory wise) + * BUGFIX: fix tabcompletion when cursor not at the end of the sql string + * tab completion improvements + * Make columns in select query fit the max result with instead of the max column width + * make command help include list of known connections + * make spool command include status + * edit fixes + * help improvements + * make all commands match [\s]*[command][\s]*(|;) + * typing 'not at the end of a line' and the line becomes too large.. strange things happen... + * improved readability of desc table command + * desc of not existing table doesn't give an error + * replace ~ in ~/* for user home dir (for spool command) + * made '@' appear in help as well + * Improve desc table to show not null + * scroll all the way down when key typed that is not pageup/down + +0.1 + * connection settings via db.properties and input of password in a seperate dialog + configuration can be done by editing a simple db.properties file + * command history (key up/down) + * spool + * read sql script files and execute them + * (initial) tab completion + * when more matches show all matches in the output window + * if less then predefined max show matches in a selection window + * if only one match select that match + * desc table (initial) + * page up/down support + * info: show info of the current connection + * history: shows last executed commands + * help: provide some help about the available commands and it's usage + * remove prompt at the start of the command after executing to make it easier to copy/paste commands that are devided into multiple lines + * added support for 'show tables having column' Modified: README =================================================================== --- README 2007-10-02 09:30:44 UTC (rev 161) +++ README 2007-10-02 09:34:21 UTC (rev 162) @@ -21,52 +21,8 @@ TODO CURRENT FEATURES -0.1 -- connection settings via db.properties and input of password in a seperate dialog - configuration can be done by editing a simple db.properties file -- command history (key up/down) -- spool -- read sql script files and execute them -- (initial) tab completion - - when more matches show all matches in the output window - - if less then predefined max show matches in a selection window - - if only one match select that match -- desc table (initial) -- page up/down support -- info: show info of the current connection -- history: shows last executed commands -- help: provide some help about the available commands and it's usage -- remove prompt at the start of the command after executing to make it easier to copy/paste commands that are devided into multiple lines -- added support for 'show tables having column' +[See ChangeLog] -0.2 (17-09-2007 -- Search in history (for example by entering '/query' to make the current command the last command with query in it) -- \n always tries to execute the command even if you are not at the end of the command -- Show tables (show a list of tables that is available for querying) -- BUGFIX: handle large results a bit better (memory wise) -- BUGFIX: fix tabcompletion when cursor not at the end of the sql string -- tab completion improvements -- Make columns in select query fit the max result with instead of the max column width -- make command help include list of known connections -- make spool command include status -- edit fixes -- help improvements -- make all commands match [\s]*[command][\s]*(|;) -- typing 'not at the end of a line' and the line becomes too large.. strange things happen... -- improved readability of desc table command -- desc of not existing table doesn't give an error -- replace ~ in ~/* for user home dir (for spool command) -- made '@' appear in help as well -- Improve desc table to show not null -- scroll all the way down when key typed that is not pageup/down - -0.3 (Unreleased) -- focus fix in login dialog -- Improve desc table to show primary key -- fix to stop spooled lines being appended to each other. -- Improve tab completion for update -- NullPointerException fix when not running from jar. - FUTURE - Improve desc table (to show references, etc) - Improve tab completion for update, delete and alter table queries |
|
From: SVN by r. <sv...@ca...> - 2007-10-08 13:47:16
|
Author: rotman
Date: 2007-10-08 15:46:58 +0200 (Mon, 08 Oct 2007)
New Revision: 167
Modified:
makejars.sh
sqlshell
Log:
Use sane defaults
Modified: makejars.sh
===================================================================
--- makejars.sh 2007-10-08 12:16:13 UTC (rev 166)
+++ makejars.sh 2007-10-08 13:46:58 UTC (rev 167)
@@ -1,18 +1,23 @@
#!/bin/bash
+PROJECT=sqlshell
VERSION=0.2
+
+#cleanup
rm -Rf release
mkdir release
cd release
+
#create source files
mkdir source
cp -Rf ../src source
cp ../pom.xml source
cp ../README source
-cp ../sqlshell source
+cp ../${PROJECT} source
cd source
-rm -Rf `find . -name *.svn`
-tar zcf ../sqlshell-src-$VERSION.tgz .
-zip -r ../sqlshell-src-$VERSION.zip .
+rm -Rf src/www
+find . -name "*.svn" | xargs rm -Rf
+tar zcf ../${PROJECT}-src-${VERSION}.tgz .
+zip -r ../${PROJECT}-src-${VERSION}.zip .
cd ..
rm -Rf source
@@ -21,19 +26,23 @@
mvn clean package
cd release
mkdir bin
-cp ../sqlshell bin
+cp ../${PROJECT} bin
cp ../README bin
cp ../src/main/resources/db.properties bin
-cp ../target/*.jar bin/sqlclient.jar
+cp ../target/*.jar bin/${PROJECT}.jar
cp -Rf ../lib bin
cp -Rf ${HOME}/.m2/repository/hsqldb/hsqldb/1.8.0/hsqldb-1.8.0.jar bin/lib
mkdir bin/db
cp -Rf ../db/*.script bin/db
cp -Rf ../db/*.properties bin/db
cd bin
-rm -Rf `find . -name *.svn`
-tar zcf ../sqlshell-bin-$VERSION.tgz .
-zip -r ../sqlshell-bin-$VERSION.zip .
+find . -name "*.svn" | xargs rm -Rf
+mv sqlshell _sqlshell
+cat _sqlshell | awk '{ gsub("SQLSHELL=","#SQLSHELL="); gsub("##SQLSHELL=","SQLSHELL="); print }' > sqlshell
+chmod +x sqlshell
+rm _sqlshell
+tar zcf ../${PROJECT}-bin-${VERSION}.tgz .
+zip -r ../${PROJECT}-bin-${VERSION}.zip .
cd ..
rm -Rf bin
cd ..
Modified: sqlshell
===================================================================
--- sqlshell 2007-10-08 12:16:13 UTC (rev 166)
+++ sqlshell 2007-10-08 13:46:58 UTC (rev 167)
@@ -15,28 +15,22 @@
# limitations under the License.
# Path to java executable
+#JAVA=$(which java)
JAVA=${JAVA_HOME}/bin/java
-#JAVA=`which java`
# Dir to use as base for relative locations
-#WORKINGDIR=`pwd`
-WORKINGDIR=`pwd`
+WORKINGDIR=$(pwd)
# The directory where the JCurses jar and library are located.
# Please note that JCurses requires tje jcurses.jar and libjcurses.so to
# be located in the same directory.
-#JCURSES=${WORKINGDIR}/lib/
JCURSES=${WORKINGDIR}/lib
# Where to find the SQLShell classes
-#SQLSHELL=${WORKINGDIR}/sqlclient-0.1-SNAPSHOT.jar
-#SQLSHELL=target/classes
-SQLSHELL=sqlclient.jar
+#SQLSHELL=${WORKINGDIR}/sqlshell.jar
+SQLSHELL=target/classes
# Jars providing drivers for the databases to support.
-#DRIVERS="${HOME}/.m2/repository/hsqldb/hsqldb/1.8.0/hsqldb-1.8.0.jar
-#${HOME}/.m2/repository/db/oracle/1.4/oracle-1.4.jar"
-
DRIVERS="${WORKINGDIR}/lib/hsqldb-1.8.0.jar"
# The classpath to use when running
|
|
From: SVN by r. <sv...@ca...> - 2007-10-08 14:12:10
|
Author: rotman Date: 2007-10-08 16:12:12 +0200 (Mon, 08 Oct 2007) New Revision: 168 Modified: / Log: Ignore target dir Property changes on: ___________________________________________________________________ Name: svn:ignore + target |
|
From: SVN by r. <sv...@ca...> - 2007-10-08 14:34:37
|
Author: rotman
Date: 2007-10-08 16:34:39 +0200 (Mon, 08 Oct 2007)
New Revision: 169
Modified:
makejars.sh
sqlshell
Log:
Make sure that the 'bin' jar has a script that let's a user run and connect without having to modify the script
Modified: makejars.sh
===================================================================
--- makejars.sh 2007-10-08 14:12:12 UTC (rev 168)
+++ makejars.sh 2007-10-08 14:34:39 UTC (rev 169)
@@ -38,7 +38,7 @@
cd bin
find . -name "*.svn" | xargs rm -Rf
mv sqlshell _sqlshell
-cat _sqlshell | awk '{ gsub("SQLSHELL=","#SQLSHELL="); gsub("##SQLSHELL=","SQLSHELL="); print }' > sqlshell
+cat _sqlshell | awk '{ gsub("SQLSHELL=target/classes","#SQLSHELL=target/classes"); gsub("#SQLSHELL=\${WORKINGDIR}:\${WORKINGDIR}/sqlshell.jar","SQLSHELL=${WORKINGDIR}:${WORKINGDIR}/sqlshell.jar"); print }' > sqlshell
chmod +x sqlshell
rm _sqlshell
tar zcf ../${PROJECT}-bin-${VERSION}.tgz .
Modified: sqlshell
===================================================================
--- sqlshell 2007-10-08 14:12:12 UTC (rev 168)
+++ sqlshell 2007-10-08 14:34:39 UTC (rev 169)
@@ -27,7 +27,7 @@
JCURSES=${WORKINGDIR}/lib
# Where to find the SQLShell classes
-#SQLSHELL=${WORKINGDIR}/sqlshell.jar
+#SQLSHELL=${WORKINGDIR}:${WORKINGDIR}/sqlshell.jar
SQLSHELL=target/classes
# Jars providing drivers for the databases to support.
|
|
From: SVN by r. <sv...@ca...> - 2007-10-08 14:39:13
|
Author: rotman
Date: 2007-10-08 16:39:14 +0200 (Mon, 08 Oct 2007)
New Revision: 170
Modified:
makejars.sh
Log:
include ChangeLog in release archives
Modified: makejars.sh
===================================================================
--- makejars.sh 2007-10-08 14:34:39 UTC (rev 169)
+++ makejars.sh 2007-10-08 14:39:14 UTC (rev 170)
@@ -12,6 +12,7 @@
cp -Rf ../src source
cp ../pom.xml source
cp ../README source
+cp ../ChangeLog source
cp ../${PROJECT} source
cd source
rm -Rf src/www
@@ -28,6 +29,7 @@
mkdir bin
cp ../${PROJECT} bin
cp ../README bin
+cp ../ChangeLog bin
cp ../src/main/resources/db.properties bin
cp ../target/*.jar bin/${PROJECT}.jar
cp -Rf ../lib bin
|
|
From: SVN by r. <sv...@ca...> - 2007-10-08 15:18:40
|
Author: rotman
Date: 2007-10-08 17:18:39 +0200 (Mon, 08 Oct 2007)
New Revision: 171
Modified:
sqlshell
Log:
Allow commandline argument and pass that as connection string
Modified: sqlshell
===================================================================
--- sqlshell 2007-10-08 14:39:14 UTC (rev 170)
+++ sqlshell 2007-10-08 15:18:39 UTC (rev 171)
@@ -39,4 +39,4 @@
CP=${CP}:${DRIVER}
done
-${JAVA} -cp ${CP} nl.improved.sqlclient.SQLShell
+${JAVA} -cp ${CP} nl.improved.sqlclient.SQLShell $@
|
|
From: SVN by r. <sv...@ca...> - 2007-10-08 15:31:36
|
Author: rotman Date: 2007-10-08 17:31:38 +0200 (Mon, 08 Oct 2007) New Revision: 173 Modified: README Log: Implemented a feature request Modified: README =================================================================== --- README 2007-10-08 15:29:40 UTC (rev 172) +++ README 2007-10-08 15:31:38 UTC (rev 173) @@ -29,7 +29,6 @@ - Highlight the commands to make a distinction between the output and the commands - Remember commands over sessions - Make it possible to export/import data via xml (I think there is even an xml standard for this) -- Make it possible to open a connection using command line parameters instead of typing 'connect' - Add config possibility to config: -- command history size -- screen history size |
|
From: SVN by r. <sv...@ca...> - 2007-10-08 15:31:53
|
Author: rotman Date: 2007-10-08 17:31:56 +0200 (Mon, 08 Oct 2007) New Revision: 174 Modified: ChangeLog Log: implemented direct connect Modified: ChangeLog =================================================================== --- ChangeLog 2007-10-08 15:31:38 UTC (rev 173) +++ ChangeLog 2007-10-08 15:31:56 UTC (rev 174) @@ -7,6 +7,7 @@ * Quit with ^D (on empty commandline) * Added tab completion for DESC command * BUGFIX: fix tab completion when a "keyword" was found as part of a name. + * Added possiblity to start SQLShell in a connected state by providing the connectionstring as commandline argument 0.2 (17-09-2007) * Search in history (for example by entering '/query' to make the current command the last command with query in it) |
|
From: SVN by r. <sv...@ca...> - 2007-10-09 08:31:14
|
Author: rotman
Date: 2007-10-09 10:30:05 +0200 (Tue, 09 Oct 2007)
New Revision: 176
Modified:
ChangeLog
Log:
Set a date for the 0.1
Modified: ChangeLog
===================================================================
--- ChangeLog 2007-10-08 15:43:13 UTC (rev 175)
+++ ChangeLog 2007-10-09 08:30:05 UTC (rev 176)
@@ -30,7 +30,7 @@
* Improve desc table to show not null
* scroll all the way down when key typed that is not pageup/down
-0.1
+0.1 (01-08-2007)
* connection settings via db.properties and input of password in a seperate dialog
configuration can be done by editing a simple db.properties file
* command history (key up/down)
|
|
From: SVN by r. <sv...@ca...> - 2007-10-09 08:32:17
|
Author: rotman Date: 2007-10-09 10:31:13 +0200 (Tue, 09 Oct 2007) New Revision: 177 Modified: pom.xml Log: Set 0.3 final version; Remove hsqldb dependency, Fix Classpath Modified: pom.xml =================================================================== --- pom.xml 2007-10-09 08:30:05 UTC (rev 176) +++ pom.xml 2007-10-09 08:31:13 UTC (rev 177) @@ -19,9 +19,9 @@ <groupId>nl.improved</groupId> <artifactId>sqlshell</artifactId> <packaging>jar</packaging> - <version>0.3-SNAPSHOT</version> - <name>Improved SQLShell</name> - <!--url>http://maven.apache.org</url--> + <version>0.3</version> + <name>SQLShell ~ the improved sqlclient</name> + <url>http://sqlshell.sourceforge.org</url> <build> <defaultGoal>compile</defaultGoal> <plugins> @@ -41,11 +41,6 @@ <version>0.9.5</version> </dependency> <dependency> - <groupId>hsqldb</groupId> - <artifactId>hsqldb</artifactId> - <version>1.8.0.7</version> - </dependency> - <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> |
|
From: SVN by r. <sv...@ca...> - 2007-10-09 08:32:53
|
Author: rotman
Date: 2007-10-09 10:31:46 +0200 (Tue, 09 Oct 2007)
New Revision: 178
Modified:
makejars.sh
Log:
Classpath was fixed, so that affects our awk line
Modified: makejars.sh
===================================================================
--- makejars.sh 2007-10-09 08:31:13 UTC (rev 177)
+++ makejars.sh 2007-10-09 08:31:46 UTC (rev 178)
@@ -1,6 +1,6 @@
#!/bin/bash
PROJECT=sqlshell
-VERSION=0.2
+VERSION=0.3
#cleanup
rm -Rf release
@@ -40,7 +40,7 @@
cd bin
find . -name "*.svn" | xargs rm -Rf
mv sqlshell _sqlshell
-cat _sqlshell | awk '{ gsub("SQLSHELL=target/classes","#SQLSHELL=target/classes"); gsub("#SQLSHELL=\${WORKINGDIR}:\${WORKINGDIR}/sqlshell.jar","SQLSHELL=${WORKINGDIR}:${WORKINGDIR}/sqlshell.jar"); print }' > sqlshell
+cat _sqlshell | awk '{ gsub("SQLSHELL=target/classes","#SQLSHELL=target/classes"); gsub("#SQLSHELL=\${WORKINGDIR}/sqlshell.jar","SQLSHELL=${WORKINGDIR}/sqlshell.jar"); print }' > sqlshell
chmod +x sqlshell
rm _sqlshell
tar zcf ../${PROJECT}-bin-${VERSION}.tgz .
|
|
From: SVN by r. <sv...@ca...> - 2007-10-09 08:33:21
|
Author: rotman
Date: 2007-10-09 10:32:18 +0200 (Tue, 09 Oct 2007)
New Revision: 179
Modified:
sqlshell
Log:
this is where the classpath was fixed (not in the pom... duh)
Modified: sqlshell
===================================================================
--- sqlshell 2007-10-09 08:31:46 UTC (rev 178)
+++ sqlshell 2007-10-09 08:32:18 UTC (rev 179)
@@ -27,14 +27,14 @@
JCURSES=${WORKINGDIR}/lib
# Where to find the SQLShell classes
-#SQLSHELL=${WORKINGDIR}:${WORKINGDIR}/sqlshell.jar
+#SQLSHELL=${WORKINGDIR}/sqlshell.jar
SQLSHELL=target/classes
# Jars providing drivers for the databases to support.
DRIVERS="${WORKINGDIR}/lib/hsqldb-1.8.0.jar"
# The classpath to use when running
-CP=${SQLSHELL}:${JCURSES}/jcurses.jar
+CP=${WORKINGDIR}:${SQLSHELL}:${JCURSES}/jcurses.jar
for DRIVER in ${DRIVERS} ; do
CP=${CP}:${DRIVER}
done
|
|
From: SVN by r. <sv...@ca...> - 2007-10-09 09:17:33
|
Author: rotman Date: 2007-10-09 11:16:28 +0200 (Tue, 09 Oct 2007) New Revision: 181 Modified: ChangeLog Log: Set a release date on the 0.3 release Modified: ChangeLog =================================================================== --- ChangeLog 2007-10-09 08:32:47 UTC (rev 180) +++ ChangeLog 2007-10-09 09:16:28 UTC (rev 181) @@ -1,4 +1,4 @@ -0.3 (Unreleased) +0.3 (09-10-2007) * focus fix in login dialog * Improve desc table to show primary key * BUGFIX: fix to stop spooled lines being appended to each other. |
|
From: SVN by r. <sv...@ca...> - 2007-10-09 09:33:45
|
Author: rotman Date: 2007-10-09 11:32:41 +0200 (Tue, 09 Oct 2007) New Revision: 182 Modified: pom.xml Log: Ensure that future commits won't be accidentally committed into 0.3 version ;) Modified: pom.xml =================================================================== --- pom.xml 2007-10-09 09:16:28 UTC (rev 181) +++ pom.xml 2007-10-09 09:32:41 UTC (rev 182) @@ -19,7 +19,7 @@ <groupId>nl.improved</groupId> <artifactId>sqlshell</artifactId> <packaging>jar</packaging> - <version>0.3</version> + <version>0.4-SNAPSHOT</version> <name>SQLShell ~ the improved sqlclient</name> <url>http://sqlshell.sourceforge.org</url> <build> |
|
From: SVN by r. <sv...@ca...> - 2007-11-07 11:53:21
|
Author: roy
Date: 2007-11-07 12:50:18 +0100 (Wed, 07 Nov 2007)
New Revision: 198
Modified:
ChangeLog
Log:
mention changes
Modified: ChangeLog
===================================================================
--- ChangeLog 2007-11-07 11:50:04 UTC (rev 197)
+++ ChangeLog 2007-11-07 11:50:18 UTC (rev 198)
@@ -4,6 +4,8 @@
* desc
* execute batch command
* show
+ * allow enter in pwd field to 'ok' data
+ TODO: flush pwd when username manually set and doesn't match default username
0.3 (09-10-2007)
* focus fix in login dialog
* Improve desc table to show primary key
|
|
From: SVN by r. <sv...@ca...> - 2007-12-02 12:52:18
|
Author: roy
Date: 2007-12-02 13:49:15 +0100 (Sun, 02 Dec 2007)
New Revision: 202
Modified:
pom.xml
Log:
change pom so you don't have to manually install jcurses
Modified: pom.xml
===================================================================
--- pom.xml 2007-12-02 12:43:35 UTC (rev 201)
+++ pom.xml 2007-12-02 12:49:15 UTC (rev 202)
@@ -39,6 +39,8 @@
<groupId>net.sf.jcurses</groupId>
<artifactId>jcurses</artifactId>
<version>0.9.5</version>
+ <scope>system</scope>
+ <systemPath>${basedir}/lib/jcurses.jar</systemPath>
</dependency>
<dependency>
<groupId>junit</groupId>
|
|
From: SVN by r. <sv...@ca...> - 2008-01-12 11:22:49
|
Author: roy
Date: 2008-01-12 12:05:55 +0100 (Sat, 12 Jan 2008)
New Revision: 210
Modified:
ChangeLog
Log:
mention changes
Modified: ChangeLog
===================================================================
--- ChangeLog 2008-01-12 10:58:07 UTC (rev 209)
+++ ChangeLog 2008-01-12 11:05:55 UTC (rev 210)
@@ -4,6 +4,8 @@
* desc
* execute batch command
* show
+ * group by
+ * order by
* allow enter in pwd field to 'ok' data
TODO: flush pwd when username manually set and doesn't match default username
0.3 (09-10-2007)
|
|
From: SVN by r. <sv...@ca...> - 2008-01-12 11:25:00
|
Author: roy Date: 2008-01-12 12:08:05 +0100 (Sat, 12 Jan 2008) New Revision: 211 Modified: README Log: mention new feature requests Modified: README =================================================================== --- README 2008-01-12 11:05:55 UTC (rev 210) +++ README 2008-01-12 11:08:05 UTC (rev 211) @@ -24,6 +24,8 @@ [See ChangeLog] FUTURE +- add 'show tables like' support +- login schreen improvements (select all text on focus) - Improve desc table (to show references, etc) - Improve tab completion for update, delete and alter table queries - Highlight the commands to make a distinction between the output and the commands |
|
From: SVN by r. <sv...@ca...> - 2008-01-12 19:48:42
|
Author: roy
Date: 2008-01-12 20:08:46 +0100 (Sat, 12 Jan 2008)
New Revision: 214
Modified:
ChangeLog
Log:
mention change
Modified: ChangeLog
===================================================================
--- ChangeLog 2008-01-12 19:05:47 UTC (rev 213)
+++ ChangeLog 2008-01-12 19:08:46 UTC (rev 214)
@@ -1,4 +1,5 @@
0.4
+ * Fix display of time in date column (at least for oracle)
* Improve tab comnpletion
* Added tabcompletion for:
* desc
|