2019-04-03 20:58:22 -04:00
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct MySQL;
|
|
|
|
|
|
|
|
impl DatabaseDriver for MySQL {
|
2019-04-05 14:51:31 -04:00
|
|
|
/// Get which characters are used to delimit identifiers
|
|
|
|
/// such as tables, and columns
|
|
|
|
fn _quotes(&self) -> (char, char) {
|
|
|
|
('`','`')
|
2019-04-03 20:58:22 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
fn query(&self, _query: &str) -> Result<(), ()> {
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
}
|