From 916eeb28fc5af534d1ceb8b535bf4ff607e03b8b Mon Sep 17 00:00:00 2001 From: burncitiesburn Date: Fri, 2 Aug 2024 15:24:14 +1000 Subject: [PATCH] Update cfqueryparam.json Add example of using an expression in null="" attribute --- data/en/cfqueryparam.json | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/data/en/cfqueryparam.json b/data/en/cfqueryparam.json index 7b4c72213..c841ae96e 100644 --- a/data/en/cfqueryparam.json +++ b/data/en/cfqueryparam.json @@ -163,6 +163,13 @@ "code": "\n SELECT id,title,story\n FROM news\n WHERE id IN ()\n", "result": "" }, + { + "title": "Using an expressions to controll null values", + "description": "Shows a basic example of using an expression to control whether null is passed to the queryparam", + "code": "\n INSERT into test ( key, value )\n VALUES(\n \n \n )\n", + "result": "", + "runnable": false + }, { "title": "cfscript equivalent of cfqueryparam", "description": "CF11+ script syntax using queryExecute and struct notation",