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
|
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN">
<html>
<head>
<link href="doxygen.css" rel="stylesheet" type="text/css">
<title>Generating QuickFIX Databases</title>
</head>
<body>
<div class='header'>
<div class='headertitle'>
Generating QuickFIX Databases
</div>
</div>
<div class='contents'>
<h1>MySQL</h1>
<p>You must have MySQL installed with the deamon running.</p>
<p>Run the create script in <b>src/sql/mysql</b>. You must pass
in a mysql user with permissions authorized to create a new
database.</p>
<pre class='fragment'>
./create.sh mysql
</pre>
<pre class='fragment'>
create.bat mysql
</pre>
<br/><hr/>
<h1>MSSQL</h1>
<p>You must have MySQL installed with the deamon running.</p>
<p>Run the create script in <b>src/sql/mssql</b>. You must pass
in a mssql user with permissions authorized to create a new
database.</p>
<pre class='fragment'>
create.bat sa
</pre>
<br/><hr/>
<h1>PostgreSQL</h1>
<p>You must have PostgreSQL installed with the deamon
running.</p>
<p>Run the create script in <b>src/sql/postgresql</b>. You must
pass in a postgresql user with permissions authorized to create
a new database.</p>
<pre class='fragment'>
./create.sh postgres
</pre>
<pre class='fragment'>
create.bat postgres
</pre>
</div>
</body>
</html>
|