From 0e3024958497f7321c6507643133f3f976f04dd5 Mon Sep 17 00:00:00 2001 From: Mark Irish Date: Tue, 9 Apr 2019 12:06:40 -0500 Subject: [PATCH] Removing executable permissions from all files (local directory error on my part) --- .eslintrc.js | 0 .gitignore | 0 LICENSE | 0 README.md | 0 binding.gyp | 0 lib/Connection.js | 0 lib/Pool.js | 0 lib/Statement.js | 0 lib/odbc.js | 2 -- package-lock.json | 0 package.json | 0 src/dynodbc.cpp | 0 src/dynodbc.h | 0 src/odbc.cpp | 0 src/odbc.h | 0 src/odbc_connection.cpp | 0 src/odbc_connection.h | 0 src/odbc_statement.cpp | 0 src/odbc_statement.h | 0 src/strptime.c | 0 src/strptime.h | 0 test/connection/beginTransaction.js | 0 test/connection/callProcedure.js | 0 test/connection/close.js | 0 test/connection/columns.js | 0 test/connection/commit.js | 0 test/connection/constructor.js | 0 test/connection/query.js | 0 test/connection/rollback.js | 0 test/connection/tables.js | 0 test/connection/test.js | 0 test/pool/constructor.js | 0 test/pool/test.js | 0 test/queries/test.js | 0 test/statement/bind.js | 0 test/statement/close.js | 0 test/statement/execute.js | 0 test/statement/prepare.js | 0 test/statement/test.js | 0 test/test.js | 0 40 files changed, 2 deletions(-) mode change 100755 => 100644 .eslintrc.js mode change 100755 => 100644 .gitignore mode change 100755 => 100644 LICENSE mode change 100755 => 100644 README.md mode change 100755 => 100644 binding.gyp mode change 100755 => 100644 lib/Connection.js mode change 100755 => 100644 lib/Pool.js mode change 100755 => 100644 lib/Statement.js mode change 100755 => 100644 lib/odbc.js mode change 100755 => 100644 package-lock.json mode change 100755 => 100644 package.json mode change 100755 => 100644 src/dynodbc.cpp mode change 100755 => 100644 src/dynodbc.h mode change 100755 => 100644 src/odbc.cpp mode change 100755 => 100644 src/odbc.h mode change 100755 => 100644 src/odbc_connection.cpp mode change 100755 => 100644 src/odbc_connection.h mode change 100755 => 100644 src/odbc_statement.cpp mode change 100755 => 100644 src/odbc_statement.h mode change 100755 => 100644 src/strptime.c mode change 100755 => 100644 src/strptime.h mode change 100755 => 100644 test/connection/beginTransaction.js mode change 100755 => 100644 test/connection/callProcedure.js mode change 100755 => 100644 test/connection/close.js mode change 100755 => 100644 test/connection/columns.js mode change 100755 => 100644 test/connection/commit.js mode change 100755 => 100644 test/connection/constructor.js mode change 100755 => 100644 test/connection/query.js mode change 100755 => 100644 test/connection/rollback.js mode change 100755 => 100644 test/connection/tables.js mode change 100755 => 100644 test/connection/test.js mode change 100755 => 100644 test/pool/constructor.js mode change 100755 => 100644 test/pool/test.js mode change 100755 => 100644 test/queries/test.js mode change 100755 => 100644 test/statement/bind.js mode change 100755 => 100644 test/statement/close.js mode change 100755 => 100644 test/statement/execute.js mode change 100755 => 100644 test/statement/prepare.js mode change 100755 => 100644 test/statement/test.js mode change 100755 => 100644 test/test.js 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