call dll from oracle 6i [message #667968] |
Mon, 29 January 2018 01:49 |
|
Kokew2000
Messages: 12 Registered: December 2017
|
Junior Member |
|
|
hello every body
please i need help to do something
i need to know how i can make dynamic link library(dll) in c programming for example and then call it from oracle 6i
please if anyone have source for (dll) and (fmb) about this help me
thank you very much
|
|
|
Re: call dll from oracle 6i [message #667969 is a reply to message #667968] |
Mon, 29 January 2018 01:53 |
|
Kokew2000
Messages: 12 Registered: December 2017
|
Junior Member |
|
|
PLEASE I NEED HELP CAUSE I DONT WRITE C PROGRAMMING BUT I HAVE CODE FOR C PROGRAMMING
I WANT MAKE DLL BY THIS CODE THEN CALL IT FROM FORMS 6I I THUNK THIS IS WHAT NAMED API
THIS IS A CODE IN C PROGRAMMING
const hasp_feature_t feature = HASP_DEFAULT_FID;
hasp_handle_t handle = HASP_INVALID_HANDLE_VALUE;
hasp_status_t status;
unsigned char vendor_code[] =
"P+bvguFqumejqvwOmvNDruTN3d0v4O5YpN+Q3sDSPPP8EnanCZJP/9P6a3KQvkXtjZTLAUnoZSnzM0d+"
"b8pR0dX+pBD2kDjnZb01HGvclQ50T5sIEEFexVHSckrjNCXckJjYiWBkgqxdzletOke6WQdxdPj/KZK3"
"crgrTMWfYGManxyWsIeXxtrwgrARwPYuhd5o62udILVhl+uADzFmXvRwyRUsAH1P3sfSwnlSHfLpI97x"
"GlKGmxJcUWA38+w5ye7Ta94KNkeGmwC3Ij49SeBere/jd6aC2YBpcCRqGn009T4M0n+68J/Nk3+DrisC"
"3eW+8OYce601w5rJ7Xp6+d6Ue49Rl7aUw2Uajay4e29vyC0qWWwAMhlcrzeD5byudwhNssEmiC2/GIGx"
"r8xO/K0h0/0lBnXGRlOY6EAqrOKIpptLgiZ38mhEI2wt7pl+0w/Y0Q986nFgZ/2S00W3hKuWjNxAVqJN"
"raInir6mONJoE6+S4L/Z0yfHgMF5zl7/+NCcqxRSl8FrFVAERbObwvm0U6LGzQR5p1vHVyYh7wnZoBjf"
"Nv9UYRNpSrpzSUX4IV7WVfPMmLBCVrajSeMAtxN0knY0fixAZshDMoS3X286HFEp4IlCE/zK+2vx/pfh"
"oRsknYfnRSoemWxPqy94g10D3MSu1bCBgIwKUEuYqDiThdAx2il/ZC2zSxGNpdVxWfS6kAxXeZEN3Oe0"
"PB3WaZcx7CRImBusXdBrzPAyKa60/4sCLVJX/VwqNnWbAsGZavjt43BUPTvueMrOixZlWJDJzBR3YMOM"
"+7ENIa1LmA0+jABCxyZN57d1LuS9iYD0PUrr0hEZT67oyDKAIK5yv+8LaLWqMAmiumLXaUKq/ST82utq"
"KCEspcVqjXpueqTVKtdc4oCpndmjGqiz70lmoTgVDBcdsRKiEzly00sN9UY=";
status = hasp_login(feature, vendor_code, &handle);
/* check if operation was successful */
if (status != HASP_STATUS_OK)
{
switch (status)
{
case HASP_FEATURE_NOT_FOUND:
break;
case HASP_HASP_NOT_FOUND:
break;
case HASP_OLD_DRIVER:
break;
case HASP_NO_DRIVER:
break;
case HASP_INV_VCODE:
break;
case HASP_FEATURE_TYPE_NOT_IMPL:
break;
case HASP_TMOF:
break;
case HASP_TS_DETECTED:
break;
default:
break;
}
}
PLEASE NEED SOME HELP
[EDITED by LF: applied [code] tags]
[Updated on: Mon, 29 January 2018 13:37] by Moderator Report message to a moderator
|
|
|
|
|
Re: call dll from oracle 6i [message #668021 is a reply to message #668018] |
Wed, 31 January 2018 04:32 |
John Watson
Messages: 8962 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
If you want help in a hurry, you had better pay for consultancy services. I'm sure there are people here who could do the job for you, just put an advert in the Marketplace forum.
|
|
|
|
|
Re: call dll from oracle 6i [message #668081 is a reply to message #668079] |
Sun, 04 February 2018 07:58 |
John Watson
Messages: 8962 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
For a little job like this, you could place adverts on appropriate bulletin boards (as I already said). Or you could approach companies directly: small ones, the big boys won't look at it.
Given the limited information you have provided, you are unlikely to get a fixed price quote. The company I work for would probably offer a time-and-materials service. You would have to make a formal approach, but my guess is that the response would be US$250 per hour, minimum 2 hours paid in advance. Would the two hours be enough? Perhaps, but no guarantee. If you firm up the requirement you might get fixed price quotes.
Your problem is that no-one is going to spend hours discussing such a small job for free, so you have to take a chance. The more information you provide up front, the better the deal you may be offered.
--
John Watson
Oracle Certified Master DBA
http://skillbuilders.com
|
|
|
|