Re: Embedded EDS possible?
- Posted by coconut Feb 07, 2011
- 1318 views
bruce1961 said...
Or I could stuff it into a resource, though the problem then is now to make it available to db_open and its cronies.
one possible solution
1) make it a custom resource
2) Load DLL and copy the resource to a temporary file
4) open that temporary file with db_open()
5) delete temporary file before leaving application.
You can use memory mapped file to improve speed: http://msdn.microsoft.com/en-us/library/aa366556(v=vs.85).aspx
Jacques