ReadonlynameThe name of the store (e.g. 'mongodb', 'redis', 'dynamodb')
ReadonlylibraryThe client library being used
Returns the underlying mysql2 connection for anything not wrapped here.
Execute a SQL statement over the MySQL wire with optional positional
params and return the result rows (the first element of mysql2's
[rows, fields] tuple).
Optionalparams: unknown[]Batch-insert rows into table via a single parameterized
INSERT INTO table (cols) VALUES (...) over the MySQL wire. Columns are
taken from the first row. Returns the driver result (OkPacket).
For high-throughput bulk loading, use Doris Stream Load (HTTP) instead — see the module header.
DorisStorewraps amysql2connection to a Doris frontend and exposesquery(sql, params)for reads/DDL andingest(table, rows)for batched wire-level inserts.