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

2448 17

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

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan 3 b! W, [# S' {$ Q  p

6 Y3 j# G$ t" {

  1. 7 r$ T& |% g4 }
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######$ \$ {2 ^; ]' ?9 ~

  3. * b, r1 x- [, p; W1 i/ }% m. T
  4. ### What we need ###( [& _9 W$ \3 [5 F
  5. Naturally, we will need a MySQL server to store the data for us, this document # a) n8 g. C( ^  y; J3 L6 y$ W
  6. will not explain how this can be done - there are documents out there for the . S' Z( n9 Q+ X5 a
  7. interested. The requirements include a (empty) database for TeamSpeak to use
    # \  D5 X) E7 [/ {" l
  8. and a user account (username + password) that has the permissions to do stuff
    6 i/ X, ^/ F( b/ {2 l% ?
  9. with the database. Additionally, you will need a vendor library installed on the0 u- W8 w/ a/ R( O/ a
  10. local machine, this came with my MySQL install.6 G$ d; t% Q: o0 X, }8 F/ `
  11. These instructions will not tell you how you might transfer your data from the
    # N& u/ o6 `: r; Q/ Z5 u- z
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL
    9 r) A1 _$ ], ~* J
  13. database.
    2 Z# Z" K. D: A4 `6 I6 g' N( d8 @) B
  14. Some users have reported ways to import a SQLite database into MySQL, but at
    ( }. u4 K/ ~5 {- H1 S7 I
  15. the time of writing, there are still too many issues - check the current status( Y3 k( W# V' X3 C# [/ ^+ ?
  16. in the TeamSpeak forums if you are interested.7 B6 d1 {6 |# X, }' ?! ?! }
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from
    1 I5 W- G9 z- T) a. U0 C( K
  18. Borland was used. This driver can only interface with the client library that 8 Q" Z  q( C, b+ U9 H7 l7 x7 w' }: f
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this
    $ v  u: j8 d" n9 w# N  q/ B8 n1 b
  20. client library - basically all you have to do is to use a 3.x client library as
    ; r5 Z5 r) r8 h+ _
  21. "VendorLib" and a 4.x database to connect to.
    3 C, R) @0 F1 o
  22. If you need more info about dbExpress, you can contact Borland.! C: o& i; l) P% Y9 A( R
  23. 3 a; M/ e9 m; x
  24. ### Doing the work ###
    - c1 i5 T. `* w  H* y
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all
    / X9 ], i$ r6 Z' g0 e6 Q
  26. the perquisites right, just open your server.ini file, and add this section at" g- N. U9 U, r, m
  27. the end:
    $ F" n$ g7 C. A! y
  28. ---cut here---; D3 Y4 F8 p! ^$ p' T, V5 [$ Q
  29. [DBEXPRESS]
    # d  W1 P) R, [5 a+ d* R2 i
  30. sqldir=mysql_sql
    ) d2 N& N2 V; ]. F- }: J8 X
  31. Drivername=mysql5 t/ r1 \0 g- W7 S+ C6 D/ A& Z
  32. Database=Your_Database_Name_Here
    / _9 B. f+ {, n5 R7 l+ F) d8 F
  33. Hostname=The_PC_the_MySQL-Server_is_on' x' U- h# V6 W- T1 ~0 Z: J
  34. User_name=User_name_on_the_MySQL-Server
    9 ?3 m2 \# l& {- F9 O3 \2 ]
  35. Password=Password_to_go_with_above_user_name* I# @' V  `2 F2 w' Q& Q
  36. GetDriverFunc=getSQLDriverMYSQL& I/ i( d: M: ^3 a5 p
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib
    ) ]( F: o7 X* S( W
  38. LibraryName=path_to_libsqlmy_libary
    8 c) X& T" A! p, r# ?3 c: n
  39. Active=1$ x2 R" w) P1 y
  40. ---cut here---3 s% ?; V0 a4 c3 l- R% f4 E) i
  41. In my environment (a linux box with a MySQL server running locally) I have:  r: Z& Y2 g" n& E( r. K, M
  42. ---example---
    ' g8 m3 r+ h4 Q4 q6 q
  43. [DBEXPRESS]- s9 l4 e4 G0 F$ t9 O2 z% A- _' ~
  44. sqldir=mysql_sql7 L& d$ s4 w* Z. y  K
  45. Drivername=mysql1 ~4 P# C7 y! [, E
  46. Database=test
    & v" Z" F, U( L
  47. Hostname=localhost+ E+ q+ [/ H" K" f: r& O4 r
  48. User_name=testuser
    . |! u( c  l7 y' a
  49. Password=my_password
    1 F9 c8 V3 r  g# e4 K% _' O
  50. GetDriverFunc=getSQLDriverMYSQL
    " N9 u  F" g' k& |# r
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.0
    ; |- \3 S+ E% m4 l$ ^! e
  52. LibraryName=./libsqlmy.so  e7 G) x/ G2 a
  53. Active=1
    ; z! i/ J5 B1 M. y- k7 {
  54. ---example---
    ' y3 `6 E4 H" _0 O0 o) l& u( f$ s

  55. 7 L6 D! H, G3 o, W( i
  56. On a windows box, also running the MySQL server locally, it would be:+ X& \1 I. `# W
  57. ---example---
    6 w- o( q/ N+ ^6 X8 W! i1 {4 d# Q# |
  58. [DBEXPRESS]: h# P8 I7 S: [& z# ]- [
  59. sqldir=mysql_sql
    ( L0 c- l- g6 K  U; `8 e# U4 c
  60. Drivername=mysql# o2 x0 Q) B7 e3 D: ?- I
  61. Database=test
    ; A0 ]  f* V( E" a. l3 t' M
  62. Hostname=127.0.0.1' S2 d! ~: v4 Q! s" x+ G$ p' N' C
  63. User_name=testuser" R3 Y' X1 h! T* W
  64. Password=my_password  j  k" u% p3 e' U
  65. GetDriverFunc=getSQLDriverMYSQL
    2 I3 D( |# I; W- j
  66. VendorLib=libmysql.dll
    , ^2 {1 A( Z) ~9 M
  67. LibraryName=dbexpmysql.dll
    * m3 O2 ]2 Y6 K+ ?2 y; q1 M' _9 M
  68. Active=1
    & w: p; w5 G$ g6 Z6 g4 {
  69. ---example----
    6 L2 K. d/ e. t7 H( {6 g) s: E; P
  70. - written 02.03.04 by pwk.linuxfan- a! d( d. @( u$ U7 }

  71. 8 A) p! ~  h5 b/ i3 w7 L
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看
+ h9 z2 |/ c3 G6 ?' Q; a

  1. 5 z4 Q* l1 k2 \6 e- d
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ###### & ~# m$ _* S3 j2 ~6 V( @

  3. , ?$ p* C5 ^) _( ^3 q
  4. # # #我们所需要# # # + E$ \, U# Y2 D+ g
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件. V$ J/ t' [; B. ]( I
  6. 不会解释如何做到这一点-也有文件存在,为
    ! I& C9 f5 u9 R/ N& ]
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用) b. H9 t! ~. N( k0 ~: p4 i
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西
    3 [% R3 z* ~6 k/ ?
  9. 随着数据库。此外,你需要一个卖方图书馆安装于: M, N$ @3 c+ S% Z$ H: T; m+ P
  10. 本地机器,这是我的MySQL安装。 % c0 a& t; t; ~7 E; x# n
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从( [! V! p* x6 h) }* [
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL
    * O+ f+ ~0 O$ v
  13. 数据库。
    ! Z" I! B, v) o% ]) ?
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在
    1 E: T; p0 f! O4 ^, [$ L' m1 o* w3 y
  15. 编写本报告的时候,仍然有太多的问题-检查现状
    + x& ~. d/ |7 M
  16. 在teamspeak论坛,如果你有兴趣。
    % G5 u$ f5 y4 I( H
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机
    $ W  ]8 t/ {# u
  18. Borland公司使用。这个司机只能界面与客户端库
    0 z7 V) _& X; a$ m/ d1 H
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这
    ! T& V9 A% m" s3 P. g. t% _# K. [
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为0 G( A+ P! M- a" W  i
  21. " vendorlib " ,并解数据库连接。
    ! u: p: T: q: J
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。   Q0 D* e( x4 \

  23. ; w- C: \2 M2 O4 d1 P
  24. # # #做好工作# # #
    ) s7 S8 w$ L0 g( e# J
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都" _- W0 X( m1 f1 \: ]& p1 L  W
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在* C" ~3 M3 p  `3 d* l3 d
  27. 结束: * T7 h; l- E2 ~/ W+ Q
  28. ---削减这里---
    9 V3 ^; T3 K  s' e
  29. [ dbexpress ] + {; T4 n5 U* U5 |2 }
  30. sqldir = mysql_sql
    ' `, Y& n7 n. m! U6 j. L
  31. drivername = MySQL中
      C1 f( Q% c( a
  32. 数据库= your_database_name_here . [! a* Q! C$ f8 `
  33. 主机= the_pc_the_mysql - server_is_on
    & ]0 l/ w% b! T/ s+ Q, `1 }, `4 X
  34. user_name = user_name_on_the_mysql服务器2 f4 _8 f. |  N
  35. 密码= password_to_go_with_above_user_name
    ) Q( H( `# F6 m( t0 {
  36. getdriverfunc = getsqldrivermysql / i. @2 b+ M# y/ w- X7 i0 j
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib
    ; [3 A+ b  t! g" ~
  38. libraryname = path_to_libsqlmy_libary , K7 m  a; h+ x, z3 l& M5 `
  39. 积极= 1
    & n) y- k8 N& U' b; ~- D
  40. ---削减这里--- 4 x5 E; a5 N& m: R8 \2 \2 C
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有:
      l4 Y4 ~* W/ Z  y7 h; R
  42. ---例如--- 7 I0 l7 l/ \2 A/ l
  43. [ dbexpress ] 4 o8 f! j$ T' C% J/ m& X4 _
  44. sqldir = mysql_sql : g, ~) W. _+ H. c
  45. drivername = MySQL中
    5 c1 W8 c2 P; Y# b  i9 h, V
  46. 数据库=测试% i9 O+ b' ?" E; f# Q' v
  47. 主机=本地主机
      A3 ?0 R# s  G2 p- c  j
  48. user_name = testuser
    ( S" K. z4 B5 D
  49. 密码= my_password
    9 R" s- Z2 T3 F! D! A& S* e
  50. getdriverfunc = getsqldrivermysql
    5 k) `% ]5 o- C  U/ ~" x: {
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0 & C6 X7 v) ?: T  s: f
  52. libraryname =. / libsqlmy.so 5 H7 I; p9 `% L% \- t
  53. 积极= 1 5 d) u- Y* b& \8 \7 U; `
  54. ---例如---
    5 M9 l% w8 s4 `: b7 G! u

  55. ) l2 w+ M% }! N4 d  @- C, L
  56. 对Windows中,也运行MySQL服务器本地的,那就是:
    / V) S* C. p5 y# s# N
  57. ---例如---
    % ]7 l0 J) T7 H% h
  58. [ dbexpress ] ) i+ \2 |6 j" i, r: N/ K9 d
  59. sqldir = mysql_sql
    & [& G3 ~. }1 G2 \
  60. drivername = MySQL中
    & g3 X/ o( a% R3 A1 H
  61. 数据库=测试
    . k( o2 z/ u, y& w8 p: v6 g% m
  62. 主机= 127.0.0.1 6 H# [7 z, R; D4 |
  63. user_name = testuser
    ( N5 W# V4 H$ J" ?% S
  64. 密码= my_password 2 h! I  P% q0 `! s9 Y3 n* H6 M  v
  65. getdriverfunc = getsqldrivermysql
      p4 w( t2 j: E0 b
  66. vendorlib = libmysql.dll在( m$ Q4 I- H& \! f) q: `6 z
  67. libraryname = dbexpmysql.dll
    2 i; p( H5 l; i+ Y
  68. 积极= 1
    . L# E$ B, W& p
  69. ---例如----
      ^( x2 q! D) R3 W
  70. -写在0 2.03.04由p wk.linuxfan6 H9 j1 G; B9 O/ G& h
复制代码
发表于 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) b: @. o) ?
: e# l- a+ q9 Z. X- x) a
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-6 02:41 , Processed in 0.107290 second(s), 6 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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