> From: bill lam <[EMAIL PROTECTED]> > > Does Express even support 64 bit targets? I'm afraid you might have to look > for > alternatives to compile 64-bit dll. The easiest way is to buy a regular VC > 2008.
I believe we may have good news here. Citing MSDN: How to: Configure Visual C++ Projects to Target 64-Bit Platforms http://msdn.microsoft.com/en-us/library/9yb4317s(VS.80).aspx 64-bit tools are not available on Visual C++ Express Edition by default. To enable 64-bit tools on Visual C++ Express Edition, install the .NET Framework SDK in addition to Visual C++ Express Edition. I believe you need the x64 SDK (not IA64 which is for Itanium) .NET Framework 2.0 Software Development Kit (SDK) (x64) http://www.microsoft.com/downloads/details.aspx?familyid=1AEF6FCE-6E06-4B66-AFE4-9AAD3C835D3D Read help on how to enable the tools and configure a project. > Yuvaraj Athur Raghuvir wrote: > > I tried what you suggested. The dll I built on XP 64 / VS 2008 does not work > > with J602/32. cder is 1 0. > > > > What are the settings in VS 2008 / Express / VC++ for 64 bit targets? I see > > that WIN32 is always in the pre-processor definition. > > > > Regards, > > Yuva > > > > On Fri, Jul 18, 2008 at 7:40 AM, Eric Iverson > > wrote: > > > >> cder indicates either the file doesn't exist or that it is not an > >> appropriate file(not a dll or a mismatch 32/64 bit). > >> > >> Are you sure that your build resulted in a 64 bit dll? A quick test would > >> be > >> to try to use the dll you built from J32. If it works from J32 then your > >> build was a 32 bit dll. There are steps in VC++ to do a 64 bit build. Does > >> Express even support 64 bit targets? > >> On Thu, Jul 17, 2008 at 4:06 PM, Yuvaraj Athur Raghuvir < > >> [EMAIL PROTECTED]> wrote: > >> > >>> I built a dll using VC++ Express 2008 on the XP 64 bit machine. No luck. > >> I > >>> still get a file not found cd error. > >>> > >>> However, I can use the 32 bit J quite fine. > >>> > >>> ~Yuva > >>> > >>> On Wed, Jul 16, 2008 at 6:19 PM, Sherlock, Ric < > >> [EMAIL PROTECTED]> > >>> wrote: > >>> > >>>> ---bill lam wrote: > >>>>> Either that dll is missing or it is not a 64-bit dll. Anyway > >>>>> you may try compile > >>>>> that dll from source. > >>>>> > >>>> I think Bill is correct that the dll is not 64-bit. See the post from > >> the > >>>> SQLite forum below. If you compile a 64-bit version, it would be good > >> to > >>> get > >>>> it incorporated as part of the SQLite addon available on JAL. > >>>> > >>>> ======================= > >>>> http://www.mail-archive.com/[EMAIL PROTECTED]/msg25940.html > >>>> Re: [sqlite] SQLite 64-Bit > >>>> > >>>> Ian Frosst > >>>> Wed, 04 Jul 2007 12:26:20 -0700 > >>>> > >>>> I build SQLite's code using Visual Studio 2005 using the 64 bit tool > >>> chain, > >>>> and it runs without a hitch. I haven't seen a pre-compiled library for > >>> it, > >>>> so you may have to get your hands a bit dirty. Building it is a snap > >>>> though; add the sqlite3.c and sqlite3.h files to a project, define > >> NO_TCL > >>>> and THREADSAFE in the preprocessor for your various configurations, and > >>>> voila. > >>>> > >>>> On 7/4/07, Ahmed Sulaiman <[EMAIL PROTECTED]> wrote: > >>>> > >>>> Hi all, > >>>> > >>>> > >>>> > >>>> We are interested in using the SQLite in our project. I wonder if > >>> there > >>>> a version that works in 64-Bit machine? I have looked in the > >> download > >>>> page and noticed that only Win32 (x86) builds are available. > >>>> > >>>> > >>>> > >>>> Regards > >>>> > >>>> > >>>> > >>>> Ahmed > >>>> ===================================== > >>>> > >>>> ---------------------------------------------------------------------- > >>>> For information about J forums see http://www.jsoftware.com/forums.htm > >>>> > >>> ---------------------------------------------------------------------- > >>> For information about J forums see http://www.jsoftware.com/forums.htm > >>> > >> ---------------------------------------------------------------------- > >> For information about J forums see http://www.jsoftware.com/forums.htm > >> > > ---------------------------------------------------------------------- > > For information about J forums see http://www.jsoftware.com/forums.htm > > > > ---------------------------------------------------------------------- > For information about J forums see http://www.jsoftware.com/forums.htm ---------------------------------------------------------------------- For information about J forums see http://www.jsoftware.com/forums.htm
