File: edit_server.sql

package info (click to toggle)
teamspeak-server 2.0.24.1%2Bdebian-1
  • links: PTS
  • area: non-free
  • in suites: lenny
  • size: 3,076 kB
  • ctags: 215
  • sloc: sql: 927; sh: 232; makefile: 45
file content (24 lines) | stat: -rw-r--r-- 1,011 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
UPDATE ts2_servers
SET s_server_name = :sName,
    s_server_welcomemessage = :sWelcome,
    i_server_maxusers = :iMaxUser,
    i_server_udpport = :iServerPort,
    s_server_password = :sPassword,
    b_server_clan_server = :bClanServer,
    b_server_allow_codec_celp51 = :bCelp51,
    b_server_allow_codec_celp63 = :bCelp63,
    b_server_allow_codec_gsm148 = :bGSM148,
    b_server_allow_codec_gsm164 = :bGSM164,
    b_server_allow_codec_celp52 = :bCelp52,
    b_server_allow_codec_speex2150 = :bSpeex2150,
    b_server_allow_codec_speex3950 = :bSpeex3950,
    b_server_allow_codec_speex5950 = :bSpeex5950,
    b_server_allow_codec_speex8000 = :bSpeex8000,
    b_server_allow_codec_speex11000 = :bSpeex11000,
    b_server_allow_codec_speex15000 = :bSpeex15000,
    b_server_allow_codec_speex18200 = :bSpeex18200,
    b_server_allow_codec_speex24600 = :bSpeex24600,
    s_server_webposturl = :sWebPostURL,
    s_server_weblinkurl = :sWebLinkURL,
    b_server_active = :bActive
WHERE i_server_id = :iServerID ;