|
| 1 | +//! Custom SQL exceptions and errors |
| 2 | +use inherent::inherent; |
| 3 | + |
| 4 | +use crate::backend::SchemaBuilder; |
| 5 | + |
| 6 | +/// SQL Exceptions |
| 7 | +#[derive(Debug, Clone, PartialEq)] |
| 8 | +pub struct ExceptionStatement { |
| 9 | + pub(crate) message: String, |
| 10 | +} |
| 11 | + |
| 12 | +impl ExceptionStatement { |
| 13 | + pub fn new(message: String) -> Self { |
| 14 | + Self { message } |
| 15 | + } |
| 16 | +} |
| 17 | + |
| 18 | +pub trait ExceptionStatementBuilder { |
| 19 | + /// Build corresponding SQL statement for certain database backend and return SQL string |
| 20 | + fn build<T: SchemaBuilder>(&self, schema_builder: T) -> String; |
| 21 | + |
| 22 | + /// Build corresponding SQL statement for certain database backend and return SQL string |
| 23 | + fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String; |
| 24 | + |
| 25 | + /// Build corresponding SQL statement for certain database backend and return SQL string |
| 26 | + fn to_string<T: SchemaBuilder>(&self, schema_builder: T) -> String { |
| 27 | + self.build(schema_builder) |
| 28 | + } |
| 29 | +} |
| 30 | + |
| 31 | +#[inherent] |
| 32 | +impl ExceptionStatementBuilder for ExceptionStatement { |
| 33 | + pub fn build<T: SchemaBuilder>(&self, schema_builder: T) -> String { |
| 34 | + let mut sql = String::with_capacity(256); |
| 35 | + schema_builder.prepare_exception_statement(self, &mut sql); |
| 36 | + sql |
| 37 | + } |
| 38 | + |
| 39 | + pub fn build_any(&self, schema_builder: &dyn SchemaBuilder) -> String { |
| 40 | + let mut sql = String::with_capacity(256); |
| 41 | + schema_builder.prepare_exception_statement(self, &mut sql); |
| 42 | + sql |
| 43 | + } |
| 44 | + |
| 45 | + pub fn to_string<T: SchemaBuilder>(&self, schema_builder: T) -> String; |
| 46 | +} |
0 commit comments