├── .gitignore ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── client ├── json.d ├── mockcurl.d ├── prestoerrors.d ├── queryresults.d ├── statementclient.d └── util.d ├── connection-parameters.md ├── driver ├── bindings.d ├── columnresults.d ├── driver.d ├── getinfo.d ├── handles.d ├── prestoresults.d ├── process.d ├── tableinfo.d ├── typeinfo.d └── util.d ├── installer └── win │ └── installer.nsi ├── odbc-conformance.md ├── odbc ├── odbcinst.d ├── sql.d ├── sqlext.d ├── sqltypes.d └── sqlucode.d ├── register_driver.reg └── test ├── test.d └── testclient.d /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/README.md -------------------------------------------------------------------------------- /client/json.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/client/json.d -------------------------------------------------------------------------------- /client/mockcurl.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/client/mockcurl.d -------------------------------------------------------------------------------- /client/prestoerrors.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/client/prestoerrors.d -------------------------------------------------------------------------------- /client/queryresults.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/client/queryresults.d -------------------------------------------------------------------------------- /client/statementclient.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/client/statementclient.d -------------------------------------------------------------------------------- /client/util.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/client/util.d -------------------------------------------------------------------------------- /connection-parameters.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/connection-parameters.md -------------------------------------------------------------------------------- /driver/bindings.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/bindings.d -------------------------------------------------------------------------------- /driver/columnresults.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/columnresults.d -------------------------------------------------------------------------------- /driver/driver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/driver.d -------------------------------------------------------------------------------- /driver/getinfo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/getinfo.d -------------------------------------------------------------------------------- /driver/handles.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/handles.d -------------------------------------------------------------------------------- /driver/prestoresults.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/prestoresults.d -------------------------------------------------------------------------------- /driver/process.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/process.d -------------------------------------------------------------------------------- /driver/tableinfo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/tableinfo.d -------------------------------------------------------------------------------- /driver/typeinfo.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/typeinfo.d -------------------------------------------------------------------------------- /driver/util.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/driver/util.d -------------------------------------------------------------------------------- /installer/win/installer.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/installer/win/installer.nsi -------------------------------------------------------------------------------- /odbc-conformance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/odbc-conformance.md -------------------------------------------------------------------------------- /odbc/odbcinst.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/odbc/odbcinst.d -------------------------------------------------------------------------------- /odbc/sql.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/odbc/sql.d -------------------------------------------------------------------------------- /odbc/sqlext.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/odbc/sqlext.d -------------------------------------------------------------------------------- /odbc/sqltypes.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/odbc/sqltypes.d -------------------------------------------------------------------------------- /odbc/sqlucode.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/odbc/sqlucode.d -------------------------------------------------------------------------------- /register_driver.reg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/register_driver.reg -------------------------------------------------------------------------------- /test/test.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/test/test.d -------------------------------------------------------------------------------- /test/testclient.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/presto-odbc/HEAD/test/testclient.d --------------------------------------------------------------------------------