Parse parses a sql statement string and returns a list of Statements.
(sql string)
| 230 | |
| 231 | // Parse parses a sql statement string and returns a list of Statements. |
| 232 | func Parse(sql string) (statements.Statements, error) { |
| 233 | return ParseWithInt(sql, defaultNakedIntType) |
| 234 | } |
| 235 | |
| 236 | // ParseWithInt parses a sql statement string and returns a list of |
| 237 | // Statements. The INT token will result in the specified TInt type. |
no test coverage detected
searching dependent graphs…