File: generating_databases.html

package info (click to toggle)
quickfix 1.15.1%2Bdfsg-4
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 42,080 kB
  • sloc: cpp: 631,686; python: 129,549; ruby: 106,716; xml: 43,737; ansic: 7,668; java: 1,826; cs: 816; makefile: 544; sh: 462; sql: 313
file content (61 lines) | stat: -rw-r--r-- 1,378 bytes parent folder | download | duplicates (2)
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>