bappity

joined 1 year ago
[–] [email protected] 135 points 1 month ago* (last edited 1 month ago)

yeah sure, happy teams start with jira but they end up as angry and sad teams

[–] [email protected] 1 points 2 months ago* (last edited 2 months ago)

I switched to using tiberius

bit different but not too hard don't have my code on hand atm but this is how I started with it

    let mut config = Config::new();
    config.host("your_server_name");
    config.database("your_database_name");
    config.authentication(tiberius::AuthMethod::sql_server("your_username", "your_password"));
    config.trust_cert();

    let tcp = TcpStream::connect(config.get_addr()).await?;
    tcp.set_nodelay(true)?;
    
    let mut client = Client::connect(config, tcp.compat_write()).await?;

then I did something along the lines of

fn main() {
        let stream = client.query(&query, &[]).await?;
        let rows = stream.into_first_result().await?;

        let db_data: Vec<MyObject> = rows.into_iter().map(mapping_function_i_made_for_myobject).collect();
}

fn mapping_function_i_made_for_myobject(row: Row) -> MyObject {
    MyObject {
        my_date_field: row.get::<NaiveDateTime, _>("my_date_field").map(|dt| Local.from_local_datetime(&dt).unwrap()),
    }
}

[–] [email protected] 4 points 2 months ago* (last edited 2 months ago) (4 children)

just started out rust and made a massive thing with sqlx only to find out the latest versions don't have mssql support anymore and the last version that did doesn't support decoding DateTime<Utc> 😭😭😭

had to rewrite the whole thing again with Tiberius, painful yet educational

[–] [email protected] 15 points 2 months ago* (last edited 2 months ago) (3 children)

certificates fucking destroy everything in my work for an hour once every year because of expiry

[–] [email protected] 38 points 2 months ago (12 children)

I don't get the appeal of azure because of things like this.

annoying how much they try to push it

[–] [email protected] 70 points 2 months ago* (last edited 2 months ago)

oh look they care about it now it's affecting them

[–] [email protected] 54 points 2 months ago (2 children)

"waaaaah please give us exemption so we can profit off of stolen works waaaaaaaahhhhhh"

[–] [email protected] 7 points 2 months ago

You can find utterly vile replies from blue checks on that site now, even on the most heavenly, innocent, morally correct tweet. It's insane.

[–] [email protected] 4 points 3 months ago (1 children)

honestly the only thing that is stopping me moving rn is Google Pay contactless for my bank cards and my bank app having ridiculous requirements with safetycheck.

[–] [email protected] 6 points 3 months ago

I thought they couldn't get worse D:

[–] [email protected] 41 points 3 months ago

profiting off of user generated content 😒

[–] [email protected] 2 points 3 months ago

AGI coming tomorrow! (tomorrow never comes)

 

only in the UK...

 

so funny! ha ha!

view more: next ›