This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/Data/SQLite/src/Utility.cpp b/Data/SQLite/src/Utility.cpp | |
| index 8bf46ee..0cd9039 100644 | |
| --- a/Data/SQLite/src/Utility.cpp | |
| +++ b/Data/SQLite/src/Utility.cpp | |
| @@ -86,7 +86,7 @@ Utility::Utility() | |
| _types.insert(TypeMap::value_type("UINTEGER32", MetaColumn::FDT_UINT32)); | |
| _types.insert(TypeMap::value_type("INT", MetaColumn::FDT_INT32)); | |
| _types.insert(TypeMap::value_type("INT32", MetaColumn::FDT_INT32)); | |
| - _types.insert(TypeMap::value_type("INTEGER", MetaColumn::FDT_INT32)); | |
| + _types.insert(TypeMap::value_type("INTEGER", MetaColumn::FDT_INT64)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <Poco/Net/HTTPRequest.h> | |
| #include <Poco/Net/HTTPResponse.h> | |
| #include <Poco/Net/HTTPClientSession.h> | |
| #include <Poco/StreamCopier.h> | |
| #include <Poco/Net/HTTPCredentials.h> | |
| #include <sstream> | |
| using namespace Poco::Net; | |
| int main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "JSON2XMLConverter.h" | |
| #include <iostream> | |
| JSON2XMLConverter::JSON2XMLConverter(unsigned indent): | |
| _out(std::cout), | |
| _object(false), | |
| _array(false), | |
| _index(0) | |
| { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include "windows.h" | |
| #include "wincrypt.h" | |
| #include "stdio.h" | |
| /* This code example: | |
| 1) creates a Crypto Service Provider | |
| 2) generates keys | |
| 3) extracts public key | |
| 4) exports private key into PEM |
NewerOlder