remix/data-table · Type

View Source

SqlStatement

Summary

Parameterized SQL payload.

The text may contain positional placeholders (?) or dialect-native placeholders (for example $1, $2) depending on compiler stage.

Signature

type SqlStatement = {
  text: string
  values: unknown[]
}