-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathQueryMan.htm
More file actions
154 lines (82 loc) · 3.01 KB
/
Copy pathQueryMan.htm
File metadata and controls
154 lines (82 loc) · 3.01 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
<!DocType HTML>
<HEAD>
<TITLE>QueryMan - Visual Query Manager</TITLE>
<META NAME="GENERATOR" Content="Microsoft Visual Studio">
<META HTTP-EQUIV="Content-Type" content="text/html; charset=UTF-8">
<meta name=vs_targetSchema content="HTML 4.0">
<link href="css/ui.css" rel="stylesheet">
<link href="css/layout.css" rel="stylesheet">
<link href="css/tree.css" rel="stylesheet">
<script src="js/jq.js"></script>
<script src="js/ui.js"></script>
<script src="js/lay.js"></script>
<script src="js/tree.js"></script>
<script src="js/rm.js"></script>
<!-- JS -->
<!-- support lib for bezier stuff -->
<script src="js/common.js"></script>
<script language="javascript">
</script>
</HEAD>
<BODY>
<div class="ui-layout-west">
<div class="header blue">Select Tables</div>
<div class="content">
<!-- Content for West Layout
<h3><b>Select Tables</b></h3>
<ul>
</ul>
<table style=";margin-top: -8px;border-bottom: 1px solid gainsboro;padding: 0">
<tr>
<td><img src="css/images/filter.png"></td>
<td><input type="text" id="srcTable"></td>
<td><img src="css/images/cross.png"></td>
</tr>
</table>
-->
</div>
<div class="ui-layout-south">
<div class="header blue">Your SQL Statement</div>
<div class="content" style="height: 240px; font-family: courier new; font-size: 12px">
<p>Select * from mytable</p>
</div>
</div>
<!-- Content for West Layout...dont need footer now..
<div class="footer">Automatically positioned footer</div>
-->
</div> <!-- West close -->
<div class="ui-layout-east">
<div class="header">Outer - East</div>
<div class="subhead">I'm a subheader</div>
<div class="content"></div>
</div>
<div class="ui-layout-north" style="background: #80ade5 url(css/images/D1E6FC_40x100_textures_10_dots_medium_90.png) 0 50% repeat-x;">
<img src="css/images/oie_U9cBbdJ8jVCx.jpg" height="40px" width="80px" align=left id="qmanimg">
<div style="display: inline">
<ul style=" margin-top: 10px; color: darkgray">
<li style="list-style-type: none; display: inline"><a href="#">Upload DB Tree</a></li>
<li style="list-style-type: none; display: inline">|</li>
<li style="list-style-type: none; display: inline"><a href="#">Upload DB Tree</a></li>
</ul>
</div>
</div>
<!-- DIVs for the INNER LAYOUT -->
<div class="ui-layout-center">
<div class="container">
<div id="msgHolder" class='ui-state-error' style="zIndex: 999999; display: none"></div>
<div id="tabs">
<ul>
<li><a href="designer">Query Designer</a></li>
</ul>
<div id="designer">
<div id="drawing"></div>
</div>
</div>
</div>
</div>
<div class="criteria">
</div>
</div>
<!-- Insert HTML here -->
</BODY>
</HTML>