java/sql-vyuka/src/java/cz/frantovo/sql/vyuka/dao/HistorieDAO.sql.xml
author František Kučera <franta-hg@frantovo.cz>
Sat May 30 01:26:29 2009 +0200 (2009-05-30)
changeset 18 e7a5763c789c
parent 17 08cd160ec1c6
permissions -rw-r--r--
Lokalizace v HTML (tlačítka), nastavení search_path proměnné.
     1 <?xml version="1.0" encoding="UTF-8"?>
     2 <!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd">
     3 <properties>
     4     <entry key="NACTI">
     5         <![CDATA[
     6         SELECT *
     7         FROM historie
     8         WHERE   id_sezeni = ?
     9                 AND sql IS NOT NULL
    10                 AND sql <> ''
    11         ORDER BY id DESC
    12         LIMIT 20
    13         ]]>
    14     </entry>
    15     <entry key="ULOZ">
    16         <![CDATA[
    17         INSERT INTO historie (sql, id_sezeni, ip_adresa) VALUES (?,?,?)
    18         ]]>
    19     </entry>
    20 </properties>