commit | author | age
|
5eee56
|
1 |
<?xml version="1.0" encoding="UTF-8" standalone="no"?> |
U |
2 |
<!DOCTYPE properties SYSTEM "http://java.sun.com/dtd/properties.dtd"> |
|
3 |
<properties> |
|
4 |
<comment> |
|
5 |
SQL-Kommandos der Anwendung radiozentrale |
|
6 |
</comment> |
|
7 |
<entry key="dbVorhanden"> |
|
8 |
select s.schemaname, t.tablename |
|
9 |
from SYS.SYSSCHEMAS as s, |
|
10 |
SYS.SYSTABLES as t |
|
11 |
where s.schemaid = t.schemaid |
|
12 |
and s.schemaname = 'APP' |
|
13 |
and t.tablename = 'SENDER' |
|
14 |
</entry> |
|
15 |
<entry key="incrementKey"> |
|
16 |
update app.keytable |
|
17 |
set key_next = ? |
|
18 |
where key_name = ? |
|
19 |
and key_next = ? |
|
20 |
</entry> |
|
21 |
<entry key="getNextKey"> |
|
22 |
select key_next from |
|
23 |
app.keytable |
|
24 |
where key_name = ? |
|
25 |
</entry> |
|
26 |
</properties> |