xorm/dialects
KN4CK3R 529a264d8e Fix sqlite multiline query parse (#2367)
The app "DB Browser for SQLite" produces multiline queries in the `sqlite_master` table which xorm can't parse.

Examples:
```
CREATE TABLE "push_mirror"
(
    id             INTEGER           not null
        primary key autoincrement,
    repo_id        INTEGER,
    remote_name    TEXT,
    interval       INTEGER,
    created_unix   INTEGER,
    last_update    INTEGER,
    last_error     TEXT,
    sync_on_commit INTEGER default 0 not null
, `remote_address` TEXT NULL)
```
```
CREATE INDEX "IDX_audit_event_action" ON "audit_event" (
	"action"
)
```

Reviewed-on: https://gitea.com/xorm/xorm/pulls/2367
Reviewed-by: Lunny Xiao <xiaolunwen@gmail.com>
Co-authored-by: KN4CK3R <admin@oldschoolhack.me>
Co-committed-by: KN4CK3R <admin@oldschoolhack.me>
2023-12-01 07:07:35 +00:00
..
dameng.go Mysql support a new tag Collate (#2283) 2023-07-01 03:40:09 +00:00
dialect.go Some refactor (#2292) 2023-07-12 07:53:25 +00:00
driver.go refactor some code (#2000) 2021-07-21 00:12:20 +08:00
filter.go Fix question mark replacement on postgres (#2202) 2023-07-12 13:22:32 +00:00
filter_test.go Fix question mark replacement on postgres (#2202) 2023-07-12 13:22:32 +00:00
gen_reserved.sh Move reserve words related files into dialects sub package (#1544) 2020-02-24 10:05:10 +00:00
mssql.go Revert "Fix deleted tag attribute zeroTime is not DatabaseTZ (#2299)" (#2341) 2023-10-17 09:41:42 +00:00
mssql_test.go Merge core package back into the main repository and split into serval sub packages. (#1543) 2020-02-24 08:53:18 +00:00
mysql.go fix the error in mysql: unknown colType UNSIGNED FLOAT (#2143) 2023-09-16 15:43:12 +00:00
oracle.go modify limit offset implement (#2188) 2023-09-20 02:07:03 +00:00
oracle_test.go Oracle : Local Naming Method (#1515) 2020-03-23 02:03:04 +00:00
pg_reserved.txt Move reserve words related files into dialects sub package (#1544) 2020-02-24 10:05:10 +00:00
postgres.go fix KingbaseES version (#2335) 2023-09-24 03:52:50 +00:00
postgres_test.go Fix postgres driver datasource name parse (#2012) 2021-07-28 10:03:09 +08:00
quote.go Improve quote policy (#1567) 2020-03-06 07:48:32 +00:00
sqlite3.go Fix sqlite multiline query parse (#2367) 2023-12-01 07:07:35 +00:00
sqlite3_test.go Fix sqlite multiline query parse (#2367) 2023-12-01 07:07:35 +00:00
table_name.go oracle数据库不再拼接AS (#2109) 2022-03-31 23:57:40 +08:00
table_name_test.go Move statement as a sub package (#1564) 2020-02-28 12:29:08 +00:00
time.go Change schemas.Column to use int64 (#2160) 2022-07-14 13:55:24 +08:00
time_test.go Add dialects/time_test.go (#2169) 2023-07-26 00:57:40 +00:00