8 stable releases

2.0.4 Sep 23, 2022
2.0.3 May 20, 2022
1.0.8 May 13, 2022

#321 in Database interfaces

30 downloads per month

Apache-2.0

135KB
3.5K SLoC

Summer MyBatis

Build Status

Summer MyBatis is an ORM framework based on rust language and mybatis framework. It is used to simplify development. Developers do not need to pay attention to complex SQL. They can carry out business development through dynamic SQL dialect. It can save your time. In addition, its speed is very fast.

Features:

  • Cross platform support (linux, macos, windows)
  • No Runtimes,No Garbage Collection
  • Powerful and flexible where conditional wrapper.
  • Support multiple database drivers (mssql, mysql, postgres, sqlite).
  • Support asynchronous operation with tokio.
  • Structure automatic serialization and deserialization.

Getting Started

  • Add mybatis dependency

    mybatis = { version = "2.0.3"}
    
    /// other dependencys
    serde = { version = "1", features =  ["derive"] }
    rbson = "2.0"
    tokio = { version = "1.18.2", features = ["full"] }
    
  • Example

    Use #[mybatis_plus] macro data table mapping
    use serde::{Serialize, Deserialize};
    
    #[mybatis_plus]
    #[derive(Debug, Serialize, Deserialize)]
    pub struct Books {
        pub id: Option<String>,
        pub name: Option<String>,
        pub types: Option<String>
    }
    
    
    #[cfg(test)]
    mod tests {
        use super::*;
        use mybatis::mybatis::Mybatis;
        use mybatis::snowflake::SNOWFLAKE;
        use mybatis::plus::Mapping;
    
        #[tokio::test]
        async fn save_books() {
            let mybatis = Mybatis::new();
    
            mybatis.link("mysql://root:passw0rd@localhost:3306/test").await.unwrap();
    
            let id = SNOWFLAKE.generate();
            let cat = Books {
                id: Some(id.to_string()),
                name: Some("《Daughter of the sea》".to_string()),
                types: Some("Fairy Tales".to_string()),
            };
    
            mybatis.save(&cat,&[]).await;
        }
    }
    
    If you don't want to use macros, you can create a structure corresponding to the database table and map the method
    use mybatis::mybatis_sql::string_util::to_snake_name;
    use mybatis::plus::MybatisPlus;
    use serde::{Serialize, Deserialize};
    
    #[derive(Debug, Serialize, Deserialize)]
    pub struct Pets {
      pub id: Option<String>,
      pub name: Option<String>,
      pub birthday: Option<mybatis::DateTimeNative>,
      pub delete_flag: Option<i32>,
    }
    
    impl MybatisPlus for Pets {
    
      fn table_name() -> String {
          let type_name = std::any::type_name::<Self>();
          let mut name = type_name.to_string();
          let names: Vec<&str> = name.split("::").collect();
          name = names.get(names.len() - 1).unwrap_or(&"").to_string();
    
          to_snake_name(&name)
      }
    
      fn table_columns() -> String {
          String::from("id,name,birthday,delete_flag")
      }
      
    }
    
    #[cfg(test)]
    mod tests {
        use super::*;
        use mybatis::mybatis::Mybatis;
        use mybatis::snowflake::SNOWFLAKE;
        use mybatis::plus::{Skip, Mapping};
    
        ///
        /// Save a single object 
        ///
        #[tokio::test]
        async fn save_pets() {
            let mybatis = Mybatis::new();
    
            mybatis.link("mysql://root:passw0rd@localhost:3306/test").await.unwrap();
    
            let id = SNOWFLAKE.generate();
            let cat = Pets {
                id: Some(id.to_string()),
                name: Some("Cindy".to_string()),
                birthday: Some(mybatis::DateTimeNative::now()),
                delete_flag: Some(0),
            };
    
            mybatis.save(&cat,&[]).await;
        }
    
        ///
        /// Query a single object according to the specified field and return Option<Object>
        ///
        #[tokio::test]
        async fn query_pet_by_name() {
            let mybatis = Mybatis::new();
    
            mybatis.link("mysql://root:passw0rd@localhost:3306/test").await.unwrap();
    
            let result: Option<Pets> = mybatis.fetch_by_column("name", &"Cindy").await.unwrap();
            println!("result: {:?}", result);
        }
    }
    

Contribution

So far, we have only implemented some flexible conditional wrappers for summer-mybatis. We are developing the mapping of XML files and supporting Oracle database driver. If you have any interests and ideas, please submit to PR or contact me.

I have been working hard and are looking for various contributions. Look forward to your help!

Dependencies

~6–27MB
~444K SLoC