You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.query_unpaged("SELECT a, b, c FROM examples_ks.basic",&[])
63
64
.await?
64
65
.into_rows_result()?;
65
66
66
67
let displayer = result.rows_displayer();
67
-
println!("DISPLAYER:");
68
+
println!("\nlong text and special characters:");
68
69
println!("{}", displayer);
69
70
70
-
// example 2
71
+
// example 2 - blob, double, float, time, timestamp
71
72
session
72
73
.query_unpaged(
73
74
"CREATE TABLE IF NOT EXISTS examples_ks.basic4 (a int, b int, c text, d int, timest timestamp, bytes blob, fl float, db double, time1 time, primary key (a, c))",
0 commit comments