mohs8421

Results 17 issues of mohs8421

I am currently investigating, whether I can replace the outdated nusoap library with yours. However I find one thing alarming in my test implementation. The application is rather large, so...

## PR Info Purpose of this feature is to not convert errors given from sqlx into strings to ease further analysis of the error and react to it accordingly. This...

This morning I tried Speedmeter while cycling to work. The current speed seemed to be accurate in the most cases (difference to actual cycling computer usually 1km/h). I travelled my...

Interpreting errors now is usually no longer independent of the database, so the error handling functions in sqlx_common.rs have to be split up. Since the interpretation depends on the backend,...

## Motivation We had some questions regarding the differences between sea-orm and diesel are. While there is an article on the manual about this question, it does not go into...

good first issue

## Motivation When designing entities it is pretty common to write constraints into the datalayer. Sea-orm provides the `ActiveModelBehaviour` to allow users to fill in these pieces. However, it is...

I would like to sync the system clock and get unixtimestamps, but I am unsure how to do it. I already found out, that I have to start with this:...

I would like to add some minimal security to my esp-based http server, I see that embedded-svc provides some utilities to achieve that goal, but it is hard to understand...

## PR Info This PR implements a test for the stated issue and aims to close it. - Closes https://github.com/SeaQL/sea-orm/issues/1558 ## Bug Fixes - fixes columns that have a "select_as"...

## Description when trying to use the "select_as" attribute like shown here: ```rust #[derive(Clone, Debug, PartialEq, Eq, DeriveEntityModel)] #[sea_orm(table_name = "baker")] pub struct Model { #[sea_orm(primary_key)] pub id: i32, pub...