mozIStorageStatementParams 编辑
This interface has no defined properties, but has properties based on the named parameters found in the SQL from the statement it was accessed off of. For example, say you create a statement like so:
var statement = dbConn.createStatement("SELECT * FROM table_name WHERE id = :item_id");
This object would have one property, item_id
, that you can use to bind a value to that named parameter like so:
statement.params.item_id = 2;
For more details on why you should bind parameters as opposed to hard-coding them into your statement, please see the overview document about binding parameters.
Enumeration of properties
You can also enumerate all the properties on this object with a for..in
enumeration:
// valuesToBind is an object that contains key-value pairs
// to bind to the statement before executing it.
for (let param in statement.params)
statement.params[param] = valuesToBind[param];
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论