mirror of
https://github.com/isar/rusqlite.git
synced 2024-11-23 00:39:20 +08:00
Make column_name() public
Changes it's interface to Option<&str> to accommodate for out of bounds index
This commit is contained in:
parent
692b4b67dc
commit
d46eb23364
@ -27,7 +27,7 @@ impl Statement<'_> {
|
|||||||
let n = self.column_count();
|
let n = self.column_count();
|
||||||
let mut cols = Vec::with_capacity(n as usize);
|
let mut cols = Vec::with_capacity(n as usize);
|
||||||
for i in 0..n {
|
for i in 0..n {
|
||||||
let s = self.column_name(i);
|
let s = self.column_name(i).unwrap(); // safe to unwrap as we're using only verified indices
|
||||||
cols.push(s);
|
cols.push(s);
|
||||||
}
|
}
|
||||||
cols
|
cols
|
||||||
@ -39,11 +39,10 @@ impl Statement<'_> {
|
|||||||
self.stmt.column_count()
|
self.stmt.column_count()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub(crate) fn column_name(&self, col: usize) -> &str {
|
/// Returns the name of the column by index or None on out of bounds access. Panics when column name is not valid UTF-8
|
||||||
// Just panic if the bounds are wrong for now, we never call this
|
pub fn column_name(&self, col: usize) -> Option<&str> {
|
||||||
// without checking first.
|
self.stmt.column_name(col)
|
||||||
let slice = self.stmt.column_name(col).expect("Column out of bounds");
|
.map(|x| str::from_utf8(x.to_bytes()).expect("Invalid UTF-8 sequence in column name"))
|
||||||
str::from_utf8(slice.to_bytes()).unwrap()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns the column index in the result set for a given column name.
|
/// Returns the column index in the result set for a given column name.
|
||||||
@ -73,7 +72,7 @@ impl Statement<'_> {
|
|||||||
let n = self.column_count();
|
let n = self.column_count();
|
||||||
let mut cols = Vec::with_capacity(n as usize);
|
let mut cols = Vec::with_capacity(n as usize);
|
||||||
for i in 0..n {
|
for i in 0..n {
|
||||||
let name = self.column_name(i);
|
let name = self.column_name(i).unwrap(); // safe to unwrap as we're using only verified indices
|
||||||
let slice = self.stmt.column_decltype(i);
|
let slice = self.stmt.column_decltype(i);
|
||||||
let decl_type = slice.map(|s| str::from_utf8(s.to_bytes()).expect("Invalid UTF-8 sequence in column declaration"));
|
let decl_type = slice.map(|s| str::from_utf8(s.to_bytes()).expect("Invalid UTF-8 sequence in column declaration"));
|
||||||
cols.push(Column { name, decl_type });
|
cols.push(Column { name, decl_type });
|
||||||
|
@ -224,7 +224,7 @@ impl<'stmt> Row<'stmt> {
|
|||||||
let value = self.stmt.value_ref(idx);
|
let value = self.stmt.value_ref(idx);
|
||||||
FromSql::column_result(value).map_err(|err| match err {
|
FromSql::column_result(value).map_err(|err| match err {
|
||||||
FromSqlError::InvalidType => {
|
FromSqlError::InvalidType => {
|
||||||
Error::InvalidColumnType(idx, self.stmt.column_name(idx).into(), value.data_type())
|
Error::InvalidColumnType(idx, self.stmt.column_name(idx).unwrap().into(), value.data_type())
|
||||||
}
|
}
|
||||||
FromSqlError::OutOfRange(i) => Error::IntegralValueOutOfRange(idx, i),
|
FromSqlError::OutOfRange(i) => Error::IntegralValueOutOfRange(idx, i),
|
||||||
FromSqlError::Other(err) => {
|
FromSqlError::Other(err) => {
|
||||||
@ -232,11 +232,11 @@ impl<'stmt> Row<'stmt> {
|
|||||||
}
|
}
|
||||||
#[cfg(feature = "i128_blob")]
|
#[cfg(feature = "i128_blob")]
|
||||||
FromSqlError::InvalidI128Size(_) => {
|
FromSqlError::InvalidI128Size(_) => {
|
||||||
Error::InvalidColumnType(idx, self.stmt.column_name(idx).into(), value.data_type())
|
Error::InvalidColumnType(idx, self.stmt.column_name(idx).unwrap().into(), value.data_type())
|
||||||
}
|
}
|
||||||
#[cfg(feature = "uuid")]
|
#[cfg(feature = "uuid")]
|
||||||
FromSqlError::InvalidUuidSize(_) => {
|
FromSqlError::InvalidUuidSize(_) => {
|
||||||
Error::InvalidColumnType(idx, self.stmt.column_name(idx).into(), value.data_type())
|
Error::InvalidColumnType(idx, self.stmt.column_name(idx).unwrap().into(), value.data_type())
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user