I located the options tab that permitted me to specify directories, and did
that.  It eliminated all but one error:


[Linker Fatal Error] Fatal: Expected a file name:

It doesn't tell me what line is generating this error.  I get the same thing
when I try to compile the "generic conduit" file from the CDK.


----- Original Message ----- 
From: "Frank Ableson" <[EMAIL PROTECTED]>
To: "Palm Developer Forum" <palm-dev-forum@news.palmos.com>
Sent: Tuesday, November 29, 2005 12:12 PM
Subject: Re: SyncOpenDB Equivalent?


> verify that your compiler has the cdk libraries in the input path
>
> C:\CDK402A\C++\LIB
>
>
> ----- Original Message ----- 
> From: "Del Ventruella" <[EMAIL PROTECTED]>
> To: "Palm Developer Forum" <palm-dev-forum@news.palmos.com>
> Sent: Tuesday, November 29, 2005 9:55 AM
> Subject: Re: SyncOpenDB Equivalent?
>
>
> > Are the function calls referenced in the error message below part of a
dll
> > that may not be included in the 4.03 CDK?
> > I tend to believe the problem is either due to that or due to a file not
> > being in the location at which the linker is searching.
> > Any ideas?
> >
> > Thanks.
> > ----- Original Message ----- 
> > From: "Del Ventruella" <[EMAIL PROTECTED]>
> > To: "Palm Developer Forum" <palm-dev-forum@news.palmos.com>
> > Sent: Monday, November 28, 2005 4:14 PM
> > Subject: Re: SyncOpenDB Equivalent?
> >
> >
> > > When I attempt to compile the sample conduit I get the following:
> > >
> > > [C++ Warning] IBMCondGenCond.cpp(472): W8004 'iResult' is assigned a
> value
> > > that is never used
> > > [C++ Warning] IBMCondGenCond.cpp(601): W8066 Unreachable code
> > > [Linker Error] Unresolved external '_SyncRegisterConduit' referenced
> from
> > > IBMCONDGENCOND.OBJ
> > > [Linker Error] Unresolved external '_SyncOpenDB' referenced from
> > > IBMCONDGENCOND.OBJ
> > > [Linker Error] Unresolved external '_SyncGetDBRecordCount' referenced
> from
> > > IBMCONDGENCOND.OBJ
> > > [Linker Error] Unresolved external '_SyncReadRecordByIndex' referenced
> > from
> > > IBMCONDGENCOND.OBJ
> > > [Linker Error] Unresolved external '_SyncPurgeAllRecs' referenced from
> > > IBMCONDGENCOND.OBJ
> > > [Linker Error] Unresolved external '_SyncCloseDB' referenced from
> > > IBMCONDGENCOND.OBJ
> > > [Linker Error] Unresolved external '_SyncUnRegisterConduit' referenced
> > from
> > > IBMCONDGENCOND.OBJ
> > > [Linker Error] Unresolved external '_SyncAddLogEntry' referenced from
> > > IBMCONDGENCOND.OBJ
> > >
> > > Is there a fix for these problems?  If not, is there a simpler conduit
> > > available that could be used as a beginning?
> > >
> > > ----- Original Message ----- 
> > > From: "Del Ventruella" <[EMAIL PROTECTED]>
> > > To: "Palm Developer Forum" <palm-dev-forum@news.palmos.com>
> > > Sent: Monday, November 28, 2005 10:47 AM
> > > Subject: Re: SyncOpenDB Equivalent?
> > >
> > >
> > > > Thank you.  I will certainly take a look.
> > > >
> > > > ----- Original Message ----- 
> > > > From: "Frank Ableson" <[EMAIL PROTECTED]>
> > > > To: "Palm Developer Forum" <palm-dev-forum@news.palmos.com>
> > > > Sent: Monday, November 28, 2005 10:15 AM
> > > > Subject: Re: SyncOpenDB Equivalent?
> > > >
> > > >
> > > > >
> > > > > you will find a sample conduit here  (VC 6.0 project, no MFC).
> > > > >
> > > > > http://www.palm-communications.com/ibmdw/
> > > > >
> > > > > a companion tutorial document on how to build conduits is here:
> > > > >
> > > > > http://www-128.ibm.com/developerworks/edu/wi-dw-wiplm4-i.html
> > > > >
> > > > >
> > > > > these are from a few years ago, but will hopefully help.
> > > > >
> > > > > Frank
> > > > >
> > > > > ----- Original Message ----- 
> > > > > From: "Del Ventruella" <[EMAIL PROTECTED]>
> > > > > To: "Palm Developer Forum" <palm-dev-forum@news.palmos.com>
> > > > > Sent: Monday, November 28, 2005 8:49 AM
> > > > > Subject: Re: SyncOpenDB Equivalent?
> > > > >
> > > > >
> > > > > > Does anyone have a very basic conduit structure within a C++
file,
> > > free
> > > > > from
> > > > > > MFC materials, that they might be willing to send as sample
code?
> > > > > >
> > > > > > I am stuck at present.  I don't have VC++ or the .NET version
with
> > > which
> > > > > to
> > > > > > construct such a file using the CDK wizard, and the conduit
wizard
> > is
> > > > > built
> > > > > > around those IDE tools.
> > > > > >
> > > > > > I'm not asking for fully developed, two-way sync code, just a
> basic
> > > file
> > > > > > that I can use as the basis for constructing a conduit, without
> > having
> > > > to
> > > > > > try to piece it together from recipe material.
> > > > > >
> > > > > > Thanks.
> > > > > >
> > > > > > ----- Original Message ----- 
> > > > > > From: "Jim Cooper" <[EMAIL PROTECTED]>
> > > > > > Newsgroups: palm-dev-forum
> > > > > > To: "Palm Developer Forum" <palm-dev-forum@news.palmos.com>
> > > > > > Sent: Sunday, November 27, 2005 5:58 PM
> > > > > > Subject: Re: SyncOpenDB Equivalent?
> > > > > >
> > > > > >
> > > > > > > > Is there a function built into the CDK header files
> > > > > > >
> > > > > > > Nope. Nothing in the CDK deals with databases on the PC end.
> > > > > > >
> > > > > > > There are a number of libraries available to do that, but you
> > > normally
> > > > > > don't
> > > > > > > want to do that. It is almost always much more efficient to
deal
> > > with
> > > > > data
> > > > > > in a
> > > > > > > way that was designed to be used on a PC. PDB files were not
> > > designed
> > > > > that
> > > > > > way
> > > > > > >
> > > > > > > Cheers,
> > > > > > > Jim Cooper
> > > > > > >
> > > > > > > __________________________________________
> > > > > > >
> > > > > > > Jim Cooper    [EMAIL PROTECTED]
> > > > > > >                Skype : jim.cooper
> > > > > > > Tabdee Ltd    http://www.tabdee.ltd.uk
> > > > > > >
> > > > > > > TurboSync - Connecting Delphi to your Palm
> > > > > > > __________________________________________
> > > > > > >
> > > > > > > -- 
> > > > > > > For information on using the PalmSource Developer Forums, or
to
> > > > > > unsubscribe, please see
http://www.palmos.com/dev/support/forums/
> > > > > > >
> > > > > >
> > > > > > -- 
> > > > > > For information on using the PalmSource Developer Forums, or to
> > > > > unsubscribe, please see http://www.palmos.com/dev/support/forums/
> > > > > >
> > > > >
> > > > >
> > > > >
> > > > > -- 
> > > > > For information on using the PalmSource Developer Forums, or to
> > > > unsubscribe, please see http://www.palmos.com/dev/support/forums/
> > > > >
> > > >
> > > > -- 
> > > > For information on using the PalmSource Developer Forums, or to
> > > unsubscribe, please see http://www.palmos.com/dev/support/forums/
> > > >
> > >
> > > -- 
> > > For information on using the PalmSource Developer Forums, or to
> > unsubscribe, please see http://www.palmos.com/dev/support/forums/
> > >
> >
> > -- 
> > For information on using the PalmSource Developer Forums, or to
> unsubscribe, please see http://www.palmos.com/dev/support/forums/
> >
>
>
>
> -- 
> For information on using the PalmSource Developer Forums, or to
unsubscribe, please see http://www.palmos.com/dev/support/forums/
>

-- 
For information on using the PalmSource Developer Forums, or to unsubscribe, 
please see http://www.palmos.com/dev/support/forums/

Reply via email to