code: sql,hpp,dbal (1 files)

This commit is contained in:
2025-12-26 05:35:51 +00:00
parent 1081ec4fd6
commit eb0ed115e6

View File

@@ -461,7 +461,7 @@ protected:
}
std::string placeholder(size_t index) const {
if (dialect_ == Dialect::Postgres) {
if (dialect_ == Dialect::Postgres || dialect_ == Dialect::Prisma) {
return "$" + std::to_string(index);
}
return "?";