forked from sqlpad/sqlpad
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
266 lines (231 loc) · 10.1 KB
/
Copy pathindex.html
File metadata and controls
266 lines (231 loc) · 10.1 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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<meta name="generator" content="Hugo 0.42" />
<meta charset="utf-8">
<title>
SQLPad - A web app for running SQL queries and visualizing the results
</title>
<meta name="keywords" content="SQLPad, node.js, Postgres, postgresql, mysql, microsoft sql server, online sql editor">
<meta name="description" content="SQLPad is a web app for writing and running SQL queries and visualizing the results. Supports Postgres, MySQL, and SQL Server. Built with Node.js">
<meta name="author" content="Rick Bergfalk">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="/sqlpad/css/normalize.css">
<link rel="stylesheet" href="/sqlpad/css/skeleton.css">
<link rel="stylesheet" href="/sqlpad/css/skeleton-home.css">
<link rel="shortcut icon" href="/sqlpad/images/favicon.ico">
<style>
.bgphoto {
background-image: url('/sqlpad/images/screenshots/query-editor-blur-red.jpg');
background-size: cover;
color: #fff;
min-height:400px;
}
</style>
</head>
<body class="">
<div class="container">
<nav class="navbar">
<ul class="navbar-list">
<li class="navbar-item">
<a class="navbar-link" href="/sqlpad/">SQLPad</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="/sqlpad/posts">Blog</a>
</li>
<li class="navbar-item">
<a class="navbar-link" href="https://github.com/rickbergfalk/sqlpad">GitHub</a>
</li>
</ul>
</nav>
<div class="u-cf"></div>
<div class="homepage-content">
<section class="header">
<div class="row">
<h1>SQLPad</h1>
</div>
<div class="row">
<h3>Run SQL in your browser and chart the results</h3>
<p><img class="u-max-full-width" src="images/screenshots/v3-beta.png" alt="SQLPad Query Editor" /></p>
</div>
<h3>
Supports <br /> Postgres, MySQL, SQL Server, <br /> Vertica, Crate, Presto, SAP Hana, <br /> Apache Drill, and Cassandra (kinda).
</h3>
<div class="value-props row">
<div class="three columns value-prop">
<img style="width: 70%;" src="images/logo-postgresql.png" />
</div>
<div class="three columns value-prop">
<img class="u-max-full-width" src="images/logo-mysql.png" />
</div>
<div class="three columns value-prop">
<img class="u-max-full-width" src="images/logo-sql-server.png" />
</div>
<div class="three columns value-prop">
<img class="u-max-full-width" src="images/logo-vertica.jpg" />
</div>
</div>
</section>
<div class="docs-section" id="about">
<div class="row">
<div class="two columns">
<p> </p>
</div>
<div class="eight columns">
<h6 class="docs-header">About</h6>
<p>
SQLPad is a self-hosted web app for writing and running SQL queries
and visualizing the results. Its goal is to be a simple tool for
exploratory data work and visualizations, ideal for
data analysts who would prefer to work in SQL.
</p>
<p>
SQLPad is meant to be run on an internal network for a single team.
All connections added to the app can be used by all individuals with access
to the SQLPad server. All queries written can be run and edited by everyone on
the server.
</p>
<p>
If you want to be bold and daring, you can expose your SQLPad instance
to the outside world. Please make sure you fully understand the risks
associated with doing this and use HTTPS.
</p>
</div>
</div>
</div>
<div class="docs-section" id="news">
<div class="row">
<div class="two columns">
<p> </p>
</div>
<div class="eight columns">
<h6 class="docs-header">News</h6>
<ul style="list-style: none;">
<li style="margin-bottom: 20px;">
<a href="https://rickbergfalk.github.io/sqlpad/posts/version-3-available/">Version 3 Released</a>
<br/><time>2019-09-02</time>
</li>
<li style="margin-bottom: 20px;">
<a href="https://rickbergfalk.github.io/sqlpad/posts/version-3-beta/">Version 3 beta now available</a>
<br/><time>2019-06-25</time>
</li>
<li style="margin-bottom: 20px;">
<a href="https://rickbergfalk.github.io/sqlpad/posts/installation-and-administration/">Installation & Administration (v2)</a>
<br/><time>2018-01-28</time>
</li>
</ul>
</div>
</div>
</div>
<div class="docs-section" id="installation">
<div class="row">
<div class="two columns">
<p> </p>
</div>
<div class="columns eight">
<h6 class="docs-header">Installation</h6>
<p>
Install Node.js and <a href="https://github.com/rickbergfalk/sqlpad#building">build from git repository</a> or install Docker and pull the <a href="https://hub.docker.com/r/sqlpad/sqlpad/">automated docker build</a>.
</p>
<p>
Installing via npm is no longer supported.
</p>
</div>
</div>
</div>
<div class="docs-section" id="limitations">
<div class="row">
<div class="two columns">
<p> </p>
</div>
<div class="eight columns">
<h6 class="docs-header">Limitations</h6>
<p>
Be sure not to query with 2 columns returned of the same name.
Some SQL reporting systems can handle this. SQLPad can't.
</p>
<p>
Every query is run with a new session/connection, so keep
that in mind if you use variables and temp tables and
split up your SQL executions. If this doesn't make any sense
to you just forget you read this you probably won't be impacted by it.
</p>
</div>
<div class="four columns"></div>
</div>
</div>
<div class="docs-section" id="alternatives">
<div class="row">
<div class="two columns">
<p> </p>
</div>
<div class="eight columns">
<h6 class="docs-header">Is SQLPad For Me?</h6>
<p>
SQLPad aims to be a SQL query environment with a focus on exploring and analyzing data via SQL,
and it will not adopt a dashboard use case.
If you're looking for open-source dashboard software or something more advanced,
check out <a href="https://redash.io/">Redash</a>,
<a href="https://www.metabase.com/">Metabase</a>,
or <a href="https://github.com/apache/incubator-superset">Superset</a>.
</p>
<p>
SQLPad likely does as much as it'll ever do and could even be considered finished. Development these days is mostly maintenance and cleanup.
</p>
</div>
<div class="four columns"></div>
</div>
</div>
</div>
</div>
<section class="bgphoto">
<div class="container" style="padding-top: 100px;">
<div class="row">
<div class="six columns">
<div id="mc_embed_signup">
<form action="//github.us11.list-manage.com/subscribe/post?u=8314eae319da113739c8e6039&id=673653d22d" method="post" id="mc-embedded-subscribe-form" name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
<div id="mc_embed_signup_scroll">
<h6 class="docs-header">Get SQLPad updates in your email</h6>
<div class="mc-field-group">
<label for="mce-EMAIL">Email Address</label>
<input style="color:#000;" class="u-full-width" type="email" value="" name="EMAIL" class="required email" id="mce-EMAIL">
</div>
<div id="mce-responses" class="clear">
<div class="response" id="mce-error-response" style="display:none"></div>
<div class="response" id="mce-success-response" style="display:none"></div>
</div>
<div style="position: absolute; left: -5000px;"><input type="text" name="b_8314eae319da113739c8e6039_673653d22d" tabindex="-1" value=""></div>
<div class="clear">
<input class="button-primary" type="submit" value="Subscribe" name="subscribe" id="mc-embedded-subscribe" class="button">
</div>
</div>
</form>
</div>
</div>
<div class="six columns">
<h6 class="docs-header">Thank You</h6>
<p>
Special thanks to the contributors helping with the SQLPad
development, as well as the creators of all the amazing
open source libraries used to build SQLPad.
</p>
<p>
Without them this project would not be possible.
</p>
</div>
</div>
</div>
</section>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-54318769-1']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>