NO

Author Topic: reanimate a perished fish  (Read 29487 times)

czerny

  • Guest
reanimate a perished fish
« on: March 02, 2013, 10:40:00 AM »
In my opinion there are two shortages in Pelles C, the lack of a good library (such as STL) and the problems using the COM interface.

To the first point read the following article http://www.drdobbs.com/cpp/general-purpose-c-libraries-limited-opti/231000967#,
though there must be more than the three mentioned libraries, I think.

To the second point I will do some research. I am not an expert in COM-programming, so I need your help.

Lets start with a first question: Assuming that I want to use ADO, what is the canonical way to get the corresponding header file?

czerny

Offline Bitbeisser

  • Global Moderator
  • Member
  • *****
  • Posts: 772
Re: reanimate a perished fish
« Reply #1 on: March 02, 2013, 06:43:02 PM »
In my opinion there are two shortages in Pelles C, the lack of a good library (such as STL)
Well, STL is a C++ library and as stated a lot of times in here and in that article you linked yourself to below, C and C++ are two distinct programming languages...
Quote
To the first point read the following article http://www.drdobbs.com/cpp/general-purpose-c-libraries-limited-opti/231000967#,
though there must be more than the three mentioned libraries, I think.
Those libraries mentioned are also nothing (directly) Windows related, they are rather Linux related libraries, with little relevance to Windows programming, and that is the only target environment of Pelle's C.

Ralf


czerny

  • Guest
Re: reanimate a perished fish
« Reply #2 on: March 03, 2013, 10:46:17 AM »
Thank you tater!

There is now a 7 page discussion about the question whether Pelles C is or is not a dead fish.
This does not help at all.

Is there anybody who can contribute?
Who is able to answer my question above?

czerny

JohnF

  • Guest
Re: reanimate a perished fish
« Reply #3 on: March 03, 2013, 12:31:33 PM »

Is there anybody who can contribute?
Who is able to answer my question above?

czerny

To get this header one would normally download the latest M.S. SDK if PellsC does not already have it. Using it however will require a lot of work as it is intended for use with C++.

I have a copy of it if you would like to see it.

John

CommonTater

  • Guest
Re: reanimate a perished fish
« Reply #4 on: March 03, 2013, 04:36:41 PM »

Is there anybody who can contribute?
Who is able to answer my question above?

czerny

To get this header one would normally download the latest M.S. SDK if PellsC does not already have it. Using it however will require a lot of work as it is intended for use with C++.

I have a copy of it if you would like to see it.

John

Actually John, I believe ADO would be part of the MS Office SDK...
Please correct me if I'm wrong...
 
 

CommonTater

  • Guest
Re: reanimate a perished fish
« Reply #5 on: March 03, 2013, 04:38:32 PM »
There is now a 7 page discussion about the question whether Pelles C is or is not a dead fish.
This does not help at all.

Ok... message deleted....

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
Re: reanimate a perished fish
« Reply #6 on: March 03, 2013, 05:21:22 PM »
msado15.h is in MSDACSDK too.
http://en.wikipedia.org/wiki/Microsoft_Data_Access_Components

If you try to create msado15.h from msado15.dll, it may be broken.
In Connection15 this is missing from it:
     /* Connection15 methods */
     STDMETHOD(get_Properties)(THIS,Properties **);
« Last Edit: March 05, 2013, 04:24:44 PM by timovjl »
May the source be with you

JohnF

  • Guest
Re: reanimate a perished fish
« Reply #7 on: March 03, 2013, 05:52:12 PM »
Tater,

Actually John, I believe ADO would be part of the MS Office SDK...
Please correct me if I'm wrong...


I saw no reference to MS Office - but I don't know either way.

John

CommonTater

  • Guest
Re: reanimate a perished fish
« Reply #8 on: March 03, 2013, 06:23:43 PM »
Tater,

Actually John, I believe ADO would be part of the MS Office SDK...
Please correct me if I'm wrong...


I saw no reference to MS Office - but I don't know either way.

John

I wasn't sure either ... Looks like Timo has it....
 

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
Re: reanimate a perished fish
« Reply #9 on: March 03, 2013, 06:59:06 PM »
msado15.dll can be found from location:
C:\Program Files\Common Files\System\ado\msado15.dll
C:\Program Files (x86)\Common Files\System\ado\msado15.dll
It comes with Windows from Win2K and newer.

May the source be with you

czerny

  • Guest
Re: reanimate a perished fish
« Reply #10 on: March 03, 2013, 08:50:53 PM »
timovjl: Your msado15.h is 97 KB big and dated from today. How do you have build it?
Your example is running with nState = 1. But I can not compile it.
POLINK: error: Unresolved external symbol '_IID_Connection15'.
POLINK: error: Unresolved external symbol '_CLSID_Connection'.

---

I have here PSDK_2003R2.
msado15.h is there unly a stub including a header file adoint.h 471 KB and dated from 3.3.2006.

There is also a msado15.idl

Running midl msado15.idl produces :

msado15.h (445 KB)
msado15_i.c (7 KB)
msado15_p.c (436 KB)
dlldata.c (1 KB)

What are the differences between msado15.h(adoint.h), msado15.h(midl), msado15.h(timovjl)?
What are the other files for?

czerny
« Last Edit: March 03, 2013, 08:59:32 PM by czerny »

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
Re: reanimate a perished fish
« Reply #11 on: March 03, 2013, 09:51:33 PM »
timovjl: Your msado15.h is 97 KB big and dated from today. How do you have build it?
Your example is running with nState = 1. But I can not compile it.
POLINK: error: Unresolved external symbol '_IID_Connection15'.
POLINK: error: Unresolved external symbol '_CLSID_Connection'.
I just use 'Load type Library..' (AddIn) and open msado15.dll to create that file and then modified it.
« Last Edit: March 05, 2013, 04:25:52 PM by timovjl »
May the source be with you

czerny

  • Guest
Re: reanimate a perished fish
« Reply #12 on: March 03, 2013, 10:25:32 PM »
Now it compiles! What have you changed? Uups! It doesn't compile anymore.
« Last Edit: March 03, 2013, 11:18:40 PM by czerny »

Offline Stefan Pendl

  • Global Moderator
  • Member
  • *****
  • Posts: 582
    • Homepage
Re: reanimate a perished fish
« Reply #13 on: March 03, 2013, 11:19:27 PM »
Now it compiles! What have you changed?

WinMerge, WinDiff or SVNdiff are tools to compare two files or folders, which will enable you to see for yourself what has changed ;)
---
Stefan

Proud member of the UltraDefrag Development Team

Offline TimoVJL

  • Global Moderator
  • Member
  • *****
  • Posts: 2091
Re: reanimate a perished fish
« Reply #14 on: March 05, 2013, 01:18:07 PM »
What are the differences between msado15.h(adoint.h), msado15.h(midl), msado15.h(timovjl)?
What are the other files for?

czerny
Use that MIDL msado15.h and msado15_i.c for GUID/IID.
Some version may need to #define __RPC__deref_out
My msado15.h is just too broken.

BTW: In John's site there is ADO with C example:
http://www.johnfindlay.plus.com/lcc-win32/DataBase/c_ado.zip
May the source be with you