Change Value::Text to use a Cow<'static, str> instead of Vec<u8>

This commit is contained in:
pedrocarlo
2025-11-10 14:59:15 -03:00
parent c4d89662a8
commit 1db13889e3
25 changed files with 107 additions and 105 deletions

View File

@@ -236,7 +236,7 @@ pub extern "system" fn Java_tech_turso_core_TursoStatement_bindText<'local>(
stmt.stmt.bind_at(
NonZero::new(position as usize).unwrap(),
Value::build_text(text.as_str()),
Value::build_text(text),
);
SQLITE_OK
}