In Plone I have a Z SQL methood:
SELECT [aapp_qtitle]
,[aapp_mtitle]
,[aapp_sdate]
,[aapp_duration]
FROM [AAPP].[dbo].[M_PageBodyElement] where [aapp_id]=<dtml-sqlvar aapp_id type=int>
How can I set the value of aapp_id in my Plone page code?
OK thanks Matthew what's the exact template code? I've tried:
<p tal:define="AAPPInfo python:here.get/AAPPInfo(aapp_id=100003).dictionaries()"></p>
<p tal:repeat="records context/AAPPInfo">
<span tal:replace="records/aapp_qtitle">Title: </span><br>
But I get name 'AAPPInfo' is not defined error.
If the ZSQL method was called 'getAAPPInfo', for example, you would call it from Python like this:
or similar.
From a Page Template you need to use the expression
tal:define="AAPPInfo python:here.getAAPPInfo(aapp_id=1).dictionaries()
and then you can iterate through that as normal.AAPPInfo was a guess at what you called your SQL method. You also have ignored my syntax and written your own, that's why it's not working.