├── .github ├── dependabot.yml └── workflows │ ├── check-workflows.yml │ ├── test-settings │ ├── atlocal │ ├── cobol_runner.sh │ └── embed_db_info.sh │ └── test.yml ├── .gitignore ├── .gitpod.yml ├── AUTHORS ├── COPYING ├── COPYING.DOC ├── COPYING.LESSER ├── ChangeLog ├── INSTALL ├── Makefile.am ├── Makefile.in ├── NEWS ├── README ├── README_JPN ├── TODO ├── autogen.sh ├── config.h.in ├── configure ├── configure.ac ├── copy ├── ChangeLog ├── Makefile.am ├── Makefile.in └── sqlca.cbl ├── dblib ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── ocdb.c ├── ocdb.h ├── ocdblog.c ├── ocdblog.h ├── ocdbutil.c ├── ocdbutil.h ├── ocesql.c ├── ocesql.h ├── ocpgsql.c └── ocpgsql.h ├── libtool ├── ocesql ├── ChangeLog ├── Makefile.am ├── Makefile.in ├── define.h ├── errorfile.c ├── errorfile.h ├── ocesql.c ├── ocesql.h ├── ocesqlutil.c ├── ocesqlutil.h ├── parser.y ├── ppout.c └── scanner.l ├── sample ├── ChangeLog ├── FETCHTBL.cbl ├── INSERTTBL.cbl ├── Makefile.am └── Makefile.in ├── tests ├── .gitignore ├── Dockerfile ├── Makefile ├── README.md ├── atlocal ├── basic ├── basic.at ├── basic.src │ ├── commit-rollback.at │ ├── connect-disconnect.at │ ├── declare.at │ ├── delete.at │ ├── fetch.at │ ├── include.at │ ├── insert.at │ ├── open-close.at │ ├── sample.at │ ├── select.at │ ├── sqlca.cbl │ └── update.at ├── cobol_data ├── cobol_data.at ├── cobol_data.src │ ├── alphanumeric.at │ ├── comp5.at │ ├── japanese.at │ ├── numeric_signed_trailing_v.at │ ├── numeric_signed_v.at │ ├── numeric_v.at │ └── varying.at ├── embed_db_info.sh ├── embed_db_info_docker.sh ├── generate_testcase_sql_type.py ├── misc ├── misc.at ├── misc.src │ ├── compile.at │ ├── empty-string.at │ └── quiet.at ├── package.m4 ├── sql_data ├── sql_data.at ├── sql_data.src │ └── sql_type.at ├── sqlca ├── sqlca.at ├── sqlca.cbl └── sqlca.src │ ├── connect-disconnect.at │ ├── insert-select-update-delete.at │ ├── open-fetch-close.at │ └── prepare-execute.at └── win32 ├── libocesql ├── libocesql.vcxproj └── libocesql.vcxproj.filters ├── ocesql.sln └── ocesql ├── ocesql.vcxproj └── ocesql.vcxproj.filters /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/check-workflows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/.github/workflows/check-workflows.yml -------------------------------------------------------------------------------- /.github/workflows/test-settings/atlocal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/.github/workflows/test-settings/atlocal -------------------------------------------------------------------------------- /.github/workflows/test-settings/cobol_runner.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/.github/workflows/test-settings/cobol_runner.sh -------------------------------------------------------------------------------- /.github/workflows/test-settings/embed_db_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/.github/workflows/test-settings/embed_db_info.sh -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/.gitpod.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/COPYING -------------------------------------------------------------------------------- /COPYING.DOC: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/COPYING.DOC -------------------------------------------------------------------------------- /COPYING.LESSER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/COPYING.LESSER -------------------------------------------------------------------------------- /ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ChangeLog -------------------------------------------------------------------------------- /INSTALL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/INSTALL -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/Makefile.am -------------------------------------------------------------------------------- /Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/Makefile.in -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/NEWS -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/README -------------------------------------------------------------------------------- /README_JPN: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/README_JPN -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/TODO -------------------------------------------------------------------------------- /autogen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/autogen.sh -------------------------------------------------------------------------------- /config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/config.h.in -------------------------------------------------------------------------------- /configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/configure -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/configure.ac -------------------------------------------------------------------------------- /copy/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/copy/ChangeLog -------------------------------------------------------------------------------- /copy/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/copy/Makefile.am -------------------------------------------------------------------------------- /copy/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/copy/Makefile.in -------------------------------------------------------------------------------- /copy/sqlca.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/copy/sqlca.cbl -------------------------------------------------------------------------------- /dblib/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ChangeLog -------------------------------------------------------------------------------- /dblib/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/Makefile.am -------------------------------------------------------------------------------- /dblib/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/Makefile.in -------------------------------------------------------------------------------- /dblib/ocdb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocdb.c -------------------------------------------------------------------------------- /dblib/ocdb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocdb.h -------------------------------------------------------------------------------- /dblib/ocdblog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocdblog.c -------------------------------------------------------------------------------- /dblib/ocdblog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocdblog.h -------------------------------------------------------------------------------- /dblib/ocdbutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocdbutil.c -------------------------------------------------------------------------------- /dblib/ocdbutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocdbutil.h -------------------------------------------------------------------------------- /dblib/ocesql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocesql.c -------------------------------------------------------------------------------- /dblib/ocesql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocesql.h -------------------------------------------------------------------------------- /dblib/ocpgsql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocpgsql.c -------------------------------------------------------------------------------- /dblib/ocpgsql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/dblib/ocpgsql.h -------------------------------------------------------------------------------- /libtool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/libtool -------------------------------------------------------------------------------- /ocesql/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/ChangeLog -------------------------------------------------------------------------------- /ocesql/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/Makefile.am -------------------------------------------------------------------------------- /ocesql/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/Makefile.in -------------------------------------------------------------------------------- /ocesql/define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/define.h -------------------------------------------------------------------------------- /ocesql/errorfile.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/errorfile.c -------------------------------------------------------------------------------- /ocesql/errorfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/errorfile.h -------------------------------------------------------------------------------- /ocesql/ocesql.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/ocesql.c -------------------------------------------------------------------------------- /ocesql/ocesql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/ocesql.h -------------------------------------------------------------------------------- /ocesql/ocesqlutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/ocesqlutil.c -------------------------------------------------------------------------------- /ocesql/ocesqlutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/ocesqlutil.h -------------------------------------------------------------------------------- /ocesql/parser.y: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/parser.y -------------------------------------------------------------------------------- /ocesql/ppout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/ppout.c -------------------------------------------------------------------------------- /ocesql/scanner.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/ocesql/scanner.l -------------------------------------------------------------------------------- /sample/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/sample/ChangeLog -------------------------------------------------------------------------------- /sample/FETCHTBL.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/sample/FETCHTBL.cbl -------------------------------------------------------------------------------- /sample/INSERTTBL.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/sample/INSERTTBL.cbl -------------------------------------------------------------------------------- /sample/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/sample/Makefile.am -------------------------------------------------------------------------------- /sample/Makefile.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/sample/Makefile.in -------------------------------------------------------------------------------- /tests/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/.gitignore -------------------------------------------------------------------------------- /tests/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/Dockerfile -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/atlocal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/atlocal -------------------------------------------------------------------------------- /tests/basic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic -------------------------------------------------------------------------------- /tests/basic.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.at -------------------------------------------------------------------------------- /tests/basic.src/commit-rollback.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/commit-rollback.at -------------------------------------------------------------------------------- /tests/basic.src/connect-disconnect.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/connect-disconnect.at -------------------------------------------------------------------------------- /tests/basic.src/declare.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/declare.at -------------------------------------------------------------------------------- /tests/basic.src/delete.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/delete.at -------------------------------------------------------------------------------- /tests/basic.src/fetch.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/fetch.at -------------------------------------------------------------------------------- /tests/basic.src/include.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/include.at -------------------------------------------------------------------------------- /tests/basic.src/insert.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/insert.at -------------------------------------------------------------------------------- /tests/basic.src/open-close.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/open-close.at -------------------------------------------------------------------------------- /tests/basic.src/sample.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/sample.at -------------------------------------------------------------------------------- /tests/basic.src/select.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/select.at -------------------------------------------------------------------------------- /tests/basic.src/sqlca.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/sqlca.cbl -------------------------------------------------------------------------------- /tests/basic.src/update.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/basic.src/update.at -------------------------------------------------------------------------------- /tests/cobol_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/cobol_data -------------------------------------------------------------------------------- /tests/cobol_data.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/cobol_data.at -------------------------------------------------------------------------------- /tests/cobol_data.src/alphanumeric.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/cobol_data.src/alphanumeric.at -------------------------------------------------------------------------------- /tests/cobol_data.src/comp5.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/cobol_data.src/comp5.at -------------------------------------------------------------------------------- /tests/cobol_data.src/japanese.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/cobol_data.src/japanese.at -------------------------------------------------------------------------------- /tests/cobol_data.src/numeric_signed_trailing_v.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/cobol_data.src/numeric_signed_trailing_v.at -------------------------------------------------------------------------------- /tests/cobol_data.src/numeric_signed_v.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/cobol_data.src/numeric_signed_v.at -------------------------------------------------------------------------------- /tests/cobol_data.src/numeric_v.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/cobol_data.src/numeric_v.at -------------------------------------------------------------------------------- /tests/cobol_data.src/varying.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/cobol_data.src/varying.at -------------------------------------------------------------------------------- /tests/embed_db_info.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/embed_db_info.sh -------------------------------------------------------------------------------- /tests/embed_db_info_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/embed_db_info_docker.sh -------------------------------------------------------------------------------- /tests/generate_testcase_sql_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/generate_testcase_sql_type.py -------------------------------------------------------------------------------- /tests/misc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/misc -------------------------------------------------------------------------------- /tests/misc.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/misc.at -------------------------------------------------------------------------------- /tests/misc.src/compile.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/misc.src/compile.at -------------------------------------------------------------------------------- /tests/misc.src/empty-string.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/misc.src/empty-string.at -------------------------------------------------------------------------------- /tests/misc.src/quiet.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/misc.src/quiet.at -------------------------------------------------------------------------------- /tests/package.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/package.m4 -------------------------------------------------------------------------------- /tests/sql_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sql_data -------------------------------------------------------------------------------- /tests/sql_data.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sql_data.at -------------------------------------------------------------------------------- /tests/sql_data.src/sql_type.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sql_data.src/sql_type.at -------------------------------------------------------------------------------- /tests/sqlca: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sqlca -------------------------------------------------------------------------------- /tests/sqlca.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sqlca.at -------------------------------------------------------------------------------- /tests/sqlca.cbl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sqlca.cbl -------------------------------------------------------------------------------- /tests/sqlca.src/connect-disconnect.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sqlca.src/connect-disconnect.at -------------------------------------------------------------------------------- /tests/sqlca.src/insert-select-update-delete.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sqlca.src/insert-select-update-delete.at -------------------------------------------------------------------------------- /tests/sqlca.src/open-fetch-close.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sqlca.src/open-fetch-close.at -------------------------------------------------------------------------------- /tests/sqlca.src/prepare-execute.at: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/tests/sqlca.src/prepare-execute.at -------------------------------------------------------------------------------- /win32/libocesql/libocesql.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/win32/libocesql/libocesql.vcxproj -------------------------------------------------------------------------------- /win32/libocesql/libocesql.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/win32/libocesql/libocesql.vcxproj.filters -------------------------------------------------------------------------------- /win32/ocesql.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/win32/ocesql.sln -------------------------------------------------------------------------------- /win32/ocesql/ocesql.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/win32/ocesql/ocesql.vcxproj -------------------------------------------------------------------------------- /win32/ocesql/ocesql.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/opensourcecobol/Open-COBOL-ESQL/HEAD/win32/ocesql/ocesql.vcxproj.filters --------------------------------------------------------------------------------