MyBatisConnExecutor

Struct MyBatisConnExecutor 

Source
pub struct MyBatisConnExecutor<'a> {
    pub conn: DBPoolConn<'a>,
    pub rb: &'a Mybatis,
}

Fields§

§conn: DBPoolConn<'a>§rb: &'a Mybatis

Implementations§

Source§

impl<'b> MyBatisConnExecutor<'b>

Source

pub fn as_executor<'a>(&'a mut self) -> MyBatisExecutor<'a, 'b>

Source§

impl<'a> MyBatisConnExecutor<'a>

Source

pub async fn begin(self) -> Result<MyBatisTxExecutor<'a>>

Trait Implementations§

Source§

impl<'a> Debug for MyBatisConnExecutor<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'a> ExecutorMut for MyBatisConnExecutor<'_>

Source§

fn exec<'life0, 'life1, 'async_trait>( &'life0 mut self, sql: &'life1 str, args: Vec<Bson>, ) -> Pin<Box<dyn Future<Output = Result<DBExecResult, Error>> + Send + 'async_trait>>
where Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

fn fetch<'life0, 'life1, 'async_trait, T>( &'life0 mut self, sql: &'life1 str, args: Vec<Bson>, ) -> Pin<Box<dyn Future<Output = Result<T, Error>> + Send + 'async_trait>>
where T: DeserializeOwned + 'async_trait, Self: 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

Source§

impl<'r, 'inner> From<&'r mut MyBatisConnExecutor<'inner>> for MyBatisExecutor<'r, 'inner>

Source§

fn from(arg: &'r mut MyBatisConnExecutor<'inner>) -> Self

Converts to this type from the input type.
Source§

impl MappingMut for MyBatisConnExecutor<'_>

Source§

fn save_by_wrapper<'life0, 'life1, 'life2, 'async_trait, T, R>( &'life0 mut self, table: &'life1 T, w: Wrapper, skips: &'life2 [Skip<'_>], ) -> Pin<Box<dyn Future<Output = Result<R>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, R: DeserializeOwned + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

save by wrapper, use fetch.
Source§

fn save<'life0, 'life1, 'life2, 'async_trait, T>( &'life0 mut self, table: &'life1 T, skips: &'life2 [Skip<'_>], ) -> Pin<Box<dyn Future<Output = Result<DBExecResult>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

save one entity to database
Source§

fn save_batch<'life0, 'life1, 'life2, 'async_trait, T>( &'life0 mut self, tables: &'life1 [T], skips: &'life2 [Skip<'_>], ) -> Pin<Box<dyn Future<Output = Result<DBExecResult>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

save batch makes many value into only one sql. make sure your data do not too long! Read more
Source§

fn save_batch_slice<'life0, 'life1, 'life2, 'async_trait, T>( &'life0 mut self, tables: &'life1 [T], slice_len: usize, skips: &'life2 [Skip<'_>], ) -> Pin<Box<dyn Future<Output = Result<DBExecResult>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

save batch slice makes many value into many sql. make sure your slice_len do not too long! slice_len = 0 : save all data slice_len != 0 : save data with slice_len everytime until save all data Read more
Source§

fn remove_by_wrapper<'life0, 'async_trait, T>( &'life0 mut self, w: Wrapper, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait,

remove database record by a wrapper
Source§

fn remove_by_column<'life0, 'life1, 'async_trait, T, P>( &'life0 mut self, column: &'life1 str, value: P, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, P: Serialize + Send + Sync + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

remove database record by id
Source§

fn remove_batch_by_column<'life0, 'life1, 'life2, 'async_trait, T, P>( &'life0 mut self, column: &'life1 str, values: &'life2 [P], ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, P: Serialize + Send + Sync + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

remove batch id for Example : rb.remove_batch_by_column::(&[“1”.to_string(),“2”.to_string()]).await; [mybatis] Exec ==> delete from biz_activity where id IN ( ? , ? )
Source§

fn update_by_wrapper<'life0, 'life1, 'life2, 'async_trait, T>( &'life0 mut self, table: &'life1 T, w: Wrapper, skips: &'life2 [Skip<'_>], ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

update_by_wrapper skips: use &[Skip::Value(&rbson::Bson::Null), Skip::Column(“id”), Skip::Column(column)] will skip id column and null value param
Source§

fn update_by_column<'life0, 'life1, 'life2, 'async_trait, T>( &'life0 mut self, column: &'life1 str, table: &'life2 T, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

update database record by id update sql will be skip null value and id column
Source§

fn update_batch_by_column<'life0, 'life1, 'life2, 'async_trait, T>( &'life0 mut self, column: &'life1 str, args: &'life2 [T], ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

remove batch database record by args
Source§

fn fetch_by_wrapper<'life0, 'async_trait, T>( &'life0 mut self, w: Wrapper, ) -> Pin<Box<dyn Future<Output = Result<T>> + Send + 'async_trait>>
where T: MybatisPlus + DeserializeOwned + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait,

fetch database record by a wrapper
Source§

fn fetch_count<'life0, 'async_trait, T>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait,

count database record
Source§

fn fetch_count_by_wrapper<'life0, 'async_trait, T>( &'life0 mut self, w: Wrapper, ) -> Pin<Box<dyn Future<Output = Result<u64>> + Send + 'async_trait>>
where T: MybatisPlus + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait,

count database record by a wrapper
Source§

fn fetch_by_column<'life0, 'life1, 'async_trait, T, P>( &'life0 mut self, column: &'life1 str, value: P, ) -> Pin<Box<dyn Future<Output = Result<T>> + Send + 'async_trait>>
where T: MybatisPlus + DeserializeOwned + 'async_trait, P: Serialize + Send + Sync + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

fetch database record by value
Source§

fn fetch_list_by_wrapper<'life0, 'async_trait, T>( &'life0 mut self, w: Wrapper, ) -> Pin<Box<dyn Future<Output = Result<Vec<T>>> + Send + 'async_trait>>
where T: MybatisPlus + DeserializeOwned + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait,

fetch database record list by a wrapper
Source§

fn fetch_list<'life0, 'async_trait, T>( &'life0 mut self, ) -> Pin<Box<dyn Future<Output = Result<Vec<T>>> + Send + 'async_trait>>
where T: MybatisPlus + DeserializeOwned + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait,

fetch database record list for all
Source§

fn fetch_list_by_column<'life0, 'life1, 'life2, 'async_trait, T, P>( &'life0 mut self, column: &'life1 str, column_values: &'life2 [P], ) -> Pin<Box<dyn Future<Output = Result<Vec<T>>> + Send + 'async_trait>>
where T: MybatisPlus + DeserializeOwned + 'async_trait, P: Serialize + Send + Sync + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

fetch database record list by a id array
Source§

fn fetch_page_by_wrapper<'life0, 'life1, 'async_trait, T>( &'life0 mut self, w: Wrapper, page: &'life1 dyn IPageRequest, ) -> Pin<Box<dyn Future<Output = Result<Page<T>>> + Send + 'async_trait>>
where T: MybatisPlus + DeserializeOwned + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait,

fetch page database record list by a wrapper
Source§

fn fetch_page<'life0, 'life1, 'life2, 'async_trait, T>( &'life0 mut self, sql: &'life1 str, args: Vec<Bson>, page_request: &'life2 dyn IPageRequest, ) -> Pin<Box<dyn Future<Output = Result<Page<T>>> + Send + 'async_trait>>
where T: DeserializeOwned + Serialize + Send + Sync + 'async_trait, Self: Send + 'async_trait, 'life0: 'async_trait, 'life1: 'async_trait, 'life2: 'async_trait,

fetch page result(prepare sql)
Source§

impl MybatisRef for MyBatisConnExecutor<'_>

Source§

fn get_mybatis(&self) -> &Mybatis

Source§

fn driver_type(&self) -> Result<DriverType>

Source§

fn bind_arg<'arg>( &self, driver_type: &DriverType, sql: &'arg str, arg: Vec<Bson>, ) -> Result<DBQuery<'arg>, Error>

bind arg into DBQuery

Auto Trait Implementations§

§

impl<'a> !Freeze for MyBatisConnExecutor<'a>

§

impl<'a> !RefUnwindSafe for MyBatisConnExecutor<'a>

§

impl<'a> Send for MyBatisConnExecutor<'a>

§

impl<'a> !Sync for MyBatisConnExecutor<'a>

§

impl<'a> Unpin for MyBatisConnExecutor<'a>

§

impl<'a> !UnwindSafe for MyBatisConnExecutor<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> ErasedDestructor for T
where T: 'static,