File: new_client.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 (14 lines) | stat: -rw-r--r-- 222 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
INSERT INTO ts2_clients (
  i_client_server_id,
  b_client_privilege_serveradmin,
  s_client_name,
  s_client_password,
  dt_client_created
)
VALUES (
  :iServerID,
  :bServerAdmin,
  :sName,
  :sPassword,
  :dtCreated
) ;