You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/components/FAQ.astro
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -10,15 +10,15 @@ const faqs = [
10
10
},
11
11
{
12
12
question: "Which AI providers are supported?",
13
-
answer: "We support multiple AI providers out of the box: Google Gemini (default), OpenAI (GPT-4, GPT-3.5), and local LLMs via Ollama or LM Studio. You can switch providers anytime or even run completely offline with local models."
13
+
answer: "We support multiple AI providers out of the box: Google Gemini (default), OpenAI (GPT-4o, GPT-4), Claude, and local LLMs via Ollama or LM Studio. You can also configure any OpenAI-compatible endpoint. Switch providers anytime or run completely offline with local models."
14
14
},
15
15
{
16
16
question: "Is my database connection secure?",
17
-
answer: "Security is our top priority. All connections use TLS/SSL encryption. Credentials are never stored in plain text. For self-hosted deployments, your data never leaves your network. We also support JWT authentication and role-based access control (RBAC)."
17
+
answer: "Security is our top priority. All connections support TLS/SSL encryption and SSH Tunnel for accessing databases behind firewalls. Credentials are never stored in plain text. For self-hosted deployments, your data never leaves your network. We also support JWT authentication, role-based access control (RBAC), and transaction control (BEGIN/COMMIT/ROLLBACK)."
18
18
},
19
19
{
20
20
question: "Which databases are supported?",
21
-
answer: "Currently we support PostgreSQL, MySQL, SQLite, and MongoDB. Each adapter is optimized for its specific database with full feature support including schema inspection, query execution, and maintenance tools. More databases coming soon!"
21
+
answer: "We support PostgreSQL, MySQL, SQLite, MongoDB, and Redis. Each adapter is optimized for its specific database with full feature support including schema inspection, query execution, maintenance tools, and data profiling. The provider architecture makes it easy to add new databases."
22
22
},
23
23
{
24
24
question: "Can I use it on my phone or tablet?",
@@ -30,7 +30,7 @@ const faqs = [
30
30
},
31
31
{
32
32
question: "How does it compare to pgAdmin or DBeaver?",
33
-
answer: "Unlike pgAdmin (PostgreSQL only) or DBeaver (desktop app), LibreDB Studio is web-based, mobile-ready, and AI-powered. Zero installation, works on any device, and includes an AI assistant that understands your schema. Plus, it's lighter and faster."
33
+
answer: "Unlike pgAdmin (PostgreSQL only) or DBeaver (desktop app), LibreDB Studio is web-based, mobile-ready, and deeply AI-powered. Beyond NL2SQL, we offer AI Query Safety Analysis, AI Query Explainer, AI Query Autopilot, AI Data Profiler, ORM Code Generator, Test Data Generator, Interactive Pivot Tables, ER Diagrams, and Database Documentation - features no desktop IDE provides. Zero installation, works on any device."
34
34
},
35
35
];
36
36
---
@@ -141,23 +141,23 @@ const faqs = [
141
141
"name": "Which AI providers are supported?",
142
142
"acceptedAnswer": {
143
143
"@type": "Answer",
144
-
"text": "We support Google Gemini (default), OpenAI (GPT-4, GPT-3.5), and local LLMs via Ollama or LM Studio."
144
+
"text": "We support Google Gemini (default), OpenAI (GPT-4o), Claude, and local LLMs via Ollama or LM Studio."
145
145
}
146
146
},
147
147
{
148
148
"@type": "Question",
149
149
"name": "Is my database connection secure?",
150
150
"acceptedAnswer": {
151
151
"@type": "Answer",
152
-
"text": "Security is our top priority. All connections use TLS/SSL encryption. Credentials are never stored in plain text."
152
+
"text": "Security is our top priority. All connections support TLS/SSL encryption and SSH Tunnel. Credentials are never stored in plain text."
153
153
}
154
154
},
155
155
{
156
156
"@type": "Question",
157
157
"name": "Which databases are supported?",
158
158
"acceptedAnswer": {
159
159
"@type": "Answer",
160
-
"text": "Currently we support PostgreSQL, MySQL, SQLite, and MongoDB with full feature support."
160
+
"text": "We support PostgreSQL, MySQL, SQLite, MongoDB, and Redis with full feature support."
161
161
}
162
162
},
163
163
{
@@ -181,7 +181,7 @@ const faqs = [
181
181
"name": "How does it compare to pgAdmin or DBeaver?",
182
182
"acceptedAnswer": {
183
183
"@type": "Answer",
184
-
"text": "Unlike pgAdmin or DBeaver, LibreDB Studio is web-based, mobile-ready, and AI-powered with zero installation required."
184
+
"text": "Unlike pgAdmin or DBeaver, LibreDB Studio is web-based, mobile-ready, and deeply AI-powered with NL2SQL, Query Safety Analysis, Data Profiler, Code Generator, and more."
0 commit comments