-
Notifications
You must be signed in to change notification settings - Fork 299
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SQLite open database recipe #464
Conversation
Should I drop |
d49fc77
to
d3a5000
Compare
Right. Now what?
The third option is probably the best, but I don't know anything about the AppVeyor configuration. |
Possibly related to budziq/rust-skeptic#87. Can we just |
Fixed, |
|
||
[![rusqlite-badge]][rusqlite] [![cat-database-badge]][cat-database] | ||
|
||
You can use the `rusqlite` crate to open SQLite databases. Note that, if you |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Personal pronouns should not be used in the description. Refer to the code not the author or the audience. In this case, just drop 'You can'
[![rusqlite-badge]][rusqlite] [![cat-database-badge]][cat-database] | ||
|
||
You can use the `rusqlite` crate to open SQLite databases. Note that, if you | ||
are compiling on Windows, you'll have to perform some [additional steps][linking] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See the [bundled] feature for compiling in Windows.
Done. |
|
||
[`Connection::open`]: https://docs.rs/rusqlite/*/rusqlite/struct.Connection.html#method.open | ||
|
||
[linking]: https://github.com/jgallagher/rusqlite#user-content-notes-on-building-rusqlite-and-libsqlite3-sys |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs to match the link above (documentation)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed
src/links.md
Outdated
@@ -114,7 +120,7 @@ Keep lines sorted. | |||
[serde-json-badge]: https://badge-cache.kominick.com/crates/v/serde_json.svg?label=serde_json | |||
[serde-json]: https://docs.rs/serde_json/*/serde_json/ | |||
[serde]: https://docs.rs/serde/ | |||
[std-badge]: https://badge-cache.kominick.com/badge/std-1.25.0-blue.svg | |||
[std-badge]: https://badge-cache.kominick.com/badge/std-1.29.1-blue.svg |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
CONTRIBUTING.md
Outdated
@@ -20,7 +20,7 @@ cd rust-cookbook | |||
Cookbook is built with [mdBook], so install that first with Cargo: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
git checkout origin/master -- CONTRIBUTING.md
src/science.md
Outdated
@@ -5,9 +5,18 @@ | |||
| [Creating complex numbers][ex-creating-complex-numbers] | [![num-badge]][num] | [![cat-science-badge]][cat-science] | | |||
| [Adding complex numbers][ex-adding-complex-numbers] | [![num-badge]][num] | [![cat-science-badge]][cat-science] | | |||
| [Mathematical functions on complex numbers][ex-mathematical-functions] | [![num-badge]][num] | [![cat-science-badge]][cat-science] | | |||
| [Calculating the side length of a triangle][ex-calculating-side-length-of-triangle] | [![std-badge]][std] | [![cat-science-badge]][cat-science] | |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you git checkout origin/master -- src/science.md and the other science files and push this? I need clean commit history
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Database work looks good, but there are files that aren't part of the database section included.
I rebased again. I don't know why those commits showed up -- I don't think they were there before. Can you check? |
fixes #453, #454
Based on #460. I'll rebase afterwards, please ignore the first two commits.
CC @robertDurst as per #455.
Things to check before submitting a PR
cargo test
mdbook serve -o
./ci/spellchecker.sh
link-checker ./book
https://docs.rs/tar/*/tar/struct.Entry.html
Things to do after submitting PR