We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d8b009 commit 6fea762Copy full SHA for 6fea762
1 file changed
README.md
@@ -103,7 +103,6 @@ The fields in a row can be accessed either by their indices or their column
103
names, though access by index is more efficient. Unlike statement parameters,
104
result columns are zero-indexed.
105
```rust
106
-let stmt = try!(conn.prepare("SELECT bar, baz FROM foo"));
107
for row in &try!(conn.query("SELECT bar, baz FROM foo WHERE buz = $1", &[&1i32])) {
108
let bar: i32 = row.get(0);
109
let baz: String = row.get("baz");
0 commit comments