File: edit_channel.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 (13 lines) | stat: -rw-r--r-- 463 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
UPDATE ts2_channels
SET b_channel_flag_moderated = :bModerated,
    b_channel_flag_hierarchical = :bHierarchical,
    b_channel_flag_default = :bDefault,
    i_channel_codec = :iCodec,
    i_channel_order = :iOrder,
    i_channel_maxusers = :iMaxUsers,
    s_channel_name = :sName,
    s_channel_topic = :sTopic,
    s_channel_description = :sDescription,
    s_channel_password = :sPassword
WHERE i_channel_id = :iChannelID
AND i_channel_server_id = :iServerID ;