Re: [sqlite] SQLite3.dll for Win 64

2011-07-26 Thread Everton Vieira
Hey people let's consider provide 64bit binaries in sqlite.org 2011/7/26 Everton Vieira > Done! Probably something with gawk was occurring because after i've copy > all gawk files inside the folder of the source they work out. > > Thanks to all. > > 2011/7/25 Shane

Re: [sqlite] SQLite3.dll for Win 64

2011-07-26 Thread Everton Vieira
Done! Probably something with gawk was occurring because after i've copy all gawk files inside the folder of the source they work out. Thanks to all. 2011/7/25 Shane Harrelson > The makefile builds lemon.exe from lemon.c as part of the build process, so > make sure

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread Shane Harrelson
The makefile builds lemon.exe from lemon.c as part of the build process, so make sure it was generated correctly as well. "lemon -x" should print a version number. "lemon -?" should print an error and help message. Again, HTH. -Shane On Mon, Jul 25, 2011 at 5:51 PM, Shane Harrelson

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread Shane Harrelson
The TK_* identifiers are all defined in parse.h which is generated by lemon.exe from parse.y. parse.h is "included" in the amalgamation file, sqlite3.c. Try deleting your parse.c and parse.h and sqlite3.c and re-running your make. Check that parse.h was generated correctly and subsequently

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread Everton Vieira
Probably is even possible, but much better would be to have this dll especially for the community. Anyone have done this dll before? 2011/7/25 Robert Myers > Check your compiler documentation. You should be able to link C .obj > files and call C functions without too much

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread Robert Myers
Check your compiler documentation. You should be able to link C .obj files and call C functions without too much hassle. The biggest issue will be getting all the functions declared in a Pascal readable format. On 7/25/2011 3:10 PM, Everton Vieira wrote: > The software that uses this dll is made

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread Everton Vieira
The software that uses this dll is made in pascal so i can't include c files in the project. 2011/7/25 Teg > Hello Everton, > > EV> Don't have any easy way to make this dll? There's a lot of 64bits > systems > EV> out there that will need this dll. > > I just compile it into my

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread Teg
Hello Everton, EV> Don't have any easy way to make this dll? There's a lot of 64bits systems EV> out there that will need this dll. I just compile it into my program and don't bother with DLL's. I find that DLL's in general make my software less reliable so, I avoid them. Static linking all the

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread Everton Vieira
So, now i'm stock on this errors: sqlite3.c sqlite3.c(40972) : warning C4244: '=' : conversion from '__int64' to 'int', poss ible loss of data sqlite3.c(57259) : error C2065: 'TK_REGISTER' : undeclared identifier sqlite3.c(57266) : error C2065: 'TK_UMINUS' : undeclared identifier sqlite3.c(57266)

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread Everton Vieira
ops! I've run on cmd 2011/7/25 John Drescher > On Mon, Jul 25, 2011 at 10:52 AM, Everton Vieira > wrote: > > So far so good but return an error: > > > > C:\Dattna\Applications\Installs\sqlite\sqlite-src-3070701>nmake -f > > Makefile.msc sqlite3.dll >

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread John Drescher
On Mon, Jul 25, 2011 at 10:52 AM, Everton Vieira wrote: > So far so good but return an error: > > C:\Dattna\Applications\Installs\sqlite\sqlite-src-3070701>nmake -f > Makefile.msc sqlite3.dll > > Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 > Copyright (C)

Re: [sqlite] SQLite3.dll for Win 64

2011-07-25 Thread Everton Vieira
So far so good but return an error: C:\Dattna\Applications\Installs\sqlite\sqlite-src-3070701>nmake -f Makefile.msc sqlite3.dll Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved. cl.exe -O2 -Femkkeywordhash.exe

Re: [sqlite] SQLite3.dll for Win 64

2011-07-23 Thread Tom Browder
On Fri, Jul 22, 2011 at 06:23, Everton Vieira wrote: > Please Help. I need an SQLite3.dll for Win 64? This link has Windows 64-bit binary installation packages--may find it in one of them: http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki HTH

[sqlite] SQLite3.dll for Win 64

2011-07-23 Thread Everton Vieira
Please Help. I need an SQLite3.dll for Win 64?   I've try to download the source and make this dll but I have not success.   Anyone knows where to download this dll, or anyone knows how to make this dll with the source?   Many Thanks Everton ___

Re: [sqlite] SQLite3.dll for Win 64

2011-07-22 Thread Richard Hipp
On Fri, Jul 22, 2011 at 7:30 AM, Everton Vieira wrote: > anyone knows how to make this > dll with the source? > nmake -f Makefile.msc sqlite3.dll -- D. Richard Hipp d...@sqlite.org ___ sqlite-users mailing list

[sqlite] SQLite3.dll for Win 64

2011-07-22 Thread Everton Vieira
Please Help. I need an SQLite3.dll for Win 64? I've try to download the source and make this dll but I have not success. Anyone knows where to download this dll, or anyone knows how to make this dll with the source? Many Thanks Everton ___