Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
52a154f
Update README.md
vkuchyn Oct 15, 2014
590d26a
Update README.md
dmitrii-shabotin Oct 15, 2014
296cfbd
Merge pull request #2 from dmitry-shabotin/master
vkuchyn Oct 15, 2014
ecbd177
removed dead import
vkuchyn Oct 15, 2014
e84b533
refactored config fields, moved to package
vkuchyn Oct 15, 2014
1d141f6
Added database executor
vkuchyn Oct 15, 2014
3b0dee4
create database connection in main method
vkuchyn Oct 15, 2014
6adcbad
Changed executor interface. Added method
vkuchyn Oct 17, 2014
f8fef6f
Added script to work with github.com
adaleorion Oct 20, 2014
47f9302
Changed link on main repository in script
adaleorion Oct 20, 2014
ba7413a
added history interface, saving query history
vkuchyn Oct 23, 2014
20c281c
removed old class
vkuchyn Oct 27, 2014
9e9afda
added Buffer size constant to interface
vkuchyn Nov 3, 2014
113bc95
implemented interface methods
vkuchyn Nov 3, 2014
a45a523
made project up to date
vkuchyn Nov 6, 2014
e744c13
added jline library with sources
vkuchyn Nov 12, 2014
8ca6d27
Implemented custom console reader
vkuchyn Nov 17, 2014
ecbe5ef
Left, right navigation
vkuchyn Nov 17, 2014
255aa9d
Move end, begin
vkuchyn Nov 18, 2014
71fb23b
extracted codes to constants
vkuchyn Nov 18, 2014
53c896c
Removed demo class from project
vkuchyn Nov 18, 2014
1039f4a
Added JLineDemo to gitignore
vkuchyn Nov 18, 2014
c48b53e
Extracted code constants to class
vkuchyn Nov 19, 2014
e81a19b
Added DI interface
vkuchyn Nov 21, 2014
debdc87
processed exceptions
vkuchyn Nov 19, 2014
610e95f
Dependency injection engine
vkuchyn Nov 21, 2014
67988eb
Templates for homework 7 - parallel executing
vkuchyn Nov 28, 2014
2b655bf
Default methods for application context
vkuchyn Nov 28, 2014
74e2aef
Dependency injection engine
vkuchyn Nov 21, 2014
573fe9b
Added async execution query
vkuchyn Nov 27, 2014
444b304
Added async execution query: fixed problems
vkuchyn Nov 27, 2014
762af38
Outputter
vkuchyn Nov 27, 2014
67e1175
Fixed output problem
vkuchyn Nov 27, 2014
60b072c
Prepared last task
vkuchyn Dec 9, 2014
a37772f
skip asynch implementation
vkuchyn Dec 9, 2014
03aec7e
Dependency injection engine
vkuchyn Nov 21, 2014
a2a4093
Added async execution query
vkuchyn Nov 27, 2014
097b2c4
Added async execution query: fixed problems
vkuchyn Nov 27, 2014
e0e0e1c
Outputter
vkuchyn Nov 27, 2014
1b0ec6f
removed connect to db method
vkuchyn Dec 10, 2014
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ pom.xml
*.iws
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid*
JLineDemo.java
!/lib/*.jar
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
sqlcmd
sqlcmd.
======

SQLCMD – консольний клієнт баз даних.
SQLCMD – Найкращий консольний клієнт баз даних написанний на Java.
Binary file added lib/jline-1.0.jar
Binary file not shown.
Binary file added lib/postgresql-9.3-1102.jdbc41.jar
Binary file not shown.
55 changes: 55 additions & 0 deletions lib/src/src/assembly/assembly.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<assembly>
<id></id>
<formats>
<format>zip</format>
</formats>
<includeBaseDirectory>true</includeBaseDirectory>
<fileSets>
<fileSet>
<includes>
<include>README*</include>
<include>LICENSE*</include>
<include>NOTICE*</include>
</includes>
</fileSet>
<fileSet>
<directory>target</directory>
<outputDirectory></outputDirectory>
<includes>
<include>*.jar</include>
</includes>
</fileSet>
<fileSet>
<directory>licenses</directory>
<outputDirectory>/lib</outputDirectory>
<includes>
<include>*</include>
</includes>
</fileSet>
<fileSet>
<directory>src/test/java/jline/example</directory>
<outputDirectory>/examples/jline/example</outputDirectory>
</fileSet>
<fileSet>
<directory>src/test/resources/jline/example</directory>
<outputDirectory>/examples/jline/example</outputDirectory>
</fileSet>
<fileSet>
<directory>target/site/apidocs</directory>
<outputDirectory>/apidocs</outputDirectory>
</fileSet>

<!-- also include sources -->
<fileSet>
<directory>src</directory>
<outputDirectory>/src/src</outputDirectory>
</fileSet>
<fileSet>
<directory></directory>
<outputDirectory>/src</outputDirectory>
<includes>
<include>pom.xml</include>
</includes>
</fileSet>
</fileSets>
</assembly>
Loading