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: README.md
+11
Original file line number
Diff line number
Diff line change
@@ -207,6 +207,17 @@ srcd sql "SHOW tables;"
207
207
**Note:**
208
208
Engine's SQL supports a [UAST](#babelfish-uast) function that returns a Universal AST for the selected source text. UAST values are returned as binary blobs, and are best visualized in the `web sql` interface rather than the CLI where are seen as binary data.
209
209
210
+
##### From Any MySQL Client
211
+
212
+
You may also connect directly to gitbase using any MySQL compatible client. Use the login user **root**, no password, and database name **gitbase**.
213
+
214
+
```bash
215
+
# Start the component if needed
216
+
srcd start srcd-cli-gitbase
217
+
218
+
mysql --user=root --host=127.0.0.1 --port=3306 gitbase
219
+
```
220
+
210
221
#### Parsing Code
211
222
212
223
Sometimes you may want to parse files directly as [UASTs](#babelfish-uast).
0 commit comments