Table of Contents

  • Introduction
  • Information Tags
  • String Tags
  • Variable Tags
  • URL Tags
  • If Tags
  • Graphics Tags
  • Database Tags
    · Introduction
    · sqlquery
    · sqltable
    · sqloutput
  • Programming Tags
  • Supports System
  • SSI
  • htaccess
  • Image Maps
  • Appendix
  •  <sqloutput> ... </sqloutput> 
    <sqloutput> is defined in the SQL module.

    Insert the results of a SQL query into HTML or RXML. <sqloutput> works like all output tags. By default anything within #'s will be interpreted as a variable. Thus #column# will be replaced by the column value. ## will be replaced by a #. The inserted SQL results will by default be HTML quoted, < will for example be quoted to &lt;. See the formoutput page for more information about quoting.

    The <sqloutput> tag will copy its contents and replace the columns for each row in the result of the query. If the result is empty, the <sqloutput> will not return anything.

    Within the <sqloutput> the column values can be accessed as other variables. This is useful for transferring the result to normal RXML variables.

    Attributes
    host, query, quiet, parse,  

    Attributes

    host=database
    Which database to connect to, usually a symbolic name. If omitted the default database will be used.

    query=SQL query
    The actual SQL-query.

    quiet
    Do not show any errors in the page, in case the query fails.

    parse
    If specified, the query will be parsed by the RXML parser. Useful if you wish to dynamically build the query.
    Example
    source code
    
    
        
    Country Population
    #country# #population#
    "=> >

    result
    Country Population
    #country# #population#

    source code
    
    
      
    
    
    The population of Sweden is .
    
    "=> >

    result The population of Sweden is .