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

2568 17

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

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan 7 W1 s( y( V' G  l1 F# d5 U+ _
2 V! i2 M. B! f' \9 M; D! r9 y

  1. 0 g" V  M( V! K# E( n$ G
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######% V1 u1 i* {; j9 {

  3. . H/ |# V3 p" r& r4 q! V+ O
  4. ### What we need ###. S: w6 v( V* c# ?+ x
  5. Naturally, we will need a MySQL server to store the data for us, this document , g& \$ W1 s4 m- ^! W- \  Q- K5 C
  6. will not explain how this can be done - there are documents out there for the
    1 i9 e# \3 J0 U; V
  7. interested. The requirements include a (empty) database for TeamSpeak to use& i: K& F; P. E7 A4 |: J. v& V
  8. and a user account (username + password) that has the permissions to do stuff
    1 {5 K# ~5 g% j
  9. with the database. Additionally, you will need a vendor library installed on the
    ' |$ _; {) @& w& r) G; ~( B5 c
  10. local machine, this came with my MySQL install.
    $ T  E) J- D: v% u+ K1 q& N  B. r
  11. These instructions will not tell you how you might transfer your data from the3 _4 k7 T2 ]. w, U
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL0 S, W: B) n: T( x0 x
  13. database.
    # E* ]7 {% o0 g# _0 Z& U
  14. Some users have reported ways to import a SQLite database into MySQL, but at0 p% E/ ?# B0 B
  15. the time of writing, there are still too many issues - check the current status4 P4 h4 u! a9 a5 x5 n. U- ^
  16. in the TeamSpeak forums if you are interested.
    6 p+ b4 I) f% r8 f1 p
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from
    / v/ T+ ~9 |) a
  18. Borland was used. This driver can only interface with the client library that
      c$ v# i& Q$ f) K: f+ v
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this. j$ a9 `5 d, \  ?: Y, _, w
  20. client library - basically all you have to do is to use a 3.x client library as
    7 [- y; V8 g4 M/ m4 G: F+ O: f
  21. "VendorLib" and a 4.x database to connect to.2 Q' E4 R) L; j1 u4 C, }2 e
  22. If you need more info about dbExpress, you can contact Borland.
    1 e( |7 L/ P4 N1 Z

  23. 9 u, f$ c3 {5 [3 o/ h
  24. ### Doing the work ###
    " p2 z- p2 i- h
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all7 d& i0 M) B/ O; d) f+ u% G% I
  26. the perquisites right, just open your server.ini file, and add this section at) Z: u: U3 D5 G* U8 T9 E/ }3 p
  27. the end:% T/ ~! D' R! A+ v6 `( S+ `
  28. ---cut here---
    ( u  O) L- R* n. P
  29. [DBEXPRESS]
    " [( L# W  W5 a
  30. sqldir=mysql_sql& J" R$ V- G9 K" ~; q
  31. Drivername=mysql6 D) K) c6 J8 R5 x0 z, S
  32. Database=Your_Database_Name_Here* `% q. n$ D/ R! M7 P' O
  33. Hostname=The_PC_the_MySQL-Server_is_on
    " }- v* Y6 h' n
  34. User_name=User_name_on_the_MySQL-Server. Z2 X& t. l: i* _1 C3 A
  35. Password=Password_to_go_with_above_user_name
      ~  I/ {  O: r6 u3 c0 I- t8 j  X
  36. GetDriverFunc=getSQLDriverMYSQL/ J* _' p& T6 L% S2 w( q
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib& s6 h' `" r. ]5 Y; {
  38. LibraryName=path_to_libsqlmy_libary4 B+ z) O0 v( z+ y& z1 T
  39. Active=1
    3 V, I; p; Q. c2 D" M4 Z/ m, `9 k6 y
  40. ---cut here---5 j- C" u7 C  F' s% ^( z- ]# f5 M
  41. In my environment (a linux box with a MySQL server running locally) I have:: u7 I0 a' Z# l# M8 a
  42. ---example---
    8 U6 V. I2 f  u+ w
  43. [DBEXPRESS]0 k) O+ ^$ t% H9 ~0 O
  44. sqldir=mysql_sql2 q: a% @" U% ~. k- T
  45. Drivername=mysql$ e( N8 a# F0 N) h: \. g
  46. Database=test6 Q4 y% I. Q" Q. G
  47. Hostname=localhost7 A8 K, C: N' t) `# w3 R
  48. User_name=testuser' X# {/ i; `4 T" [" M6 U
  49. Password=my_password
    & I' A- H$ [& M- k% p
  50. GetDriverFunc=getSQLDriverMYSQL" u/ Q& v2 ^/ [, E5 R1 Y
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.0
    + V0 h. n6 X1 O" ]. E3 D
  52. LibraryName=./libsqlmy.so( E  R: ~( j( a
  53. Active=1
    " x! W& G8 q9 A3 [: ~$ O' o$ J
  54. ---example---" B0 v; a1 V& H' O

  55. * \) `6 V) s  l( I0 Z2 n
  56. On a windows box, also running the MySQL server locally, it would be:) W- J, `1 O' u; o; [( G, \
  57. ---example---
    . U  v" s% ^8 N" D
  58. [DBEXPRESS]; o7 n7 V! P' g9 ?- P
  59. sqldir=mysql_sql! Q. J! X0 Y2 d8 [
  60. Drivername=mysql
    , |# z4 ~. B! f. ]' F% C
  61. Database=test
    4 P) r7 k0 U# M# ~
  62. Hostname=127.0.0.1' u0 G% G( V1 D4 G3 y
  63. User_name=testuser- P* A) C7 M: g5 Q6 O" v  H% M
  64. Password=my_password
    - ~; G1 Z5 U: F8 @+ I4 y
  65. GetDriverFunc=getSQLDriverMYSQL- T0 f" ?; y  {3 K. v+ E1 l4 }
  66. VendorLib=libmysql.dll: y$ m" K! j" [7 _+ e
  67. LibraryName=dbexpmysql.dll
    0 H7 ?+ L" c7 c& C6 {3 N, l5 ^$ A
  68. Active=1
    ' |, U  F9 z: T
  69. ---example----
    1 C- i0 _% ]3 K+ y
  70. - written 02.03.04 by pwk.linuxfan0 o) p  b0 W) H# D5 i# r- Q4 A

  71. 9 ^8 l  C  R8 ]4 j/ s" M9 ?# S
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看0 Z1 w1 s/ ?4 u6 }* R" [0 J
  1. * d8 x! o5 m" U" F: W& g
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ######
    * v$ c- m" o  ^9 Z5 [/ ?  I$ L
  3. 2 I9 R( c7 l2 @/ K0 T; ?0 D
  4. # # #我们所需要# # #
    ! q: ~/ h/ X' T
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件
    - w/ m2 s* R  O/ M
  6. 不会解释如何做到这一点-也有文件存在,为
      }3 g% U& t! m0 O' p
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用
    9 b- t9 V. B7 K6 T  @0 A
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西2 e; k* U8 f' x6 `
  9. 随着数据库。此外,你需要一个卖方图书馆安装于
    5 y# K, F' m/ ]6 X7 ^5 i
  10. 本地机器,这是我的MySQL安装。
    ( }3 i' g  N! i$ D6 ^" J
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从+ ?" I" D8 S' v: B5 \
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL   N' c  M1 ?& r) ]& u
  13. 数据库。 ; w5 t3 _. a! ?+ i
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在
    + p  b9 U6 b8 Z! S& D" \
  15. 编写本报告的时候,仍然有太多的问题-检查现状
    " N' ~( E# V9 i' E- x: I5 ]
  16. 在teamspeak论坛,如果你有兴趣。 7 |! Q# A2 I; R
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机
    ! P# H( p7 r$ b: z7 {
  18. Borland公司使用。这个司机只能界面与客户端库
    8 p3 _7 q( \* x  u6 Y
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这3 ^* k7 M8 D$ t' n
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为
    1 R3 z8 F6 k8 S. w6 M  C9 I
  21. " vendorlib " ,并解数据库连接。   |+ U0 {; N3 z* y3 z& C- I# {
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。
    6 e: U& f  Y7 Z/ T9 G) C; F% t5 L( Y( @

  23. 3 r( @4 ^* m* P- a2 o9 i. c; C& V
  24. # # #做好工作# # # , D7 ]8 X: e( L5 p4 S
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都1 v5 f4 W$ T0 {) g0 M* I
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在2 a( O6 p* U( {% k3 p7 H
  27. 结束:
    0 k+ w- Y/ v; F- f
  28. ---削减这里--- ) y, J5 H6 ]9 _) ?' k; S! V0 M
  29. [ dbexpress ] + |, Y8 b, ^* f' E! K$ b
  30. sqldir = mysql_sql
    1 ]. ^) U( |# j1 {/ G/ z
  31. drivername = MySQL中
    ( u" k9 ]' w8 V5 I. B
  32. 数据库= your_database_name_here + \$ y+ \! g/ B: S4 v# Q
  33. 主机= the_pc_the_mysql - server_is_on , y9 M' E7 r0 p0 K* j
  34. user_name = user_name_on_the_mysql服务器3 n) G" \1 ^8 @6 y6 J7 p
  35. 密码= password_to_go_with_above_user_name
    2 \8 k1 R) u) C  K0 r
  36. getdriverfunc = getsqldrivermysql
    6 s8 \2 W0 x; e+ J( a
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib 0 b/ K4 r9 f: B6 x' u" N
  38. libraryname = path_to_libsqlmy_libary 0 o7 X; Q( ?' ?9 g
  39. 积极= 1
    & E# ^' H/ X- Z6 @0 w0 C0 R$ R3 L1 r
  40. ---削减这里---
    $ n- \5 G  G3 ^; t: |1 k
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有:
    ) m# q3 a8 \+ I
  42. ---例如--- , h5 i8 @$ y5 \- ?5 X
  43. [ dbexpress ] 1 Y1 o% x$ ~3 M0 c
  44. sqldir = mysql_sql 8 f1 A3 L; g; g6 `9 Q
  45. drivername = MySQL中
    7 l; x2 V1 l0 a7 o& k5 I3 J8 w
  46. 数据库=测试+ ~* v1 m9 t7 |0 O
  47. 主机=本地主机
    0 I8 a( t! y8 D1 H  e7 ]
  48. user_name = testuser
    9 K6 P6 V2 Y+ n/ `, Z
  49. 密码= my_password
    ) Q" l  `& x1 Q* P, c" u
  50. getdriverfunc = getsqldrivermysql
    - l% z& R& N1 {! F& Q
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0
    : U) P2 B1 v% m% Z. L2 h9 i; F
  52. libraryname =. / libsqlmy.so % l, q* }4 p5 |3 f$ |  ?7 Z
  53. 积极= 1
      _* v- n/ g" h( I# K2 \/ h
  54. ---例如--- 7 }# ]$ y6 C0 ^5 Z) L- Q

  55. & u; U& g! M8 R* A( O
  56. 对Windows中,也运行MySQL服务器本地的,那就是:
    9 M! Z9 R) H4 N
  57. ---例如--- & B7 V& Y% j! |. h/ c) p
  58. [ dbexpress ]
    ; D8 Y4 A& m2 P- I' Y1 D
  59. sqldir = mysql_sql 0 r0 i% [+ e0 z: c# d/ f6 a
  60. drivername = MySQL中
    1 p9 P3 G/ M3 H/ ~, V
  61. 数据库=测试4 B5 x3 r% H" k4 @% B% f, m  Y
  62. 主机= 127.0.0.1 - @+ F( o- S$ F0 m' L! n
  63. user_name = testuser
    / X( X2 @' y# y
  64. 密码= my_password
    2 q& j+ `6 t/ w0 L+ R( _* z
  65. getdriverfunc = getsqldrivermysql
    4 A. l, K# E; z" p( ^+ [
  66. vendorlib = libmysql.dll在
    $ {3 @" Y. ]: P! [! n. ?
  67. libraryname = dbexpmysql.dll 1 D1 J2 |1 |9 T5 i: A! O
  68. 积极= 1
    $ ^0 {; j) D9 ]- O
  69. ---例如----
      x( {0 _9 a* d2 x* Y
  70. -写在0 2.03.04由p wk.linuxfan" Q  x; c% R2 m$ X& Z5 E: l/ E/ P
复制代码
发表于 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
) r5 q" z2 h! ?* q: {
7 J2 L$ E) r& J0 K" B. B4 \but, i only will free at nite, tuesday 11pm, your time
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2026-4-30 16:59 , Processed in 0.127738 second(s), 6 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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