manuel
Posts: 48
|
| Posted: 08/11/2010, 2:46 PM |
|
How can I call a dll to connect to a DDBB..?
I've been assign a project that need to conect to a DDBB trough a dll (the client told me that its like using an API), I've no experience doing this... I use ODBC on all my projects.
Can someone guide me on how to do this, or recommend me a website or tutorial...
|
 |
 |
datadoit
|
| Posted: 08/11/2010, 3:58 PM |
|
You'll typically 'post' to that dll. Not unlike posting to a php or
asp/x page.
method="post" action="http://www.asite.com/api.dll"
When posting to that dll, it could send back information to you (a
response). For that, you'll want to use something like PHP's cURL to
read back those responses.
|
|
|
 |
|