Skip to content

Commit

Permalink
chore: add missing header path, revert inadvertent db server address …
Browse files Browse the repository at this point in the history
…dev change
  • Loading branch information
aleks-f committed Nov 2, 2023
1 parent 596bd0e commit 73e191f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion .vscode/c_cpp_properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"${POCO_BASE}/Redis/include",
"${POCO_BASE}/MongoDB/include",
"${POCO_BASE}/ApacheConnector/include",
"${POCO_BASE}/Data/src"
"${POCO_BASE}/Data/src",
"${POCO_BASE}/Data/testsuite/include"
]
},
"configurations": [
Expand Down
6 changes: 3 additions & 3 deletions Data/ODBC/testsuite/src/ODBCTest.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
#include "SQLExecutor.h"


#define POCO_ODBC_TEST_DATABASE_SERVER "10.211.55.5"//"localhost"
#define POCO_ODBC_TEST_DATABASE_SERVER "localhost"


class ODBCTest: public CppUnit::TestCase
Expand Down Expand Up @@ -236,8 +236,8 @@ inline void ODBCTest::testTempTable()
throw Poco::NotImplementedException("ODBCTest::testTempTable()");
}

inline void ODBCTest::testStoredProcedure()
{
inline void ODBCTest::testStoredProcedure()
{
throw Poco::NotImplementedException("ODBCTest::testStoredProcedure()");
}

Expand Down

0 comments on commit 73e191f

Please sign in to comment.