Re: [Quickfix-developers] Sql Server
Brought to you by:
orenmnero
From: <or...@qu...> - 2008-05-16 13:54:43
|
> 1. Do the pre-compiled binaries already have ODBC enabled? It didn't > seem so from the source (just something called "ftime" was enabled). > I didn't find the odbc32.lib file to compile it myself. Also I assume > I can substitute in 64-bit odbc when compiling to .net wrapper code > but I am not sure how the dependency on C++ code works, so that may > not be right. You can substitute with the 64 bit library if you build the underlying C++ code in 64 bit. That's what needs to link to ODBC. > The option in the source file (config_windows.h file) says: > "// Define if you have odbc library (Odbc32.lib)." > 2. I think I would prefer to use the native SQL Server connector > which .net provides (I am using the C# wrapper), and also would like > to make use of LINQ. But I assume it would be difficult or impossible > to override the underlying C++ code that handles that? You can do this. QuickFIX allows you to inherit from the MessageStoreFactory and the MessageStore to implement your own connectivity in C#. |