From 466b8aab2fdaa3352ac605ade4d8eb5e4e1047b4 Mon Sep 17 00:00:00 2001 From: gwenn Date: Fri, 12 May 2017 19:12:10 +0200 Subject: [PATCH] Rename `row` parameter to `row_id` --- src/blob.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/blob.rs b/src/blob.rs index 06457d6..85364a6 100644 --- a/src/blob.rs +++ b/src/blob.rs @@ -64,7 +64,7 @@ pub struct Blob<'conn> { } impl Connection { - /// Open a handle to the BLOB located in `row`, `column`, `table` in database `db`. + /// Open a handle to the BLOB located in `row_id`, `column`, `table` in database `db`. /// /// # Failure /// @@ -74,7 +74,7 @@ impl Connection { db: DatabaseName, table: &str, column: &str, - row: i64, + row_id: i64, read_only: bool) -> Result> { let mut c = self.db.borrow_mut(); @@ -87,7 +87,7 @@ impl Connection { db.as_ptr(), table.as_ptr(), column.as_ptr(), - row, + row_id, if read_only { 0 } else { 1 }, &mut blob) };