我在nodejs中使用java -jar floreantpos.jar
模块与mariadb连接。
我的疑问是:
mariasql
当我将固定值传递给limit时,此查询正常工作。
现在我尝试从参数中获取值。
select * from products where id=1 order by timestamp DESC LIMIT 0,10
此查询引发以下错误。
select * from products where id=:pid order by timestamp DESC LIMIT :start,:end
其中,它接受来自where子句的参数的值。