SQLDialect represents different SQL database dialects. Each dialect may have specific keywords that are not part of standard SQL.
| 23 | // SQLDialect represents different SQL database dialects. |
| 24 | // Each dialect may have specific keywords that are not part of standard SQL. |
| 25 | type SQLDialect string |
| 26 | |
| 27 | const ( |
| 28 | // DialectUnknown represents an unknown or unspecified SQL dialect |
no outgoing calls
no test coverage detected