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

3108 17

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

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan # {/ J2 E4 r6 ?( o& j0 \. t% {
0 x: v+ q: \6 T5 ?: M  m
  1. / i- y% \. }0 g! j+ h2 Z3 {3 T6 u; y
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######
    5 L4 x9 v; i' C' b
  3. / e) R5 |6 x* C8 k$ r% [9 `
  4. ### What we need ###/ w+ U; c8 g; F
  5. Naturally, we will need a MySQL server to store the data for us, this document # V/ ]! n) O3 d- ]6 w+ e
  6. will not explain how this can be done - there are documents out there for the
    6 `; p+ g6 Q$ a% l' U
  7. interested. The requirements include a (empty) database for TeamSpeak to use
    : J5 ~$ b' l# Z4 w. u# i- J
  8. and a user account (username + password) that has the permissions to do stuff! y) f/ m5 D9 E+ }
  9. with the database. Additionally, you will need a vendor library installed on the
    2 v* U) W$ P: R
  10. local machine, this came with my MySQL install.
    ) a2 d! u2 b+ E$ o0 b
  11. These instructions will not tell you how you might transfer your data from the
    . D! l- D( P4 N" e( u
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL
    8 @3 ]' y: m: g8 \! n9 y
  13. database.4 M+ L$ O' o# _/ O
  14. Some users have reported ways to import a SQLite database into MySQL, but at
    6 c  n: {- l. Z
  15. the time of writing, there are still too many issues - check the current status
    0 W+ R/ }9 e7 r9 R/ u# f* F6 N4 \, ~
  16. in the TeamSpeak forums if you are interested.' g0 \2 `  E0 ?$ R
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from2 e1 v/ j) p8 `1 t/ i# o
  18. Borland was used. This driver can only interface with the client library that
      ~# q: x( j. b
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this
    ) C- _2 Y' Q& G2 V0 Z$ N
  20. client library - basically all you have to do is to use a 3.x client library as
    : Q3 h8 n2 G% N' m# Y
  21. "VendorLib" and a 4.x database to connect to.
    ; U* A/ _2 f% e, n4 U
  22. If you need more info about dbExpress, you can contact Borland.
    # T0 Q1 O5 Y: Y2 p+ u
  23. ( ^/ ?1 p0 `9 O$ [
  24. ### Doing the work ###0 w3 V/ D8 ^, F2 Y2 N
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all: a2 z& R# d- R: |2 O' x
  26. the perquisites right, just open your server.ini file, and add this section at3 R: Q. {; s! B# d
  27. the end:9 E* {4 O& B! e
  28. ---cut here---
    8 u/ M8 Y( w7 M- l
  29. [DBEXPRESS]1 {) f( k+ ?) V& e
  30. sqldir=mysql_sql6 y% K6 k. T: \$ u. V. O2 z9 w' H- T
  31. Drivername=mysql' A* G1 F6 n& l' u1 N, m' i
  32. Database=Your_Database_Name_Here
    " g$ T. O5 }. j; e
  33. Hostname=The_PC_the_MySQL-Server_is_on
    $ _* l3 ^1 G3 J3 J
  34. User_name=User_name_on_the_MySQL-Server6 K! z- o% C+ f& `  m" I6 f
  35. Password=Password_to_go_with_above_user_name
    9 @6 O/ n8 c2 @8 h. ]
  36. GetDriverFunc=getSQLDriverMYSQL
    8 p- g5 \4 l2 z! w* C
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib' |, B7 T/ a) ]) U! u
  38. LibraryName=path_to_libsqlmy_libary9 A- f, l  d' P- [
  39. Active=1
    ( ]9 {# n& W# y6 v5 l$ r, c
  40. ---cut here---' f- B8 B4 f, C1 U
  41. In my environment (a linux box with a MySQL server running locally) I have:. [) y5 ]6 y  p# ^
  42. ---example---
    1 G* J8 V# o5 C9 E( q+ J5 l% C
  43. [DBEXPRESS]2 i) \+ a$ ~3 K3 t; o# S" ^) @
  44. sqldir=mysql_sql" [8 Z) v) K) n3 s" ~& l3 d; t
  45. Drivername=mysql
    : K- ~- d- D8 H0 H
  46. Database=test
    ) ]4 B) I; s& n7 S) j- ~
  47. Hostname=localhost
    ' o$ ?% K$ b$ i4 Z1 ?8 W
  48. User_name=testuser
    / V1 D! |  ?: Y5 }- f& _- R
  49. Password=my_password7 @1 `$ ?9 P$ Z* ]# A
  50. GetDriverFunc=getSQLDriverMYSQL9 a: a2 j/ Z* [
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.0
      ?! Z* I" a2 ^2 w; r) z6 B
  52. LibraryName=./libsqlmy.so
    2 s/ P0 z3 p, ~6 V& {- \
  53. Active=1* e3 O! f; ?8 G5 P0 u
  54. ---example---
    8 H1 e5 k' e& a5 V* B8 L

  55. 4 I7 A4 s7 D: ^( @  V9 h& [
  56. On a windows box, also running the MySQL server locally, it would be:  P2 P' g6 N- T, u
  57. ---example---- B3 q' `' Q7 k- j2 C6 h
  58. [DBEXPRESS]! @  H$ f) C; y3 h' `
  59. sqldir=mysql_sql& u& |+ C8 z/ G* z, _! s6 L, C
  60. Drivername=mysql
    & Q, r7 n7 i& {' K% x/ Z
  61. Database=test% ]5 R& _6 L# i7 J) |. [
  62. Hostname=127.0.0.1
    9 b- Y0 U( w$ |( @( T& ]
  63. User_name=testuser; j0 N5 P( u3 t, O4 u1 @( Z
  64. Password=my_password
    ' f( `+ S3 ~: u  s# m
  65. GetDriverFunc=getSQLDriverMYSQL
    6 ~4 M: V& V5 z$ @- H. T
  66. VendorLib=libmysql.dll: T: v" ?1 D- K7 U8 |0 \5 l
  67. LibraryName=dbexpmysql.dll
      |4 [! i1 z/ E6 R
  68. Active=1
    5 l( V: r9 I8 B! ~; t* X
  69. ---example----- j8 v5 Y4 [- ?" n2 P1 S' E
  70. - written 02.03.04 by pwk.linuxfan
    ! Z- s7 H7 f, J5 w9 u2 F4 ~

  71. 2 H6 M" \5 c" M3 N
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看
! T1 [+ o5 I' }% M  s, C
  1. 8 q  X" E/ a5 G( o6 G- E) ^* ^
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ###### - O9 F8 E# b; z6 _7 O% f
  3. : f" f, Q8 m  F5 ^" Y5 X
  4. # # #我们所需要# # # 1 Y$ g- i! \# I2 b  Q' @8 O
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件3 f  I5 G( ~! X5 c/ T! S, o
  6. 不会解释如何做到这一点-也有文件存在,为
    1 j  X$ ^/ v1 Z5 Q
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用
    ( _' ]7 I7 h" l/ c4 t% o
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西
    8 e% u  M  L7 D/ A# ~1 t7 N0 N9 h
  9. 随着数据库。此外,你需要一个卖方图书馆安装于
    - U4 H, g- _; B) z8 V
  10. 本地机器,这是我的MySQL安装。 % V6 `8 @2 w" P8 q
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从
    / J! A% N/ c9 m, Y
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL 4 Y( d$ R6 k6 N& @  q5 e
  13. 数据库。
    * W9 R4 j: I2 X# l: m
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在3 O* M7 H$ c1 b+ P' A! J0 ~
  15. 编写本报告的时候,仍然有太多的问题-检查现状
    5 m3 }4 }3 A! g/ A+ x  e" v3 p
  16. 在teamspeak论坛,如果你有兴趣。
    % I, X; Q( C! ~
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机
    , m* R' [; a% m* l: H
  18. Borland公司使用。这个司机只能界面与客户端库
    6 k/ ~5 U& I" m  E/ ^5 d
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这
    $ H' K" z; B+ L2 ?$ Z: t
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为& o/ Y! B, H9 O7 `$ H* \: T
  21. " vendorlib " ,并解数据库连接。
    ; t: N6 c/ F- l, p
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。
    9 ^2 I3 ^4 ?" R, N5 W

  23. 9 w3 j& q# Z3 C* M7 [7 g: G. u
  24. # # #做好工作# # # ' u( x# w) R, K/ t4 \$ g0 o+ J
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都' d1 O' \& R! S7 J; F
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在
    9 G$ j  e2 `% a3 o
  27. 结束:
      b% t( Y, U4 z6 W8 x# Q
  28. ---削减这里---
    ) K" t! \" i' h4 [; C9 a* Q. E' n0 A
  29. [ dbexpress ] : I# @7 J% G) _% m0 @* k8 t- I
  30. sqldir = mysql_sql ; [- i, _  ?, L6 F- i
  31. drivername = MySQL中0 s/ w% m; C2 L! T7 B
  32. 数据库= your_database_name_here " T& c" Q1 k; e) F; [& v
  33. 主机= the_pc_the_mysql - server_is_on
    4 B, M5 f5 O; I4 J3 m1 \
  34. user_name = user_name_on_the_mysql服务器$ k# X  y. Q; E* G8 x
  35. 密码= password_to_go_with_above_user_name
    # ^8 _  Q/ f5 Y8 r. i4 v$ H
  36. getdriverfunc = getsqldrivermysql
    7 V2 R: e0 }' }0 i& c, ^& p( Z
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib
    ! N2 C: [3 s7 ?5 Q6 P
  38. libraryname = path_to_libsqlmy_libary
    ! [1 ]- i( K1 k
  39. 积极= 1 9 u2 }* H( Q8 z
  40. ---削减这里---
    % K) U1 ^( @! z: h* r
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有:
    0 l7 x( M4 p3 N4 A: V
  42. ---例如---
    ; t( L) Z6 ^# C0 H) I8 N2 N! C$ l
  43. [ dbexpress ] ' r9 ]2 g9 ]2 U4 ?  n* v
  44. sqldir = mysql_sql 8 ^* F( P  T8 J$ d
  45. drivername = MySQL中8 K* i! F+ y2 o6 N
  46. 数据库=测试
    $ P% L7 W$ b( S
  47. 主机=本地主机% D# r" j  Z; M: n- E) k% @
  48. user_name = testuser
    * r9 E! v3 v; Z+ Z3 _
  49. 密码= my_password
    3 B( \% \: W. \$ x. T
  50. getdriverfunc = getsqldrivermysql 7 M: w6 f& P0 D' t( ^8 T4 q
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0
    3 n, I. M+ ]! n) v. a+ }7 l- ^  f
  52. libraryname =. / libsqlmy.so
    ; O, W3 p! V+ k% @8 _) r' L2 \
  53. 积极= 1 " h$ r& ~& I7 R. b9 l
  54. ---例如---
    3 |( w7 X2 k7 t! u. H5 x! f

  55. $ q6 n3 T& f& n' [
  56. 对Windows中,也运行MySQL服务器本地的,那就是: " v2 h& D$ Z% j2 ~
  57. ---例如---
    2 k: D7 ]+ \: \. Y/ Y
  58. [ dbexpress ]
    ; Y% v8 M  U3 J% o  V7 a. W
  59. sqldir = mysql_sql # L% G& T  H1 t6 l4 F- h! e8 V8 h% l  A
  60. drivername = MySQL中6 f9 G( ^5 [* p0 R9 b7 ]
  61. 数据库=测试
    9 _4 q+ u& s% |5 e) j; C6 O
  62. 主机= 127.0.0.1 : D$ m0 X  G8 L. S. ^! D
  63. user_name = testuser
    3 J9 s$ B- I2 ~  x3 I
  64. 密码= my_password 3 c: t( H) F6 H
  65. getdriverfunc = getsqldrivermysql
    " N+ {$ L  L0 {$ P- a
  66. vendorlib = libmysql.dll在
    ( i7 V4 V! W% D2 h- l' t5 R
  67. libraryname = dbexpmysql.dll , c, `1 Y1 f3 e& H( L* `0 Q, K
  68. 积极= 1 2 K" l+ R5 i8 @6 l' [- B% r
  69. ---例如---- $ K8 w& V: @) ^0 t
  70. -写在0 2.03.04由p wk.linuxfan
    / F6 c4 Q$ K" P# l
复制代码
发表于 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
+ O: y* s* w4 H9 S0 p3 n
" Q" y; v" w) B" k1 fbut, i only will free at nite, tuesday 11pm, your time
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2026-9-3 14:24 , Processed in 0.125334 second(s), 6 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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