diff --git a/.eslintrc.js b/.eslintrc.js old mode 100755 new mode 100644 diff --git a/.gitignore b/.gitignore old mode 100755 new mode 100644 diff --git a/LICENSE b/LICENSE old mode 100755 new mode 100644 diff --git a/README.md b/README.md old mode 100755 new mode 100644 diff --git a/binding.gyp b/binding.gyp old mode 100755 new mode 100644 diff --git a/lib/Connection.js b/lib/Connection.js old mode 100755 new mode 100644 diff --git a/lib/Pool.js b/lib/Pool.js old mode 100755 new mode 100644 diff --git a/lib/Statement.js b/lib/Statement.js old mode 100755 new mode 100644 diff --git a/lib/odbc.js b/lib/odbc.js old mode 100755 new mode 100644 index 6caa8c0..693193e --- a/lib/odbc.js +++ b/lib/odbc.js @@ -1,9 +1,7 @@ const { Connection } = require('./Connection'); const { Pool } = require('./Pool'); -const legacy = require('./legacy/legacy'); // v1.x behavior module.exports = { Pool, Connection, - legacy, }; diff --git a/package-lock.json b/package-lock.json old mode 100755 new mode 100644 diff --git a/package.json b/package.json old mode 100755 new mode 100644 diff --git a/src/dynodbc.cpp b/src/dynodbc.cpp old mode 100755 new mode 100644 diff --git a/src/dynodbc.h b/src/dynodbc.h old mode 100755 new mode 100644 diff --git a/src/odbc.cpp b/src/odbc.cpp old mode 100755 new mode 100644 diff --git a/src/odbc.h b/src/odbc.h old mode 100755 new mode 100644 diff --git a/src/odbc_connection.cpp b/src/odbc_connection.cpp old mode 100755 new mode 100644 diff --git a/src/odbc_connection.h b/src/odbc_connection.h old mode 100755 new mode 100644 diff --git a/src/odbc_statement.cpp b/src/odbc_statement.cpp old mode 100755 new mode 100644 diff --git a/src/odbc_statement.h b/src/odbc_statement.h old mode 100755 new mode 100644 diff --git a/src/strptime.c b/src/strptime.c old mode 100755 new mode 100644 diff --git a/src/strptime.h b/src/strptime.h old mode 100755 new mode 100644 diff --git a/test/connection/beginTransaction.js b/test/connection/beginTransaction.js old mode 100755 new mode 100644 diff --git a/test/connection/callProcedure.js b/test/connection/callProcedure.js old mode 100755 new mode 100644 diff --git a/test/connection/close.js b/test/connection/close.js old mode 100755 new mode 100644 diff --git a/test/connection/columns.js b/test/connection/columns.js old mode 100755 new mode 100644 diff --git a/test/connection/commit.js b/test/connection/commit.js old mode 100755 new mode 100644 diff --git a/test/connection/constructor.js b/test/connection/constructor.js old mode 100755 new mode 100644 diff --git a/test/connection/query.js b/test/connection/query.js old mode 100755 new mode 100644 diff --git a/test/connection/rollback.js b/test/connection/rollback.js old mode 100755 new mode 100644 diff --git a/test/connection/tables.js b/test/connection/tables.js old mode 100755 new mode 100644 diff --git a/test/connection/test.js b/test/connection/test.js old mode 100755 new mode 100644 diff --git a/test/pool/constructor.js b/test/pool/constructor.js old mode 100755 new mode 100644 diff --git a/test/pool/test.js b/test/pool/test.js old mode 100755 new mode 100644 diff --git a/test/queries/test.js b/test/queries/test.js old mode 100755 new mode 100644 diff --git a/test/statement/bind.js b/test/statement/bind.js old mode 100755 new mode 100644 diff --git a/test/statement/close.js b/test/statement/close.js old mode 100755 new mode 100644 diff --git a/test/statement/execute.js b/test/statement/execute.js old mode 100755 new mode 100644 diff --git a/test/statement/prepare.js b/test/statement/prepare.js old mode 100755 new mode 100644 diff --git a/test/statement/test.js b/test/statement/test.js old mode 100755 new mode 100644 diff --git a/test/test.js b/test/test.js old mode 100755 new mode 100644