Skip to content

Commit 6fea762

Browse files
committed
README fix
1 parent 9d8b009 commit 6fea762

1 file changed

Lines changed: 0 additions & 1 deletion

File tree

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ The fields in a row can be accessed either by their indices or their column
103103
names, though access by index is more efficient. Unlike statement parameters,
104104
result columns are zero-indexed.
105105
```rust
106-
let stmt = try!(conn.prepare("SELECT bar, baz FROM foo"));
107106
for row in &try!(conn.query("SELECT bar, baz FROM foo WHERE buz = $1", &[&1i32])) {
108107
let bar: i32 = row.get(0);
109108
let baz: String = row.get("baz");

0 commit comments

Comments
 (0)