I am using Roguewave library to connect to Sybase database from C++. I understand that database object is constructed as:

  RWDBManager::database("accessLib", "", "", "", "", "XA=lrm_name");

http://www2.roguewave.com/support/docs/sourcepro/edition8/html/dbxaug/5-3.html says

All arguments are of type RWCString. Note that establishing an XA connection to the Sybase CT database requires only two of the six database() arguments, as described here:

  accessLib

  The argument for the first parameter is the same as that which you provide for the non-XA connection.

  For static libraries, supply the string "SYBASE_CT".

  For shared libraries, supply the name of your shared access library, for example "libctl420d.so". 

I don't understand:

In the code, I am used to seeing that when we have to use something provided in a library, include headers of that libraries, use classes/functions from this libraries and then while compiling your project use this library in LDLIBRARIES list. Why does the function database here needs the NAME of library? What are the advantages of this approach as against to #include approach.

Is it some standard technique? Usually where is this used? I have worked on projects which used shared libraries and so linking was not done statically, but I haven't encountered such thing.

Thanks,

link|improve this question

They are doing dynamic loading of this shared library using dlopen as per Roguewave database documentation. My next question is why Roguewave chose this design. They could have just dynamically linked this shared library but not dynamically load this as well. – p2pnode Feb 7 '11 at 14:41
edit your question, it is the SO way :) – neuro Feb 7 '11 at 16:15
feedback

1 Answer

up vote 1 down vote accepted

It is probably because they dynamically load the library using it's name and a standard call like dlopen() on POSIX systems. There is an equivalent in windows, I think it is LoadLibrary(). With such a system you are able to load a library and get symbols from it. Very convenient to build plugin systems or things like that. It also allows you to use some performance enhancing libraries only if they are present ...

See here for example ...

my2c

EDIT:

As why they choose this design, besides asking them, you have to guess :)

My guess : easier to maintain DB drivers in a plugin architecture : easier to install, switch between versions, easier to deliver binary patch ...

Another guess : the only way to implement some sort of introspection / reflection.

link|improve this answer
Hi neuro, It is indeed true that the Roguewave database module dynamically loads the given shared library using dlopen, as per the Rogueawave documentation, but then my next question would be why Roguewave chose this design as against to just keeping this as shared library. They could have linked it dynamically but why did they choose to load it dynamically as well? – p2pnode Feb 7 '11 at 14:37
@learnerforever: well I suppose you should ask them ;) I will give some guesses in my edited answer ... – neuro Feb 7 '11 at 16:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.