mirror of
https://github.com/Telecominfraproject/wlan-cloud-lib-poco.git
synced 2025-11-02 19:48:00 +00:00
* Added unit-test for testing support COPY FROM feature of PostgreSQL Test try execute simple usage of COPY FROM with batch of data such as std::vector<int> * Made main logic of feature COPY IN for SQL/PostgreSQL * Added bulk binding for general types. * Added support of bulk bindings for user types. For supporting this feature user needs implement yet another TypeHandler<> for std::vector<T> which contains pointer to SQL::PostgreSQL::Binder in params instead of SQL::Binder. * Added yet another test-case for testing usage COPY IN with user types. Other functionality need implement by developing COPY OUT feature. * Check with a large number of objects * Added tests for complex inserting thru std::list<> and std::deque<> by COPY IN mode * Made feature COPY IN for batches of data like std::list<> and std::deque<> * Changed spaces to tabs and was a little refactoring * Fix new line in for-loops