dean gwilliam wrote: > On 23/01/2014 08:45, Clemens Ladisch wrote: >> What exactly do you want to know? What is your goal? > > my goal is to be able to use sqlite 3 in my delphi 5 programs by, > ideally, accessing the raw sqlite api [...] > I mostly compile the amalgamation into the code I use my self. I'd > like to do it both ways in D5 but if I can have only one it would be > using the standard sqlite api via the dll.
Using the DLL should be easy with a unit like this: http://code.google.com/p/hiasm/source/browse/elements/delphi/code/SqLite3Api.pas Embedding the code into your program is possible by using some compiler that can generate Relocatable Object Module Format .obj files (typically the free Borland C++ 5.5), but all the solutions on the internet then require another DLL (msvcrt.dll) for some of the C runtime functions. I'll have to publish my own solution some day ... Regards, Clemens _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users