-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
296 changed files
with
126,294 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
packages |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* Copyright (C) 2021 Marco Ridoni | ||
* Copyright (C) 2013 Tokyo System House Co.,Ltd. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
=== v1.0.8 ======================================================= | ||
- GixSQL: changed the connection string format | ||
- GixSQL: added support for multiple connections | ||
- GixSQL: added support for explicit declaration of variable length fields | ||
- GixSQL: added support for driver options | ||
- GixSQL: fixed bugs and improved error handling in the runtime libraries | ||
- GixSQL: fixed bugs and improved error handling in the preprocessor | ||
- GixSQL: added a Linux/autoconf build package | ||
|
||
=== v1.0.7 ======================================================= | ||
- Fixed several bugs in gixpp and in ESQL preprocessing | ||
- Added separate build scripts/solution files for GixSQL | ||
- Improved GixSQL documentation, with a command line example | ||
|
||
=== v1.0.6 ======================================================= | ||
|
||
=== v1.0.5 ======================================================= | ||
|
||
=== v1.0.4 ======================================================= | ||
- Removed Qt dependencies for GixSQL/gixpp, now they are standard C++ | ||
|
||
=== v1.0.3 ======================================================= | ||
- GixSQL debug and error logs are now configurable from the IDE | ||
- Fixed a (fatal) bug in GIXSQLExec/GIXSQLExecParams | ||
- Fixed a bug in the ESQL parser | ||
- Fixed metadata for modules with non-preprocessed COPY files | ||
- Generic clean up of the codebase (eliminated dead code, some refactoring, etc.) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Please read https://github/mridoni/gix |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
## Process this file with automake to generate Makefile.in | ||
ACLOCAL_AMFLAGS = -I m4 | ||
SUBDIRS = libcpputils libgixpp gixpp runtime/libgixsql | ||
EXTRA_DIST = | ||
CLEANFILES = *~ | ||
|
||
if ENABLE_MYSQL | ||
SUBDIRS += runtime/libgixsql-mysql | ||
endif | ||
|
||
if ENABLE_ODBC | ||
SUBDIRS += runtime/libgixsql-odbc | ||
endif | ||
|
||
if ENABLE_PGSQL | ||
SUBDIRS += runtime/libgixsql-pgsql | ||
endif | ||
|
||
pkgconfigdir = $(prefix)/share/gix/copy | ||
pkgconfig_DATA = copy/SQLCA.cpy | ||
|
||
install-exec-hook: | ||
cp misc/gixsql-wrapper $(prefix)/bin/gixsql && \ | ||
chmod 755 $(prefix)/bin/gixsql |
Oops, something went wrong.