Fix links to issues
This commit is contained in:
parent
ce9149a3c9
commit
a5027c521a
10
README.md
10
README.md
|
@ -48,16 +48,16 @@ FAQ
|
||||||
* Can't build go-sqlite3 on windows 64bit.
|
* Can't build go-sqlite3 on windows 64bit.
|
||||||
|
|
||||||
> Probably, you are using go 1.0, go1.0 has a problem when it comes to compiling/linking on windows 64bit.
|
> Probably, you are using go 1.0, go1.0 has a problem when it comes to compiling/linking on windows 64bit.
|
||||||
> See: https://github.com/mattn/go-sqlite3/issues/27
|
> See: [#27](https://github.com/mattn/go-sqlite3/issues/27)
|
||||||
|
|
||||||
* Getting insert error while query is opened.
|
* Getting insert error while query is opened.
|
||||||
|
|
||||||
> You can pass some arguments into the connection string, for example, a URI.
|
> You can pass some arguments into the connection string, for example, a URI.
|
||||||
> See: https://github.com/mattn/go-sqlite3/issues/39
|
> See: [#39](https://github.com/mattn/go-sqlite3/issues/39)
|
||||||
|
|
||||||
* Do you want to cross compile? mingw on Linux or Mac?
|
* Do you want to cross compile? mingw on Linux or Mac?
|
||||||
|
|
||||||
> See: https://github.com/mattn/go-sqlite3/issues/106
|
> See: [#106](https://github.com/mattn/go-sqlite3/issues/106)
|
||||||
> See also: http://www.limitlessfx.com/cross-compile-golang-app-for-windows-from-linux.html
|
> See also: http://www.limitlessfx.com/cross-compile-golang-app-for-windows-from-linux.html
|
||||||
|
|
||||||
* Want to get time.Time with current locale
|
* Want to get time.Time with current locale
|
||||||
|
@ -66,7 +66,7 @@ FAQ
|
||||||
|
|
||||||
* Can use this in multiple routines concurrently?
|
* Can use this in multiple routines concurrently?
|
||||||
|
|
||||||
Yes for readonly. But, No for writable. See #50, #51, #209.
|
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).
|
||||||
|
|
||||||
* Why is it racy if I use a `sql.Open("sqlite", ":memory:")` database?
|
* Why is it racy if I use a `sql.Open("sqlite", ":memory:")` database?
|
||||||
|
|
||||||
|
@ -75,7 +75,7 @@ FAQ
|
||||||
specified ":memory:", that connection will see a brand new database. A
|
specified ":memory:", that connection will see a brand new database. A
|
||||||
workaround is to use "file::memory:?mode=memory&cache=shared". Every
|
workaround is to use "file::memory:?mode=memory&cache=shared". Every
|
||||||
connection to this string will point to the same in-memory database. See
|
connection to this string will point to the same in-memory database. See
|
||||||
#204 for more info.
|
[#204](https://github.com/mattn/go-sqlite3/issues/204) for more info.
|
||||||
|
|
||||||
License
|
License
|
||||||
-------
|
-------
|
||||||
|
|
Loading…
Reference in New Issue