完美国际电信一霹雳区交流版 收藏本版 今日: 0 主题: 1794

2011 17

锡灵,你英文好,麻烦进来帮个忙--(或者谁的英文自己觉得不错的话也可以)

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan
$ E( S* E' B) @
9 T5 r& Y. K* M) W* n

  1. . y& ]8 c8 w( |
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######
    / H. s2 v) n2 l1 A" H4 t+ L

  3. 9 j; A& {9 _! a0 ?& n
  4. ### What we need ###
    0 G* H9 l5 H. b
  5. Naturally, we will need a MySQL server to store the data for us, this document
    : C+ c" p7 W8 o1 C( s
  6. will not explain how this can be done - there are documents out there for the
    2 k* h# Z5 c5 J, ?% |
  7. interested. The requirements include a (empty) database for TeamSpeak to use- p8 p: L5 `4 F
  8. and a user account (username + password) that has the permissions to do stuff, z, O2 `2 y; z# E  \" |4 H
  9. with the database. Additionally, you will need a vendor library installed on the$ I1 K1 q# j5 t" R3 ?" a
  10. local machine, this came with my MySQL install., l; @6 G" e3 O/ d
  11. These instructions will not tell you how you might transfer your data from the
    ( }+ @: |' a( P# f, Z5 V; f: d
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL- n; `6 c: Y" P& {% b7 a5 y
  13. database." {$ C& k; i" e  V0 d
  14. Some users have reported ways to import a SQLite database into MySQL, but at
    7 U1 W$ p" _2 X' I! U
  15. the time of writing, there are still too many issues - check the current status1 p- D8 M, i2 B5 y' q0 j
  16. in the TeamSpeak forums if you are interested.: {3 O8 @) p. N
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from
    ; Z  {3 q+ n8 c9 h, T
  18. Borland was used. This driver can only interface with the client library that
    $ n- t! r( P' S$ w4 ]( v; M
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this
    4 Z" Y$ I' p1 ~( b# U: b3 G9 N
  20. client library - basically all you have to do is to use a 3.x client library as
    , d; L9 i" m! Z7 i
  21. "VendorLib" and a 4.x database to connect to.
    ; e- B& _  Q, a; \5 D
  22. If you need more info about dbExpress, you can contact Borland.
    - Z+ G* `1 L6 e, h4 H

  23. 5 d* F/ C5 C! L- B6 [/ ?
  24. ### Doing the work ###' E# Z& w# }8 V. Q! C4 Y* m5 h$ m
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all" `+ A  X' H: d- \8 V1 t
  26. the perquisites right, just open your server.ini file, and add this section at& U. k4 S# N# s4 V
  27. the end:
    / G6 j" Z0 ?0 b' g/ o
  28. ---cut here---0 S) M% N# A; e( k. E* U9 r
  29. [DBEXPRESS]
    " h4 S( X, y, k5 E1 Z9 \
  30. sqldir=mysql_sql
    * f, v- L% v8 r
  31. Drivername=mysql
    / ]- o' Z$ e$ Q# v$ t) W9 W
  32. Database=Your_Database_Name_Here
    9 D: b2 c: F9 [0 ]% A5 F
  33. Hostname=The_PC_the_MySQL-Server_is_on9 Y& H4 e: T6 b2 d
  34. User_name=User_name_on_the_MySQL-Server9 K: P. ~+ q! n9 \6 y
  35. Password=Password_to_go_with_above_user_name* M* m3 O" o# s. f/ q# c$ Y* c
  36. GetDriverFunc=getSQLDriverMYSQL  i8 w; }+ K2 R* \( B, X6 S$ f4 N, ~
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib
    ! s3 B& i( C' |$ @
  38. LibraryName=path_to_libsqlmy_libary6 \. s% m- B6 w9 k% i1 w2 ^
  39. Active=17 V# ?- B( ~0 w: z* J6 _* j3 r
  40. ---cut here---
    ) p; s2 B7 ~6 O
  41. In my environment (a linux box with a MySQL server running locally) I have:
    5 B9 j% @+ r4 H& {- P
  42. ---example---; X2 Q- v2 ~: I; L+ B! D) L4 J
  43. [DBEXPRESS]
    / o2 A$ A& b( j9 p) B5 V  @
  44. sqldir=mysql_sql
      o/ O4 }/ F; {
  45. Drivername=mysql; Z% U! F% w) Y# G3 @# _! O
  46. Database=test
    2 ?. c/ d: p  E7 l! [" o& b
  47. Hostname=localhost
    & _6 x" k7 Z  G) V) Y1 Q
  48. User_name=testuser' H' J4 y% p& G
  49. Password=my_password
    # d- R) _' }9 I
  50. GetDriverFunc=getSQLDriverMYSQL7 ?0 L' j/ O2 ^  }3 F8 g0 C6 R7 o; g  N5 I
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.0
    . v7 f) B7 c. l; a
  52. LibraryName=./libsqlmy.so) u2 e5 I) y+ J) [9 w
  53. Active=1
    % E# L; i+ o" |6 w
  54. ---example---
    ' C  g) w# Q  }& p' Q. F! {

  55. 9 i; u- D+ s) m7 w  I5 t
  56. On a windows box, also running the MySQL server locally, it would be:
    ! ]# V) |# @: I
  57. ---example---
    / r% Y% f) v; M4 Z: s- C
  58. [DBEXPRESS]7 f2 {: H$ ^( g. ~; X& J5 C
  59. sqldir=mysql_sql
    + h) J  |- t7 ^$ F5 L1 T! Y
  60. Drivername=mysql+ c- w' P2 S( B& o
  61. Database=test
    ' }) [, [$ q% U4 G: M
  62. Hostname=127.0.0.13 l2 e$ H+ v- _  a2 M7 F4 d
  63. User_name=testuser
    % d( M( V5 g$ \" n7 W& l! R- k0 _
  64. Password=my_password, ~; T8 }  V7 ~+ X' X
  65. GetDriverFunc=getSQLDriverMYSQL8 i) x8 z# O1 E- \- ?" G" \3 h5 f
  66. VendorLib=libmysql.dll' X) p1 f; s  H/ r& C
  67. LibraryName=dbexpmysql.dll
    # ^1 U6 e; s+ E8 ]9 u4 E
  68. Active=1) P) c: W& p9 {! a3 w( k
  69. ---example----- y" _8 m6 }6 m$ J4 z( q* Q4 e6 t2 o
  70. - written 02.03.04 by pwk.linuxfan
    * i' s/ R, T) A  g1 }+ S3 ]5 h8 o
  71. : ^0 z7 c- ?. m7 f# B5 x
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看- j- L& x( w6 v

  1. 2 b; V5 E% e) z( X: F; e% J' A
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ######   F, p  H! N4 q! t3 |! V

  3. : {) _5 b' c/ ?' Q# W# e
  4. # # #我们所需要# # #
    9 z8 m; Q  _" o9 Y/ H
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件
    0 i) v# Q: ^* y$ t- c3 p
  6. 不会解释如何做到这一点-也有文件存在,为) I, \7 M/ K% u) }# J' |# O
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用
    . u5 @: F3 S' n2 q+ P
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西
    3 S+ G9 C' R% \2 n5 C
  9. 随着数据库。此外,你需要一个卖方图书馆安装于7 a6 \8 f7 h% T( d' P  c
  10. 本地机器,这是我的MySQL安装。
    + ]" C( U, r' Z9 C* H8 w1 i
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从5 a( G; Y2 V# t) A7 ^9 V- ^9 y6 G
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL
    4 f5 [$ T' k* C; o
  13. 数据库。
    - F7 m/ `- u, ?# h' F6 p
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在- B( |8 V+ \$ X  V) H
  15. 编写本报告的时候,仍然有太多的问题-检查现状
    5 U# a- A3 s4 h
  16. 在teamspeak论坛,如果你有兴趣。 / t$ |$ R3 Y) L# v. c1 Q7 W; @
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机+ h) X2 x; M  c" H# e! d! b: X* b
  18. Borland公司使用。这个司机只能界面与客户端库2 D$ ~; u/ }# f% I6 O* w# ^
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这
    3 b2 \" Z6 c( `. @
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为) b( }. `, \; E7 r
  21. " vendorlib " ,并解数据库连接。
    4 N$ e, d( e6 N
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。
    4 E: k- v, h9 U+ E, W
  23. 5 y1 ~; {4 a8 _$ q
  24. # # #做好工作# # # / i: P3 @; h8 m3 f- d
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都; n; u( L4 W0 l  c; |
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在3 o; r% v; l: m4 |( q% P; n
  27. 结束: : I+ G' V( e9 R  h8 n
  28. ---削减这里--- % d+ Z: j4 U: h; a# k
  29. [ dbexpress ] 0 B% P& W5 S& E
  30. sqldir = mysql_sql
    4 }: h" E( X: v0 _, p
  31. drivername = MySQL中
    8 `8 i& i" C. ]5 W9 X4 B$ Q( F
  32. 数据库= your_database_name_here
    ! X# l5 }7 U8 ~$ Z7 ]8 x% R% v& T
  33. 主机= the_pc_the_mysql - server_is_on 3 i& L  ^6 g: J0 U7 ?
  34. user_name = user_name_on_the_mysql服务器0 ~, s( X1 Z* z7 D( U2 u. K
  35. 密码= password_to_go_with_above_user_name
    - ?' b2 g3 J/ c/ z8 m4 b
  36. getdriverfunc = getsqldrivermysql - w# G% r# \/ u5 o+ R' A
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib + r/ T4 w1 Z  F6 o# q
  38. libraryname = path_to_libsqlmy_libary / L  M  Y) g2 Y6 D# S6 Z6 a$ o1 J
  39. 积极= 1
    2 {- i  Y8 o1 a5 X8 v) e
  40. ---削减这里--- / e5 ~! ~8 w9 z: B$ b* W' _
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有:
    ! F- w, d: j+ U: k
  42. ---例如--- ' ]6 O, d2 ?! W* h/ g- p2 c
  43. [ dbexpress ] / T4 n1 [# d; b" i1 o. P# h& k
  44. sqldir = mysql_sql
    2 O( |  g2 z) C( ?/ u, q7 _2 t
  45. drivername = MySQL中0 H2 [* P, s2 Q
  46. 数据库=测试
    , X8 q, x  S, z6 i) Y4 Y
  47. 主机=本地主机6 E- N* V6 }+ u* _- ^' m$ b6 {
  48. user_name = testuser
    2 d; a3 }) i+ K, r2 y( d
  49. 密码= my_password
    3 q8 w1 b7 G$ _3 Y5 c) q: {
  50. getdriverfunc = getsqldrivermysql
      o4 z) i6 L3 W6 H8 S5 ]
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0
    ! m$ P, ~# r4 z1 k6 E
  52. libraryname =. / libsqlmy.so
    : }( o$ R( Z6 c4 l6 _( Y
  53. 积极= 1
    9 c0 T% j5 M1 J. h) }, a: L  r3 F# z
  54. ---例如--- ' D/ p+ N) b+ y! \$ F

  55. / a; ~+ `$ y5 ]1 u
  56. 对Windows中,也运行MySQL服务器本地的,那就是: $ N1 X& s" e" Y8 b% n: ^4 {
  57. ---例如---
    5 W3 D6 j0 P! d/ u
  58. [ dbexpress ] 5 u2 l1 H4 U: s5 d4 {( B' N
  59. sqldir = mysql_sql
    % T7 F+ W2 i( [; v4 N3 X: {
  60. drivername = MySQL中1 e1 I8 k. k, W/ @( n
  61. 数据库=测试
    + u% [# t! R* c( U' U5 u4 l* ]
  62. 主机= 127.0.0.1
    9 j4 Q, W/ \' X* o5 t2 Q
  63. user_name = testuser
    $ k2 S, X. o8 k5 E  V
  64. 密码= my_password
    . a) [! o. j/ }2 `# d
  65. getdriverfunc = getsqldrivermysql
    2 |: _6 m  Q& D! [( O4 y
  66. vendorlib = libmysql.dll在
    + B8 O* a1 Q( K  `- M. u
  67. libraryname = dbexpmysql.dll
    * K3 {: M  }0 E' \8 c; i9 a3 o
  68. 积极= 1
    ) d% x% c& W9 s# ]
  69. ---例如----
      ~2 J( ^8 B5 I& d1 j% O
  70. -写在0 2.03.04由p wk.linuxfan0 H1 }2 q/ q% Q
复制代码
发表于 2008-1-18 15:57:50 | 显示全部楼层
zhu48t zhu48t zhu48t 火星语言
发表于 2008-1-18 16:02:23 | 显示全部楼层
我现在正在我们自己的服务器上调试TS与论坛结合,这篇文章里的大概操作方法我是明白了,但是我怕翻译过来可能有点出入,所以还是要专业的英文水平高的人看看才行:xhan
发表于 2008-1-18 18:45:35 | 显示全部楼层
那你只有找哪个马来人了。。。
发表于 2008-1-20 18:35:58 | 显示全部楼层
zhu45t 俄有自知之明
发表于 2008-1-21 11:37:51 | 显示全部楼层
比 考4级还难懂!!
发表于 2008-1-21 13:54:07 | 显示全部楼层
怎么不问我呢 我晕
发表于 2008-1-21 14:15:44 | 显示全部楼层
sorry for the late, i think the best way is i go to TS and translate for you. coz now i cannot type chinese words
7 o! F+ e$ v- ~( \) n7 c; Q2 F; W0 `
but, i only will free at nite, tuesday 11pm, your time
您需要登录后才可以回帖 登录 | 注册

本版积分规则

傲天阁游戏公会
联系我们
咨询电话 : 020-88888888
事务 QQ : 85075421
电子邮箱 : admin@admin.com

小黑屋|手机版|Archiver|傲天阁游戏公会 ( 粤ICP备14058347号 )|免责声明

GMT+8, 2025-4-3 16:47 , Processed in 0.119461 second(s), 7 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表