We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 45114fd commit 9ccfb19Copy full SHA for 9ccfb19
src/sqlite.rs
@@ -39,7 +39,7 @@ impl SqliteSessionStore {
39
/// # use async_sqlx_session::SqliteSessionStore;
40
/// # use async_session::Result;
41
/// # fn main() -> Result { async_std::task::block_on(async {
42
- /// let pool = sqlx::SqlitePool::new("sqlite:%3Amemory:").await.unwrap();
+ /// let pool = sqlx::SqlitePool::connect("sqlite:%3Amemory:").await.unwrap();
43
/// let store = SqliteSessionStore::from_client(pool)
44
/// .with_table_name("custom_table_name");
45
/// store.migrate().await;
0 commit comments