Skip to content

Commit 0af0531

Browse files
authored
Merge pull request #117 from leonardovida/patch-1
Add missing semi-column to `ATTACH` statement in README.md
2 parents c2a5681 + b5889b8 commit 0af0531

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ The MySQL extension allows DuckDB to directly read and write data from a MySQL d
88
To make a MySQL database accessible to DuckDB use the `ATTACH` command:
99

1010
```sql
11-
ATTACH 'host=localhost user=root port=0 database=mysqlscanner' AS mysqlscanner (TYPE mysql_scanner)
11+
ATTACH 'host=localhost user=root port=0 database=mysqlscanner' AS mysqlscanner (TYPE mysql_scanner);
1212
USE mysqlscanner;
1313
```
1414

0 commit comments

Comments
 (0)