Re: [Quickfix-users] not writing to sql server
Brought to you by:
orenmnero
From: Evans, J. \(IT Woodbridge\) <JF...@he...> - 2009-12-07 14:24:10
|
You need to make more than just setting changes. You need to create the appropriate objects for the initiator... ODBC Example: Dim storeFactory As New OdbcStoreFactory(settings) Dim logFactory As New OdbcLogFactory(settings) File Example: Dim storeFactory As New FileStoreFactory(settings) Dim logFactory As New FileLogFactory(settings) -----Original Message----- From: jeffreykr [mailto:jef...@gm...] Sent: Sunday December 06, 2009 1:29 AM To: qui...@li... Subject: [Quickfix-users] not writing to sql server QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html QuickFIX Support: http://www.quickfixengine.org/services.html hello. my sample app does not seem to be writing to sql server. i built the entire quickfix solution with: // Define if you have odbc library (Odbc32.lib) #define HAVE_ODBC 1 and put these in my settings file: OdbcStoreUser=sa OdbcStorePassword=secret OdbcStoreConnectionString=Database=quickfix;Driver={SQL Server Native Client 10.0};Server=JEFF-PC\SQLExpress; OdbcLogUser=sa OdbcLogPassword=secret OdbcLogConnectionString=Database=quickfix;Driver={SQL Server Native Client 10.0};Server=JEFF-PC\SQLExpress; even when doing so, if i omit the FileStorePath setting from my settings file, i get an exception caused specifically when it tries to look for the FileStorePath. and yet i have compiled the solution with ODBC set, and have put in the above lines into my settings file. is this a bug or have i done something wrong? i am writing to sql server 2008 express, and running example_tradeclient_vs8 from visual studio 2008 standard. thanks. -- View this message in context: http://old.nabble.com/not-writing-to-sql-server-tp26662597p26662597.html Sent from the QuickFIX - User mailing list archive at Nabble.com. ------------------------------------------------------------------------ ------ Join us December 9, 2009 for the Red Hat Virtual Experience, a free event focused on virtualization and cloud computing. Attend in-depth sessions from your desk. Your couch. Anywhere. http://p.sf.net/sfu/redhat-sfdev2dev _______________________________________________ Quickfix-users mailing list Qui...@li... https://lists.sourceforge.net/lists/listinfo/quickfix-users . |