mirror of
https://github.com/oven-sh/bun
synced 2026-02-18 06:41:50 +00:00
feat(MYSQL) Bun.SQL mysql support (#21968)
### What does this PR do? Add MySQL support, Refactor will be in a followup PR ### How did you verify your code works? A lot of tests --------- Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com> Co-authored-by: cirospaciari <6379399+cirospaciari@users.noreply.github.com>
This commit is contained in:
5
src/sql/shared/SQLQueryResultMode.zig
Normal file
5
src/sql/shared/SQLQueryResultMode.zig
Normal file
@@ -0,0 +1,5 @@
|
||||
pub const SQLQueryResultMode = enum(u2) {
|
||||
objects = 0,
|
||||
values = 1,
|
||||
raw = 2,
|
||||
};
|
||||
Reference in New Issue
Block a user