We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
I'm wondering if its possible to configure a remote db with a cloud provider storage solution like Google Cloud Storage.
I'm currently attempting the following;
let bucket_url = "https://storage.googleapis.com/bucket_name/sqllite.db"; let auth_token = fetch_gcp_access_token("http://storage.googleapis.com").await.unwrap(); println!("{}", bucket_url); println!("{}", auth_token); match Builder::new_remote(bucket_url.to_string(), auth_token).build().await { Ok(db) => { println!("success"); match db.connect() { Ok(conn) => { match conn.query("select 1; select 1;", ()).await { Ok(_) => todo!(), Err(err) => println!("Error: {}", err), } } Err(err) => println!("Error: {}", err), } }, Err(err) => println!("Error: {}", err), }
I'm wondering if anyone has any success with this (or any other cloud storage provider)?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi,
I'm wondering if its possible to configure a remote db with a cloud provider storage solution like Google Cloud Storage.
I'm currently attempting the following;
I'm wondering if anyone has any success with this (or any other cloud storage provider)?
The text was updated successfully, but these errors were encountered: