Skip to main content

@sqb/mariadb-dialect

SQB's dialect plugin for MariaDB — teaches @sqb/builder how to render MariaDB's SQL syntax.

No exported API

This package exports nothing. Its entire effect is a side effect of importing it: it constructs an internal MariadbSerializer (not exported) and registers it with SerializerRegistry for dialect: 'mariadb'.

import '@sqb/mariadb-dialect';

@sqb/mariadb (the connection adapter) imports this package internally as part of its own entry point, so you don't need to import it yourself when using @sqb/mariadb — only when using @sqb/builder standalone (no @sqb/connect/adapter) and you still want .generate({ dialect: 'mariadb' }) to render MariaDB SQL.

See also