spand
10/29/2021, 7:11 AMbooleanParam()
and booleanLiteral()
? I can look at the code but the different use cases escape me. They seem extremely similartapac
11/05/2021, 2:18 PM*Literal
will always inlined in SQL query as a value while *Param
will be used as a prepared statement param.
like : WHERE Table.col = true
vs WHERE Table.col = ?
The result of execution will be the samespand
11/09/2021, 8:44 AM