sql-query-identifier icon indicating copy to clipboard operation
sql-query-identifier copied to clipboard

FEAT: Support a variety of parameter types per syntax type

Open rathboma opened this issue 3 years ago • 0 comments

For example, Postgresql supports:

  • $1
  • :paramname

SQLite: https://www.sqlite.org/c3ref/bind_blob.html

  • ?
  • ?NNN
  • :VVV
  • @VVV
  • $VVV

MySQL:

  • ?? - identifiers
  • ? - values https://github.com/mysqljs/mysql#preparing-queries

More research needed on the others

rathboma avatar Jul 22 '22 15:07 rathboma