root/java/sql-vyuka/src/java/cz/frantovo/sql/vyuka/dao/HistorieDAO.sql.xml @ 18:e7a5763c789c

Revision 18:e7a5763c789c, 0.5 KB (checked in by František Kučera <franta-hg@…>, 15 years ago)

Lokalizace v HTML (tlačítka), nastavení search_path proměnné.

Line 
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>
Note: See TracBrowser for help on using the browser.