vrogier / ocilib

OCILIB (C and C++ Drivers for Oracle) - Open source C and C++ library for accessing Oracle databases

Home Page:http://www.ocilib.net

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Object::Set specialized for Collection of Objects

mrfazlali opened this issue · comments

Hi Vincent.

ocilib has different specializations of Object::Set template function . but there is no one that takes an ocilib::Collection of ocilib::Object as parameter among them. neither there is no specialized version of Set function to takes a std::vector of ocilib::Object.
Object::Get function has specialized version for Collection .
I want to have one ocilib::object which one of its member is a Collection of another object. so how can i do that.

Thanks i advance .

Hi,

Default Object::Set() implementation is reserved for collections.
You can see its usage in demo/geometry.cpp

Regards,

vincent

Hi again Vincent.
You are right , I could accomplish that by looking at that demo.
Thanks for your help.