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

2375 17

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

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan   f; j! W4 j& h+ C1 F5 S) t
9 T3 w& S0 l$ Q3 t  V  K6 z( k
  1. 8 ]: \: x: J9 f8 r: c& k0 @# w
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######
      `* C. t' H6 ]) J2 f9 u
  3. : D6 J6 i  ^8 P! V( n, W
  4. ### What we need ###
    ; K; e: ~: K8 M7 L
  5. Naturally, we will need a MySQL server to store the data for us, this document : W! ^, O: v1 N" A5 q
  6. will not explain how this can be done - there are documents out there for the
    2 L, }0 S7 N( }; g. @9 N
  7. interested. The requirements include a (empty) database for TeamSpeak to use5 o0 [" M: [( j+ {* Z& |+ o. r
  8. and a user account (username + password) that has the permissions to do stuff
    9 ?1 t8 b9 q; ^( C; W) u7 w0 W
  9. with the database. Additionally, you will need a vendor library installed on the
    # C4 P1 h  C1 s! i
  10. local machine, this came with my MySQL install.
      Y, G1 I! G7 D/ ~+ Q
  11. These instructions will not tell you how you might transfer your data from the
    ( T5 }* f- E, c8 g6 Z
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL& J/ Y% A7 V0 y- g" M
  13. database.1 A: v" W$ y. q# e& B1 ^( ^
  14. Some users have reported ways to import a SQLite database into MySQL, but at0 Y+ o6 ~- I2 o6 R
  15. the time of writing, there are still too many issues - check the current status$ ^6 H4 l! N# W2 h, [' x& {
  16. in the TeamSpeak forums if you are interested.
    4 e$ |% J' g" U; {, \
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from
    " z8 z/ b- Y" b% ?! g
  18. Borland was used. This driver can only interface with the client library that 0 c7 V' b7 w1 p  }
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this
    # ^2 F7 X' G: S$ o- M5 i3 C2 r" X! B
  20. client library - basically all you have to do is to use a 3.x client library as 7 i0 @  t  z& _4 y. p% J
  21. "VendorLib" and a 4.x database to connect to.
    ( Z' S4 ^) d8 _
  22. If you need more info about dbExpress, you can contact Borland.% j  m, i, m) ~1 t4 S7 y& n

  23. $ I; ]* `; _3 q7 x3 A; _
  24. ### Doing the work ###9 [& I* K# v0 i$ Z- k  t" B  e6 T
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all
    0 o) S9 M# M" I1 x
  26. the perquisites right, just open your server.ini file, and add this section at. Z( k0 S2 b7 Z
  27. the end:
    $ {7 L7 ?- w  [0 h
  28. ---cut here---. w" }, ^( @  ^' J
  29. [DBEXPRESS]) \5 r& v! A! i; R- I
  30. sqldir=mysql_sql: E) v% n6 `! g# X& J/ A. @/ {$ G
  31. Drivername=mysql3 _5 \: C; X; o
  32. Database=Your_Database_Name_Here7 u" w4 x! O3 T2 a  R0 Z
  33. Hostname=The_PC_the_MySQL-Server_is_on( G) _$ }9 Y9 b
  34. User_name=User_name_on_the_MySQL-Server, D  o1 f4 f" [6 ?3 P, P# B) Y& |
  35. Password=Password_to_go_with_above_user_name
    ( Z* Q% Y& ?! _0 ]! z0 f
  36. GetDriverFunc=getSQLDriverMYSQL! V& {7 t8 P( ~/ A" W0 ~1 z+ S
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib- G+ \/ }: ]9 u
  38. LibraryName=path_to_libsqlmy_libary
    ) P' a( x, n7 R/ B
  39. Active=1
    # i1 d. `3 E( \% Z
  40. ---cut here---
    7 `& M# o4 h  J5 L" c) E4 T3 W
  41. In my environment (a linux box with a MySQL server running locally) I have:
    + C6 r% U' h2 o# s
  42. ---example---
    0 y! L; l% i1 B5 |( f9 J- z
  43. [DBEXPRESS]& G( y" a/ M3 I9 X! H
  44. sqldir=mysql_sql
      z, y0 p6 V  S# i" w6 I
  45. Drivername=mysql3 u' A2 M8 q( q5 L: h! f, ^: L
  46. Database=test
    , E4 Y7 W! Q& S  X/ I( Z) v
  47. Hostname=localhost
    " s/ a- v% n. {( Z% A: Y
  48. User_name=testuser& `  R0 h( L  w9 {& Y1 X' l, t/ M. w( P$ f
  49. Password=my_password
    ) d+ O3 Z7 Y4 G% d) }, ~5 e7 J+ ^! N
  50. GetDriverFunc=getSQLDriverMYSQL
    & o7 P" b8 c* j; T  X
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.05 _% I4 Q+ {! @5 H9 j3 ]9 P! w& O$ z
  52. LibraryName=./libsqlmy.so. r: _+ P2 g. ~1 ?) N5 ?
  53. Active=1) e6 _6 }% N* _& m. s: y
  54. ---example---/ R& j0 z* \& s5 U# g- f) d
  55. ! \! L9 X% D: w+ i, a( |
  56. On a windows box, also running the MySQL server locally, it would be:: V% d' B5 w: r- h1 ]
  57. ---example---) v) \  E: h* I0 A) E
  58. [DBEXPRESS]: I5 _1 r3 Z& e
  59. sqldir=mysql_sql
    9 b' _+ m' O$ Z" N4 @# D1 _
  60. Drivername=mysql
    # u  d- y4 g& |# m; b" F- f
  61. Database=test: M# g' h5 d$ |0 a% O& K& T
  62. Hostname=127.0.0.1# d* h. k/ l& ?+ l# e  Z+ I
  63. User_name=testuser. w1 j6 l7 f  W. d& z
  64. Password=my_password) x* n) x' Q- L) [
  65. GetDriverFunc=getSQLDriverMYSQL
    & m% z2 O4 B2 p. z& v' N
  66. VendorLib=libmysql.dll
    3 p8 ?& [/ A' i( y. j
  67. LibraryName=dbexpmysql.dll2 q9 f5 y# k7 S( {( G3 _2 i
  68. Active=1+ m8 }' U; z/ t* ~. H5 {; v# z
  69. ---example----( H6 A( u8 r7 f1 J+ Y& }
  70. - written 02.03.04 by pwk.linuxfan0 f5 Q: y0 g- m; {8 ]5 \
  71. , R" C% ~8 a& V& N3 E# o
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看" g* E/ s( K; T  A8 @8 `

  1. " J1 P/ v  j; J1 Z0 s* Q7 v
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ###### ; H1 w& r% V' z& e- C- s
  3. ( k* H6 O8 W9 I% A2 B1 M+ F6 E
  4. # # #我们所需要# # #
    ' `  O4 V$ E3 e4 R
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件1 U; w* B  ]; |9 ?4 Z* K
  6. 不会解释如何做到这一点-也有文件存在,为
    ! z+ v9 z9 f; q5 q3 W
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用
    9 @; |3 f% h7 p' }( Q: N6 ~0 w
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西
    3 b$ h3 Q( ~$ W9 j9 \4 |+ G
  9. 随着数据库。此外,你需要一个卖方图书馆安装于
    8 ^! X( E0 s/ M; _3 u
  10. 本地机器,这是我的MySQL安装。 5 O7 ]2 G3 ]( L! m5 Y: `
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从
    7 J9 ^0 a. P! w9 ~& |
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL 7 r" O% R( c5 z! J+ d
  13. 数据库。 4 p" y" B7 D( v, _3 z3 E/ @: q9 [
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在0 R. v7 N- S) A% c5 ~& v
  15. 编写本报告的时候,仍然有太多的问题-检查现状$ x. n! p6 y* y! ]0 g
  16. 在teamspeak论坛,如果你有兴趣。
    + k+ r% r$ z2 d) r. {. f2 j
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机
      j, A  s* z1 a
  18. Borland公司使用。这个司机只能界面与客户端库
    ; W' Q; B+ V% P; V
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这( {* P+ M& w8 _; P# W
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为
    - z5 s4 o* }# l
  21. " vendorlib " ,并解数据库连接。 5 H3 j- A: y7 G0 h, v3 S+ E
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。 & I# f* Y- u. g
  23. / T5 E: K' ?4 d; N9 M9 L
  24. # # #做好工作# # #
    ; O- _% J5 q5 f8 w' c$ }  Q
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都7 D0 D8 b$ z- \+ r( Y
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在& Q! e1 b& y; d: n$ _- j* V; I3 g' O% a
  27. 结束:
    7 ^) c+ A& @0 p6 u" ~" ^& I, ~
  28. ---削减这里---
    ( q( h, v' j" ^- ~
  29. [ dbexpress ] 1 a& c2 m0 I* A7 j1 B; a! {% n
  30. sqldir = mysql_sql 4 L6 m% \% ]$ r! F
  31. drivername = MySQL中
    ( R  h8 h* M+ B2 q" T/ ^) }
  32. 数据库= your_database_name_here 8 h# D  N' q" _& G* K7 \
  33. 主机= the_pc_the_mysql - server_is_on
    2 A$ ~# z! |0 k
  34. user_name = user_name_on_the_mysql服务器' e. f0 O9 G! ^) Q
  35. 密码= password_to_go_with_above_user_name . @5 V  @& I0 f9 Z
  36. getdriverfunc = getsqldrivermysql
    # W4 L, i; x: q
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib
    ; o; `6 P: n( t* k6 y
  38. libraryname = path_to_libsqlmy_libary
    : {# V+ \/ E. A$ Y; \! A
  39. 积极= 1
    5 R0 y6 D: J+ z, Y, z) i
  40. ---削减这里--- , [9 i- m$ o4 {$ V- n( y9 g
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有: # H; K9 c5 }1 t: f9 o& U
  42. ---例如---
    7 {( l: {  C: R# J* Y! C8 B
  43. [ dbexpress ] 1 Q) R+ C  @3 z! s4 {  q" @
  44. sqldir = mysql_sql
    - P5 q/ g" p3 q4 u  q' @! ]6 a
  45. drivername = MySQL中
    6 A  a( _, q4 H3 B- F$ R$ i# `
  46. 数据库=测试
    * O; X% ?6 f$ D
  47. 主机=本地主机5 E# ~! Z0 ?- q2 U# t* \
  48. user_name = testuser . P) ~+ T- Q# I
  49. 密码= my_password
    % \. F: g4 J7 f$ ^9 V
  50. getdriverfunc = getsqldrivermysql
    - T0 j/ T3 d( h" a0 x( @
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0 2 j9 ^6 N% f+ a3 a* o
  52. libraryname =. / libsqlmy.so ) ]/ e) _' P& d: r+ G
  53. 积极= 1
    2 P, w# Y" s" x+ @; ^
  54. ---例如--- 5 ?: Z6 p' W! w; Y( j* y: A! C3 P

  55. 8 v& N4 w  m2 }% f; z
  56. 对Windows中,也运行MySQL服务器本地的,那就是:
    5 q9 f, v- m$ O$ r
  57. ---例如--- 6 J6 Y) ?3 x" [
  58. [ dbexpress ] 6 ^9 o6 z" K7 }- q
  59. sqldir = mysql_sql
    # ]; P# ^4 ]  O" Y2 I
  60. drivername = MySQL中
    ! D( O  j& X; x6 V  F9 F- c
  61. 数据库=测试3 Y$ r9 t! L& i0 b* q: r
  62. 主机= 127.0.0.1
    # J$ i+ y0 H4 b" Q2 Q- v
  63. user_name = testuser " b4 |$ Y( R% O. X! Y5 f' y8 X
  64. 密码= my_password
    - a9 Z) e5 q( }8 A" h; g8 k
  65. getdriverfunc = getsqldrivermysql
    / n; U: H/ J& n* I1 @* N0 H9 N
  66. vendorlib = libmysql.dll在. ^+ f2 e4 Y; e$ e/ Z% U. m
  67. libraryname = dbexpmysql.dll
    5 o& c( v$ m/ J4 Y* S) l
  68. 积极= 1
    8 ~/ H% @: s% t' \
  69. ---例如---- 8 C6 [% ?9 N% M# l
  70. -写在0 2.03.04由p wk.linuxfan. A+ _7 F6 o* i* N$ ^
复制代码
发表于 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
% i$ Q3 g( ~4 Z: u. ?8 t' }  ^2 _6 y5 [( |! m: M3 g
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-11 03:24 , Processed in 0.090586 second(s), 6 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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