Skip to content

Commit

Permalink
Initial import from SVN
Browse files Browse the repository at this point in the history
  • Loading branch information
mridoni committed Apr 14, 2022
1 parent 0ddd535 commit 1f1b09a
Show file tree
Hide file tree
Showing 296 changed files with 126,294 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
packages
2 changes: 2 additions & 0 deletions AUTHORS
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.
674 changes: 674 additions & 0 deletions COPYING

Large diffs are not rendered by default.

27 changes: 27 additions & 0 deletions ChangeLog
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.)
1 change: 1 addition & 0 deletions HACKING
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Please read https://github/mridoni/gix
368 changes: 368 additions & 0 deletions INSTALL

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions Makefile.am
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
Loading

0 comments on commit 1f1b09a

Please sign in to comment.