Implementation of Dialect for MySQL databases.
| 13 | |
| 14 | // Implementation of Dialect for MySQL databases. |
| 15 | type MySQLDialect struct { |
| 16 | |
| 17 | // Engine is the storage engine to use "InnoDB" vs "MyISAM" for example |
| 18 | Engine string |
| 19 | |
| 20 | // Encoding is the character encoding to use for created tables |
| 21 | Encoding string |
| 22 | } |
| 23 | |
| 24 | func (d MySQLDialect) QuerySuffix() string { return ";" } |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected