-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhelp.html
More file actions
65 lines (57 loc) · 4.01 KB
/
Copy pathhelp.html
File metadata and controls
65 lines (57 loc) · 4.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Help Center | SQL Viewer - Documentation & Support</title>
<!-- SEO Meta Tags -->
<meta name="description" content="Get help with SQL Viewer. Master the terminal protocols, learn how to mount databases, and understand data inspection in our manual.">
<meta name="keywords" content="sql viewer help, database documentation, how to use sql viewer, sqlite tutorial">
<!-- Open Graph -->
<meta property="og:title" content="Help Center | SQL Viewer Manual">
<meta property="og:description" content="Step-by-step instructions for mastering the SQL Viewer environment.">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="SQL Viewer Documentation">
<script src="https://cdn.tailwindcss.com"></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body class="bg-black text-white font-sans selection:bg-white selection:text-black">
<div class="max-w-4xl mx-auto px-8 py-20">
<header class="mb-20">
<a href="index.html" class="inline-flex items-center gap-2 text-white/40 hover:text-white transition-colors mb-8 group">
<svg class="w-4 h-4 transform group-hover:-translate-x-1 transition-transform" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 19l-7-7 7-7"></path></svg>
<span class="text-[10px] font-black uppercase tracking-widest">Return to Viewer</span>
</a>
<h1 class="text-5xl font-black uppercase tracking-tighter mb-4 italic">Operator Manual<span class="text-white/10">.</span></h1>
<p class="text-white/40 font-bold uppercase tracking-[0.3em] text-[11px]">Terminal Protocols & Instructions</p>
</header>
<div class="grid grid-cols-1 md:grid-cols-2 gap-12">
<div class="bg-white/[0.02] border border-white/5 p-8 rounded-sm">
<h2 class="text-[10px] font-black uppercase tracking-widest text-white/30 mb-6 italic">01. Mounting</h2>
<p class="text-sm leading-relaxed text-white/60 mb-6 uppercase tracking-wider font-bold">
Use the 'Mount DB' button in the navbar to load any .sqlite or .db file. The kernel will initialize the file structure in memory instantly.
</p>
</div>
<div class="bg-white/[0.02] border border-white/5 p-8 rounded-sm">
<h2 class="text-[10px] font-black uppercase tracking-widest text-white/30 mb-6 italic">02. Execution</h2>
<p class="text-sm leading-relaxed text-white/60 mb-6 uppercase tracking-wider font-bold">
Write raw SQL in the terminal console and press Ctrl + Enter to execute. The viewer supports complex joins and subqueries.
</p>
</div>
<div class="bg-white/[0.02] border border-white/5 p-8 rounded-sm">
<h2 class="text-[10px] font-black uppercase tracking-widest text-white/30 mb-6 italic">03. Inspection</h2>
<p class="text-sm leading-relaxed text-white/60 mb-6 uppercase tracking-wider font-bold">
Click any cell in the results grid to open the Inspector Drawer. From here you can copy data, nullify fields, or commit manual updates to the cell.
</p>
</div>
<div class="bg-white/[0.02] border border-white/5 p-8 rounded-sm">
<h2 class="text-[10px] font-black uppercase tracking-widest text-white/30 mb-6 italic">04. Mobility</h2>
<p class="text-sm leading-relaxed text-white/60 mb-6 uppercase tracking-wider font-bold">
On mobile interfaces, use the top-left burger menu to swap between the table list and the data workspace. The app is fully responsive across all screen sizes.
</p>
</div>
</div>
</div>
</body>
</html>