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

1952 17

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

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan
" h4 ~% |* {/ H! m" Q" C6 X
' q0 P6 a8 B! U0 `$ [4 U/ i
  1. , C+ {6 T: l5 E$ }% g7 F# N
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######
    / E9 S0 H  q3 K/ y$ d3 _4 w- l

  3. $ g7 p1 l, g& q3 ]: |
  4. ### What we need ###
      _1 R5 Z: O; f1 ~! W* L) x9 u9 D
  5. Naturally, we will need a MySQL server to store the data for us, this document , g: \6 u! p4 Y9 f: ~! U
  6. will not explain how this can be done - there are documents out there for the
    ! S# }" V$ A& r# q2 u' \+ ^( e
  7. interested. The requirements include a (empty) database for TeamSpeak to use+ e0 u  @: S" m4 S# ~( @
  8. and a user account (username + password) that has the permissions to do stuff
    : S4 ~; C7 v' P) ]2 n: ?' z! K
  9. with the database. Additionally, you will need a vendor library installed on the
    8 t$ X" M5 R1 H- i1 A6 b: Q
  10. local machine, this came with my MySQL install.
    + |! i4 m3 g( P/ F$ D( v2 \; `
  11. These instructions will not tell you how you might transfer your data from the( v4 z  h/ J# A! o0 D+ j
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL4 o* M. ?% N; F. {  m
  13. database.
    ' @8 x, z, O# ]: D
  14. Some users have reported ways to import a SQLite database into MySQL, but at" I$ G8 x/ g3 k& q* j6 q  D
  15. the time of writing, there are still too many issues - check the current status
    5 \" @$ a  o, S* N+ d( a
  16. in the TeamSpeak forums if you are interested.
    " J* E; c& L+ H8 B
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from; w6 s& `& G& H0 j  ]/ V
  18. Borland was used. This driver can only interface with the client library that ) r7 n2 h4 G# W4 z$ l
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this; K! q6 f3 T/ R" N- }: ^, `+ Q' V' j
  20. client library - basically all you have to do is to use a 3.x client library as ! b1 }( ]$ N8 V  T9 t0 j5 s
  21. "VendorLib" and a 4.x database to connect to.3 i; o0 V+ ~& m
  22. If you need more info about dbExpress, you can contact Borland.
    , }. M$ q. v6 s& w% T/ M, T
  23. ; z& o9 Z. S7 [4 Z- i
  24. ### Doing the work ###$ L; d/ M: W" n3 e( b1 m: X
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all( t# b% x9 q% t1 e0 b
  26. the perquisites right, just open your server.ini file, and add this section at1 O6 O) ~2 v, K5 o1 C
  27. the end:
    1 Q0 _4 W3 t$ b3 I. G
  28. ---cut here---
    ( e, I9 {, R3 X7 B2 J& T: e
  29. [DBEXPRESS]
    9 V( h* y% q% ]: {
  30. sqldir=mysql_sql  E( z; q% t1 m- u
  31. Drivername=mysql
    / s) O" X$ y& Y: L+ N
  32. Database=Your_Database_Name_Here
    6 R; C9 Q, o% y2 G  W& H
  33. Hostname=The_PC_the_MySQL-Server_is_on+ h2 a2 v  h2 c6 D
  34. User_name=User_name_on_the_MySQL-Server
    . E% @% h8 e, ?7 C& ?' z
  35. Password=Password_to_go_with_above_user_name3 b4 G! F# C/ L0 e$ R5 K6 m
  36. GetDriverFunc=getSQLDriverMYSQL
    ; b# z1 J5 e  w9 N2 k
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib
    - o* W3 t7 D" ?7 H! J/ ^& E
  38. LibraryName=path_to_libsqlmy_libary
    ( O/ E0 y& s$ ~
  39. Active=1
    $ u5 h$ x4 t1 o* K+ w$ ^
  40. ---cut here---" }3 L* s6 u# a9 d7 ^
  41. In my environment (a linux box with a MySQL server running locally) I have:' C, N) F4 G/ y0 ~
  42. ---example---- P/ E+ v  U( w" w; f1 m$ p
  43. [DBEXPRESS]3 |1 z) C3 M4 x$ i  h6 m3 J
  44. sqldir=mysql_sql
    ' W2 f/ n; m2 j( v9 ^
  45. Drivername=mysql
    3 j8 M" P2 S! F: V: e: O3 y( [
  46. Database=test9 b/ C$ ~  v6 D
  47. Hostname=localhost/ |8 [8 c9 c, Q
  48. User_name=testuser
    ' g; H0 S; C* z+ }
  49. Password=my_password0 ~) H# e4 p! b2 e; w) _
  50. GetDriverFunc=getSQLDriverMYSQL/ E# S6 v! D  D6 `" T
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.0. n$ R# n' ^. P
  52. LibraryName=./libsqlmy.so
    % C( v' k2 y/ f* ^# m# d
  53. Active=1
    & k. Y! I0 O, l) V  K
  54. ---example---
    ( R4 K3 D" c0 l

  55. ; \; E  Y/ ]8 E: ?4 Z
  56. On a windows box, also running the MySQL server locally, it would be:& Z4 G4 a) l4 t1 J/ i! U, ?
  57. ---example---
    ( a3 q: p% W* Q0 U
  58. [DBEXPRESS]# i# i2 q$ Y; B6 v9 W7 `
  59. sqldir=mysql_sql$ V8 q5 s5 L( {1 n; J  P+ L
  60. Drivername=mysql; E9 q2 N1 J( F$ G+ l3 q4 u& T
  61. Database=test
    % Q6 D( ~6 n( H* ^* {5 H
  62. Hostname=127.0.0.1! M7 Z  e6 [0 J$ k- [
  63. User_name=testuser
    5 K; z0 \6 L8 }4 W# D/ o
  64. Password=my_password) b. S0 }* q+ y1 C
  65. GetDriverFunc=getSQLDriverMYSQL& F. h% o( a4 K
  66. VendorLib=libmysql.dll
    " R# l: ~: r3 u5 L. Y2 _
  67. LibraryName=dbexpmysql.dll
    ) f8 h. ?$ k' S8 d* H' Q
  68. Active=1: O/ k8 d# r5 v, l
  69. ---example----. Q, T- F/ ?+ E3 w( ]$ g  M4 I9 W
  70. - written 02.03.04 by pwk.linuxfan
    0 d( o+ }- B6 b1 M

  71. ; \; D: G4 o; I9 p
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看
, n) x$ a& i, w$ m/ P% c$ l

  1. ' A" u# R/ g4 V3 A6 T6 C; V
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ###### ) ~* u* x7 l% F- V! g
  3. 8 X; k( W% v. B; }; p9 ?
  4. # # #我们所需要# # #
    8 `& p- G$ W4 o9 |
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件
    9 o' N( p* I4 y& A0 t) W! h
  6. 不会解释如何做到这一点-也有文件存在,为. M" k, F0 t5 R8 ?0 Y
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用- V2 J& f! I- U/ e) T$ i- N: [3 J
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西
    6 ]7 I, B* ~% b
  9. 随着数据库。此外,你需要一个卖方图书馆安装于
    9 m" j  v, W2 e% b
  10. 本地机器,这是我的MySQL安装。 # e/ u) M$ z' p! C5 W
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从
    8 Q, y* g% ]9 x. U0 P( }; g
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL
    9 l) w( R/ V+ ^6 J1 [! v  b; L
  13. 数据库。
    - `" J& E5 Z, J
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在
    / ^$ F$ d. o/ }' _+ O" s
  15. 编写本报告的时候,仍然有太多的问题-检查现状9 \; J* O! F$ \# u
  16. 在teamspeak论坛,如果你有兴趣。
    ! f! u3 v1 L7 i" x1 _, N
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机
    % _; A( e" m, |- J* v  Q  f
  18. Borland公司使用。这个司机只能界面与客户端库
    4 V& l  w! T, \5 \% m% q- b3 L: E
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这! g3 t# g+ _8 P( e  q
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为( E8 r8 G0 {4 t. H& ?9 \9 D: t
  21. " vendorlib " ,并解数据库连接。 8 w5 N# f, i7 [+ S" s9 c4 K. v( q
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。
    + S4 t1 F/ Q' v9 b& ^: d3 O% \
  23. / X$ ?7 S# j; h! z  O
  24. # # #做好工作# # #
    + y9 u* [4 q( Z/ w  ?
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都3 g+ P# F7 U+ R( @/ k
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在
    $ y2 L3 R. P9 o" c3 g
  27. 结束:
    ( Q! |; n% p0 A
  28. ---削减这里---
    0 L: U8 v, \" d9 P. @
  29. [ dbexpress ]
    * Z2 F& C. K/ R8 {/ ^; ]/ q
  30. sqldir = mysql_sql 7 {6 c' Z: Q" E0 y4 b7 Q
  31. drivername = MySQL中
    2 B! w5 [4 z) q
  32. 数据库= your_database_name_here 3 @) G' I# a- P* A
  33. 主机= the_pc_the_mysql - server_is_on 0 q. ]: X( s7 e) ~* Y; p3 A) F, [8 v
  34. user_name = user_name_on_the_mysql服务器
    9 f' c5 q' }$ k" K
  35. 密码= password_to_go_with_above_user_name
    - f8 Z) t7 \$ ?5 c  f. n7 a) r- D$ O
  36. getdriverfunc = getsqldrivermysql 9 c7 k* `6 ]& L( f
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib 6 ]0 J$ ?5 h  b% w# ?
  38. libraryname = path_to_libsqlmy_libary
    " t" t$ U# c. Q2 Y. ?
  39. 积极= 1
    7 I7 B8 h2 o3 E, T" v
  40. ---削减这里--- # l5 @1 I4 j  A7 ?3 g
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有: ( s( `# F: r; ?$ w8 ~: e7 W
  42. ---例如---
    / U2 x+ w9 x3 l
  43. [ dbexpress ] 3 v  ^! V3 m4 [% q8 c
  44. sqldir = mysql_sql
      j" _! G( L2 R6 e% R7 w. c5 I
  45. drivername = MySQL中
    8 B9 e& R) ~8 ?! ^2 K* V
  46. 数据库=测试7 |. [, E5 o/ I, c! w. r
  47. 主机=本地主机
    " y9 Y+ T5 K- |
  48. user_name = testuser
    6 J" @, _, ^" m3 G, g  e9 v
  49. 密码= my_password
    - v5 P# `9 p& ?1 {  J3 ]
  50. getdriverfunc = getsqldrivermysql , s0 p! c* o: Y6 Z0 z0 d
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0 ' _4 T  |9 Q, i
  52. libraryname =. / libsqlmy.so ) G- s' `- a' D' J( `6 i4 F
  53. 积极= 1 . I, a# S, r$ J/ I0 \/ X
  54. ---例如--- 2 V) v3 X' e$ r1 t

  55. % ]. N0 e+ v( {1 M
  56. 对Windows中,也运行MySQL服务器本地的,那就是: 3 j8 L( p4 H/ G% x5 X
  57. ---例如---
    # S5 i7 B6 d7 ~8 D1 t1 a$ S
  58. [ dbexpress ]
    ' [9 f  d9 ]4 T; b
  59. sqldir = mysql_sql / k& f9 O% _9 E6 P3 Y1 h
  60. drivername = MySQL中
    / t" {( f/ {/ s' Y2 ~; O
  61. 数据库=测试1 w& I6 X1 ]" _& Q
  62. 主机= 127.0.0.1 ( S7 U% Z9 {+ D3 H
  63. user_name = testuser , D5 \" L& s2 y! a0 }) B" a
  64. 密码= my_password % x5 g7 \' Y3 o( }% D
  65. getdriverfunc = getsqldrivermysql ' Z/ F$ @7 h) N2 s% D
  66. vendorlib = libmysql.dll在
    1 j1 Z+ z$ R& e7 U2 P9 Y
  67. libraryname = dbexpmysql.dll
    ! O. f1 k# r2 u
  68. 积极= 1 : g8 ]# T, \) J
  69. ---例如---- 0 o- ]+ a. d+ U! }7 E1 }0 @: A
  70. -写在0 2.03.04由p wk.linuxfan
    * s; t' D: ~- {, H' D; l+ D
复制代码
发表于 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
0 W" e; r4 ~( M
- X7 M) a( Q" l/ J% I  kbut, i only will free at nite, tuesday 11pm, your time
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2024-12-23 03:20 , Processed in 0.103721 second(s), 6 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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