1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<html>
<head>
<title>Generating QuickFIX Databases</title>
<H1>Generating QuickFIX Databases</H1>
</head>
<UL>
<LI><A HREF="#MySQL Database">MySQL Database</A></LI>
<LI><A HREF="#MSSQL Database">MSSQL Database</A></LI>
<LI><A HREF="#PostgreSQL Database">PostgreSQL Database</A></LI>
</UL>
<body>
<hr>
<A NAME="MySQL Database">
<H3>MySQL Database</H3>
<p>
First, make sure you have compiled QuickFIX with MySQL support. If you have not done this,
go back to the build instructions for your system and follow the instructions. Also, make
sure you have installed MySQL and have the deamon running.
</p>
<p>
Everything needed to generate your MySQL database is in the <I>src/sql/mysql</I> directory. Here,
there are the script and batch files <B>create.sh</B> and <B>create.bat</B>. You must pass in a mysql
user with permissions to create a new database.
</p>
<p>
<code>./create.sh mysql</code>
</p>
<p>
<code>create.bat mysql</code>
</p>
<A NAME="MSSQL Database">
<H3>MSSQL Database</H3>
<p>
First, make sure you have compiled QuickFIX with MSSQL support. If you have not done this,
go back to the build instructions for your system and follow the instructions. Also, make
sure you have installed MSSQL and have the deamon running.
</p>
<p>
Everything needed to generate your MSSQL database is in the <I>src/sql/mssql</I> directory. Here,
there is the batch file <B>create.bat</B>. Pass in a user with permissions to create a new database.
</p>
<p>
<code>create.bat sa</code>
</p>
<A NAME="PostgreSQL Database">
<H3>PostgreSQL Database</H3>
<p>
First, make sure you have compiled QuickFIX with PostgreSQL support. If you have not done this,
go back to the build instructions for your system and follow the instructions. Also, make
sure you have installed PostgreSQL and have the deamon running.
</p>
<p>
Everything needed to generate your PostgreSQL database is in the <I>src/sql/postgresql</I> directory. Here,
there are the script and batch files <B>create.sh</B> and <B>create.bat</B>. You must pass in a postgresql
user with permissions to create a new database.
</p>
<p>
<code>./create.sh postgres</code>
</p>
<p>
<code>create.bat postgres</code>
</p>
</body>
</html>
|