use rdf_model::{AnyStatement, HeapQuad, HeapTerm, SAMPLE_QUAD};
use rdf_store::{ReadTransaction, Store, WriteTransaction};
use rdf_store_sqlite::SqliteStore;
#[tokio::main]
async fn main() -> Result<(), Box<dyn core::error::Error>> {
let mut store = SqliteStore::new().await?;
eprintln!("{:?}", store);
let mut tx = store.write().await.unwrap();
let count = tx.count(None::<AnyStatement<HeapTerm>>).await.unwrap();
eprintln!("{:?}", count);
tx.insert(&HeapQuad::from(&SAMPLE_QUAD)).await.unwrap();
let count = tx.count(None::<AnyStatement<HeapTerm>>).await.unwrap();
eprintln!("{:?}", count);
Ok(())
}