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

2385 17

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

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan
$ c( ?* X$ L. x. x' S1 G  l! U& w3 O# f5 K

  1. 5 ^6 g$ C! f; x: \
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######6 S$ d: t( L, q: _, u, z
  3. ' K% q9 d% s6 s# _( |
  4. ### What we need ###/ [. `; D. j) k8 P# J$ K
  5. Naturally, we will need a MySQL server to store the data for us, this document 1 e$ H8 Z3 e9 r
  6. will not explain how this can be done - there are documents out there for the / c1 k0 A; ^& ^; l. v8 E  F$ T
  7. interested. The requirements include a (empty) database for TeamSpeak to use' J' W2 @8 O- \- u7 G! |4 i! P
  8. and a user account (username + password) that has the permissions to do stuff
    4 \  d6 x) a+ E: w: V
  9. with the database. Additionally, you will need a vendor library installed on the1 F4 g! L1 t9 y2 |6 s
  10. local machine, this came with my MySQL install.1 L/ W% V9 ^+ n$ ~% t8 g+ U+ ]. D: ~/ D. H
  11. These instructions will not tell you how you might transfer your data from the6 x: v& w# _0 p0 B# V/ r: ]
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL5 d* V. n4 x( ~  u1 S4 ^6 ~
  13. database.' A5 ?) t% ?& |5 ^7 l! N# @
  14. Some users have reported ways to import a SQLite database into MySQL, but at
    6 t2 Y) i9 A8 ^7 {% T2 N
  15. the time of writing, there are still too many issues - check the current status5 g2 I8 b& i4 `+ M; [: |4 J
  16. in the TeamSpeak forums if you are interested.
    ! u4 t, X4 M3 U9 R: p* A: P
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from# s0 @/ w- z( g1 Q) Y0 b
  18. Borland was used. This driver can only interface with the client library that
    7 ~2 q3 m6 @. h0 w" A
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this
    ! i" ~) Z0 _( X; v9 Z0 h3 b
  20. client library - basically all you have to do is to use a 3.x client library as + ^- ~: l& T' _" l8 q2 C( D
  21. "VendorLib" and a 4.x database to connect to." y* m2 S& A- Q4 I; F/ ?, e
  22. If you need more info about dbExpress, you can contact Borland.
    0 N# Z0 i! m  i  q; @# j

  23. ! C. n' x% S$ s' T
  24. ### Doing the work ###
    $ z; F4 S* f2 U
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all1 O8 C3 N7 H- B' d% R9 l2 G
  26. the perquisites right, just open your server.ini file, and add this section at
    : r+ u  \$ L& H/ q
  27. the end:1 M! ?  H. c, b+ K
  28. ---cut here---0 V' u/ C4 k* @% S0 v
  29. [DBEXPRESS]
    ( w" o) e3 G* v9 T; p! X  N$ m5 y
  30. sqldir=mysql_sql, S$ s$ A  c( ~! M; H
  31. Drivername=mysql
    2 t/ [" ?$ k) g. R1 z$ ^
  32. Database=Your_Database_Name_Here1 h) O, I7 k4 ?/ S! B0 e
  33. Hostname=The_PC_the_MySQL-Server_is_on
    1 {+ p6 t, L) B* ^7 y! X
  34. User_name=User_name_on_the_MySQL-Server
    ' j( i" R6 M" X9 I& h# J% b9 w* ?
  35. Password=Password_to_go_with_above_user_name
    " e& _, {& K9 M# u* k& a; O
  36. GetDriverFunc=getSQLDriverMYSQL
    : N! U& r& T; S! b
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib
    : Q" w8 @9 Z6 u: t* d# `
  38. LibraryName=path_to_libsqlmy_libary
      ]6 D" X- P6 d) b; A: q
  39. Active=1
    + \" i& s' x7 b( ]; ~# u8 i3 o8 R
  40. ---cut here---
    $ y! b2 L: ]# `+ R6 K: S
  41. In my environment (a linux box with a MySQL server running locally) I have:
    * k# ]3 \# o* L, G- P9 R
  42. ---example---  ]: @* A/ k* ?
  43. [DBEXPRESS]
    % p: a$ D  S2 p, G2 H; W0 a  w
  44. sqldir=mysql_sql
    6 ]: R+ N4 G, f
  45. Drivername=mysql6 a# z9 L2 E$ E* Y, }. H  Y
  46. Database=test
    * e# T& \( y" I, }* d* S
  47. Hostname=localhost- j1 s6 S% j8 a5 L; I$ [/ K- |9 x
  48. User_name=testuser0 V& w9 D. c4 I1 G7 R3 K: [+ B
  49. Password=my_password
    # U2 e# W0 d: w3 A, U% y
  50. GetDriverFunc=getSQLDriverMYSQL- W! |. M7 a6 Y0 j! y
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.0
    8 m9 {$ d, [& m0 ]
  52. LibraryName=./libsqlmy.so3 l  Y+ p" }6 o* {: s
  53. Active=1
    " f( |$ x* y* l6 }% D; }' }5 v
  54. ---example---: c6 `' U2 `0 p& @

  55. # n# F4 Q6 W. p" b" K' i* |
  56. On a windows box, also running the MySQL server locally, it would be:
    # s8 C3 S: V% j. {
  57. ---example---
    / t$ G& O: K7 ~( k0 _2 j* E- K
  58. [DBEXPRESS]
    ) T" d; `8 q) Y6 t/ V6 {6 q
  59. sqldir=mysql_sql
    % X$ Z% ?2 V* s3 }; u9 @
  60. Drivername=mysql+ f0 F8 \# [" R) h2 D: K! g; c
  61. Database=test
    & R( I% X* a; j& G7 e7 O/ ?
  62. Hostname=127.0.0.1
    ! E! p' |+ X4 A4 L; ^3 t
  63. User_name=testuser+ M( _, q7 B$ `9 W* E* N
  64. Password=my_password
    # N# @9 o3 J  v+ _8 n
  65. GetDriverFunc=getSQLDriverMYSQL
    ; z+ T4 E& _) N- @6 I$ m( L% L) F
  66. VendorLib=libmysql.dll
    4 q+ p/ O  s3 f, i2 U. ~
  67. LibraryName=dbexpmysql.dll
    # w; W; H% w: i( i6 ~6 L- l
  68. Active=1" M. s7 z: j# \* k/ \
  69. ---example----
    ; Q6 E) s: a' U* w/ w4 W7 P
  70. - written 02.03.04 by pwk.linuxfan
    7 R; v, o! r, B: u* Y: Q

  71. : X# J+ m, n1 Q" A/ \# X8 a
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看4 c  r& U# ], ?! H) l8 c1 O

  1. ( u6 ^6 l3 c- L7 m, @  j
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ######
    7 |# e" }- S7 t  u* s$ S

  3. 1 Z% f; b: `: Z# _- W: h
  4. # # #我们所需要# # #
    % `5 @8 r+ u0 Q7 f2 B: K4 I. y
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件5 U4 ~& b. F* A3 C) n  N/ z# K2 h
  6. 不会解释如何做到这一点-也有文件存在,为
    - `1 ]6 R' u' G! P+ g
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用" V- W  G0 F" w# |
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西" \6 [' V# o+ _/ Q
  9. 随着数据库。此外,你需要一个卖方图书馆安装于4 q. Z- X! ]- T9 s* L$ l
  10. 本地机器,这是我的MySQL安装。
    : ^6 _% N7 \* y( i1 r
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从6 N9 `; @4 N7 e" Z0 q% s/ `
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL ; T" X( T! v: P7 }! S" N
  13. 数据库。 $ z3 l$ E$ v+ A' W9 p
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在5 G" j2 _( X6 F+ K8 r( b
  15. 编写本报告的时候,仍然有太多的问题-检查现状
    & @, h. y& L) O& c# E& ?
  16. 在teamspeak论坛,如果你有兴趣。
    & A* X7 r; A: D3 R7 X% D
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机# U6 O* a& k% s! W- b) _
  18. Borland公司使用。这个司机只能界面与客户端库. @, X6 v( F+ Q& A2 S
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这
    . m1 l( e$ t1 L- Q' g) i" V6 \
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为
    ( h" U7 z9 u) @4 [4 F- A. D/ ^( e
  21. " vendorlib " ,并解数据库连接。
    / [5 [3 S4 M& N  ^/ V) K% l& T$ K
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。 % z1 p: k; ^' Q2 n

  23. ( i$ @/ h; A, v. Z) D
  24. # # #做好工作# # #
    8 D4 J- ]0 C, ~* ^
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都
    1 `) n1 s: q' l4 Y2 W% u+ F* H- w
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在7 i9 i: d/ U& T+ C  a& \3 i
  27. 结束: " T6 {9 f$ ]( {1 O* D5 B% T
  28. ---削减这里--- 7 N% L: s- ]( b6 d/ X# J6 d" a
  29. [ dbexpress ] - k- ~1 @) M% B1 a' R0 d
  30. sqldir = mysql_sql
    ) N6 J) R- A& V) T. M
  31. drivername = MySQL中" _8 T. l6 Y% Y0 a& M& v9 g- e
  32. 数据库= your_database_name_here
    " E! h3 D/ j4 J% C, |3 ]
  33. 主机= the_pc_the_mysql - server_is_on
    ( L' p7 \) h& Q; f# ~1 K
  34. user_name = user_name_on_the_mysql服务器: E0 K' J  V. l9 y4 \2 s* h. ~
  35. 密码= password_to_go_with_above_user_name
    6 x- c) E' q8 a( v7 @$ E- q
  36. getdriverfunc = getsqldrivermysql - H& B# U' _2 ]8 c6 B2 y! S3 |
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib 8 r6 k! F, P1 |1 l7 l
  38. libraryname = path_to_libsqlmy_libary
    4 w4 E& P8 Q2 L! q# }' A/ x
  39. 积极= 1
    ' M# x+ J! W4 _& _8 k: _/ y2 [( L
  40. ---削减这里--- $ t3 }5 K6 S$ m8 v) K4 u
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有: 5 q/ S) ]2 S9 C1 G8 H
  42. ---例如--- " T) l1 _$ V( h" r5 A
  43. [ dbexpress ]
    / {3 w7 }: f# u+ `
  44. sqldir = mysql_sql
    9 P/ S9 q: Z8 d
  45. drivername = MySQL中
    & X4 g# E& Z8 l" \! e
  46. 数据库=测试+ u8 ~3 a! v0 i" h* @8 D2 y
  47. 主机=本地主机
    8 c! q5 O1 X6 T
  48. user_name = testuser " K- m% N1 R2 P! r# a
  49. 密码= my_password
    + e' m6 v5 b! a/ L" A+ q: C
  50. getdriverfunc = getsqldrivermysql , m: [9 C& R6 @3 s1 u1 k
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0
    7 q! q% L- K3 |& O# X
  52. libraryname =. / libsqlmy.so
    $ |* I# x0 A" i: i
  53. 积极= 1 " d' Y/ d9 b8 n- `' ^
  54. ---例如---
    " r/ h' l9 E) @2 P1 _6 X

  55. : g5 X7 i$ `. I/ `
  56. 对Windows中,也运行MySQL服务器本地的,那就是:
    8 G7 F: B. l6 w, j5 E8 m
  57. ---例如---
    9 }& T: a1 D2 [. F6 p% |
  58. [ dbexpress ]
    ! j/ @* f8 ~, o# U1 m1 G
  59. sqldir = mysql_sql
    1 R; q- _0 ?7 ~- c! F# p" s! S
  60. drivername = MySQL中
    ' Y8 k1 t. d3 W" c- k+ d1 V
  61. 数据库=测试! s0 K5 h* w! H2 i/ k9 c$ y
  62. 主机= 127.0.0.1 & I4 t0 [& o% j6 Z. z. x0 W( a
  63. user_name = testuser 6 |; [" e( O6 r
  64. 密码= my_password
    # G/ i2 j2 N3 h0 H8 `/ |
  65. getdriverfunc = getsqldrivermysql 7 I1 f4 X3 ]% @: x
  66. vendorlib = libmysql.dll在! {% Q8 ]/ T0 l; G& v) q2 }# c
  67. libraryname = dbexpmysql.dll 6 Q8 |' T0 v6 l/ s" {/ f# ~5 W
  68. 积极= 1
    * m. {2 H" Y5 w
  69. ---例如----
    % p: J1 X: i- P. [
  70. -写在0 2.03.04由p wk.linuxfan
    & \# F* {% W7 Q2 G  _
复制代码
发表于 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* l7 f% {" f7 |, x2 @
( H6 q5 h) c6 ?# r
but, i only will free at nite, tuesday 11pm, your time
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2026-3-14 17:03 , Processed in 0.093421 second(s), 6 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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