Milen Denev

Results 5 issues of Milen Denev

Stack overflow exception then trying to get sqlite schema on an empty turso database on Windows (only). Works on linux (Fedora v40), unknown for MacOs. ``` use libsql::{Builder, Connection}; #[tokio::main]...

```rust //For non-production #[cfg(debug_assertions)] let addr: &str = "127.0.0.1"; //For production #[cfg(not(debug_assertions))] let addr: &str = "0.0.0.0"; //Rust TLS Config let config = create_server_config(); //Json Configuration for Actix Web Server...

To create a database and a corresponding table (inheriting it's name from the Struct name) ```rust use rs_aio_db::Reflect; use rs_aio_db::db::aio_database::AioDatabase; #[derive(Default, Clone, Debug, Reflect)] pub struct Person { pub name:...

![image](https://github.com/user-attachments/assets/3da0418e-b2ca-49d3-848b-479308ebe17c) ![image](https://github.com/user-attachments/assets/9d041089-4e81-4312-a0a7-46df9a58add2) ```rust #[cfg(not(target_os = "windows"))] use std::os::unix::ffi::OsStrExt; #[cfg(target_os = "windows")] use std::os::windows::ffi::OsStrExt; #[cfg(not(feature = "rusqlite"))] let conn = unsafe { #[cfg(target_os = "windows")] let path = std::ffi::CString::new(path.as_ref().as_os_str().as_encoded_bytes()) .map_err(|_| crate::error::Error::Bug("invalid...