[Quickfix-developers] error in included SQL script
Brought to you by:
orenmnero
From: Andrew M. <an...@nm...> - 2006-04-12 18:26:29
|
Looks like messages_log_table.sql is creating the wrong table name. C:\quickfix\src\sql\mysql>more messages_log_table.sql USE quickfix; DROP TABLE IF EXISTS messages_log; CREATE TABLE incoming_log ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, time DATETIME NOT NULL, beginstring CHAR(8) NOT NULL, sendercompid VARCHAR(64) NOT NULL, targetcompid VARCHAR(64) NOT NULL, session_qualifier VARCHAR(64) NOT NULL, text BLOB NOT NULL, PRIMARY KEY (id) ); |