Skip to content

Commit 47e1f81

Browse files
committed
Use "sqlite3" instead of "sqlite" in usage example.
And a minor grammar improvement.
1 parent cf7286f commit 47e1f81

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ Installation
1717
This package can be installed with the go get command:
1818

1919
go get github.com/mattn/go-sqlite3
20-
20+
2121
_go-sqlite3_ is *cgo* package.
2222
If you want to build your app using go-sqlite3, you need gcc.
2323
However, if you install _go-sqlite3_ with `go install github.com/mattn/go-sqlite3`, you don't need gcc to build your app anymore.
24-
24+
2525
Documentation
2626
-------------
2727

@@ -50,7 +50,7 @@ FAQ
5050

5151
* Can't build go-sqlite3 on windows 64bit.
5252

53-
> Probably, you are using go 1.0, go1.0 has a problem when it comes to compiling/linking on windows 64bit.
53+
> Probably, you are using go 1.0, go1.0 has a problem when it comes to compiling/linking on windows 64bit.
5454
> See: [#27](https://github.com/mattn/go-sqlite3/issues/27)
5555
5656
* Getting insert error while query is opened.
@@ -67,11 +67,11 @@ FAQ
6767

6868
Use `loc=auto` in SQLite3 filename schema like `file:foo.db?loc=auto`.
6969

70-
* Can use this in multiple routines concurrently?
70+
* Can I use this in multiple routines concurrently?
7171

7272
Yes for readonly. But, No for writable. See [#50](https://github.com/mattn/go-sqlite3/issues/50), [#51](https://github.com/mattn/go-sqlite3/issues/51), [#209](https://github.com/mattn/go-sqlite3/issues/209).
7373

74-
* Why is it racy if I use a `sql.Open("sqlite", ":memory:")` database?
74+
* Why is it racy if I use a `sql.Open("sqlite3", ":memory:")` database?
7575

7676
Each connection to :memory: opens a brand new in-memory sql database, so if
7777
the stdlib's sql engine happens to open another connection and you've only

0 commit comments

Comments
 (0)