vote up -2 vote down star

Hi guys I am new to xslt I have an sql query:

SELECT name, language, Year($Date), Month($Date), DayOfMonth($Date), 
%FeatureThumbnail.size, %SimpleDocumentContent.content
WHERE documentType = 'News' AND $Date <= CurrentDate() 
AND InCollection('arocha') AND language = 'en'
AND $NotOnMainPage = 'false' AND $NewsSubType = 'by-us'

and I am trying to display the results i.e.

<xsl:for-each select="sql_result">
    <xsl:value-of select="name"/>
    <xsl:value-of select="language"/>
</xsl:for-each>

so how do i create the sql_result? Does this make sense?

All I am trying to do is display the results of the sql query? Theoretically it is simple. If I were using php I would out

$result = mysql_query("SELECT name, language, Year($Date), Month($Date), DayOfMonth($Date), 
%FeatureThumbnail.size, %SimpleDocumentContent.content
WHERE documentType = 'News' AND $Date <= CurrentDate() 
AND InCollection('arocha') AND language = 'en'
AND $NotOnMainPage = 'false' AND $NewsSubType = 'by-us'
");

while($row = mysql_fetch_array($result)) {
    echo $row['name'];
    echo $row['language'];
}

I am trying to build a site for a client, and they have to use Daisy CMS the sql query I have used returns all the news items to be displayed on the front page. Now all I am trying to do is display them on the front page.

Daisy seems to have little to no useful documentation.

flag

75% accept rate
No. It makes no sense. Can you provide some more information? – krosenvold Dec 12 '08 at 11:56
Can you provide us more information about the context of this? – bruno conde Dec 12 '08 at 12:06
How do you plan to execute the query? – bruno conde Dec 12 '08 at 12:09
sorry guys, I have tried to explain it slightly better. As I said I am brand new to xslt, I use php. And I appreciate your help. It isnt a project that I would have chosen to do, but unfortunately it wasnt my decision. – sydlawrence Dec 12 '08 at 12:12
Where is your FROM clause? What are the percent signs for? What (if it's not PHP) are you using to communicate to the DB server? – Tomalak Dec 12 '08 at 12:18
show 1 more comment

closed as no longer relevant by Tomalak Dec 12 '08 at 13:35

2 Answers

vote up 1 vote down

Well XSLT only works against an XML input, so you can't simply take the results of a SQL query in tabular form and apply an XSLT stylesheet to it.

If you want to build XML from a database query you either need to:

  1. Use the built-in capabilities of the database (in SQL Server there is the FOR XML syntax, but I don't know what MySql has), or

  2. Manually write the XML using the XML framework of whatever language or platform you're using, by looping through the result set in code and adding elements/attributes as appropriate.

In either case you'll already have XML so you don't really need to use XSLT. Why do you want to use XSLT in the first place?

link|flag
vote up 0 vote down check

Sorry guys, it appears that the problems I am having are due to the rubbish CMS that my clients are using. And the fact that for an open source CMS seems very closed.

Sorry for being a pain. Thank you for all of your comments. I provided you with pretty much all the info my client provided.

This question is no longer open

link|flag
Closed as per your request. – Tomalak Dec 12 '08 at 13:43

Not the answer you're looking for? Browse other questions tagged or ask your own question.