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

1983 17

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

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan
3 Z2 C7 ~2 N" p. S7 E- j
" G& d. S0 M) d% n
  1. 5 i6 c* b% j" d# _" Q
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######+ Y( |$ N( `$ W( G' k/ f( D
  3. 9 i3 [) ~+ X* U4 u
  4. ### What we need ###
    0 a. m; T9 L: Y! R2 H! ?
  5. Naturally, we will need a MySQL server to store the data for us, this document 0 h( v# z4 _- A4 _
  6. will not explain how this can be done - there are documents out there for the ! O# @$ B; I2 L& a5 |" o9 i
  7. interested. The requirements include a (empty) database for TeamSpeak to use4 A* g% `* E. {& T5 W' H
  8. and a user account (username + password) that has the permissions to do stuff
    ! @$ w' s  ]. w5 G- z+ q
  9. with the database. Additionally, you will need a vendor library installed on the! o; h. c6 K: r! J5 \
  10. local machine, this came with my MySQL install.& h4 ?7 w* q8 Z6 x% m
  11. These instructions will not tell you how you might transfer your data from the) h: a+ ]) v. ^* R
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL
    . C6 }* B3 V! L: C
  13. database.
      u& O& O6 }  R
  14. Some users have reported ways to import a SQLite database into MySQL, but at
    7 a0 V  d1 j9 C: `' m) ~$ e. Q
  15. the time of writing, there are still too many issues - check the current status
    2 K. E: z) O) B3 P, h1 m; z
  16. in the TeamSpeak forums if you are interested.
    : x; m3 g# z) J7 ^+ U5 z" C& C
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from
    : k+ q+ j8 P' n" ], C1 U
  18. Borland was used. This driver can only interface with the client library that
    5 X" P9 d6 M6 c
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this  l5 t& F$ U, B: i" `: R
  20. client library - basically all you have to do is to use a 3.x client library as
      S- r/ }4 K7 M) D( z
  21. "VendorLib" and a 4.x database to connect to.- `; V1 k5 }3 I5 }: o. n0 {% C" c7 K' B
  22. If you need more info about dbExpress, you can contact Borland.
    2 n7 k3 g( x2 B% }2 z; a- a+ B$ y

  23. % T0 m2 j/ i+ Q7 U) n4 c
  24. ### Doing the work ###7 I* b# K9 x4 R9 w# p4 t, M5 z
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all0 r2 V( Z( L& \
  26. the perquisites right, just open your server.ini file, and add this section at
    4 `% M+ e3 S/ b+ ~2 ^1 h
  27. the end:
    ! F! U1 l% k* d9 D$ w
  28. ---cut here---( r5 Q  W5 y- I: X; \7 c4 O2 U
  29. [DBEXPRESS]9 R3 \- u( _- W  e( @
  30. sqldir=mysql_sql, Y( Q' p# ^" A+ x1 H
  31. Drivername=mysql
      f( e2 A2 k8 f  Z! L" W
  32. Database=Your_Database_Name_Here
    + @3 I8 X! X6 s/ T/ g# S2 z
  33. Hostname=The_PC_the_MySQL-Server_is_on
    " x: W/ p+ z! `6 T( u3 p. Q
  34. User_name=User_name_on_the_MySQL-Server* |' `9 o7 K; {
  35. Password=Password_to_go_with_above_user_name
    8 J( a  l1 S: K) v& O$ a  G& D
  36. GetDriverFunc=getSQLDriverMYSQL
      C9 W$ X+ B) `0 M
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib; {7 O5 @- j/ R3 l5 O$ v0 S
  38. LibraryName=path_to_libsqlmy_libary
    ) P% R" S: K: G* w  s
  39. Active=1) d6 z5 Z5 w4 n' v0 ]0 ^! w  h
  40. ---cut here---
    - M( X0 F; I' _+ }' G
  41. In my environment (a linux box with a MySQL server running locally) I have:) x4 @+ z, X( Q
  42. ---example---
    4 Z3 A/ @" t3 H+ k7 i
  43. [DBEXPRESS]
    5 F2 o+ ~% @( T, z4 n: z
  44. sqldir=mysql_sql
    # p/ W. W& M( x6 e  i3 ~
  45. Drivername=mysql$ H. J# w. H1 m. l0 T1 h
  46. Database=test% u0 Q! l+ V& T, y2 A
  47. Hostname=localhost
    1 u* ]2 c3 s: r$ Z) C# }# _
  48. User_name=testuser
    + g9 M' x! @6 G4 I, ]3 R
  49. Password=my_password3 f# K1 ^* K& U6 a- \0 P1 L( c
  50. GetDriverFunc=getSQLDriverMYSQL
    $ N- L! \" P1 w2 X
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.0
    2 {( C8 N) f  [+ `1 `6 b  \
  52. LibraryName=./libsqlmy.so
    ' A- U# k! ?( e8 P
  53. Active=1+ _& w* J5 F, p! I/ t
  54. ---example---# u2 i9 t2 F  J  [$ r2 {" |0 i2 {
  55. , B6 T  z( D- P1 ^: [+ V6 b
  56. On a windows box, also running the MySQL server locally, it would be:6 M% ]( _0 h- M8 v" r
  57. ---example---, q( n6 @- m6 w% j
  58. [DBEXPRESS]
    ! P6 r) _& l0 Z' J
  59. sqldir=mysql_sql
    4 O3 k' U3 z  H# j! c- O
  60. Drivername=mysql
    # h* L3 `5 ?" y1 C/ R
  61. Database=test% C! I! u) t1 E1 I
  62. Hostname=127.0.0.16 ]* l! Z0 N  K; R# O9 J
  63. User_name=testuser
    0 L# P4 n9 T  j! C
  64. Password=my_password+ ^1 X, _; j9 K* X) U2 q  f; O& F; g
  65. GetDriverFunc=getSQLDriverMYSQL  i2 N) Q9 P' A8 [# C8 T' d
  66. VendorLib=libmysql.dll
    3 z4 |# [+ M3 L- s5 r
  67. LibraryName=dbexpmysql.dll
    " l" x' c( W. E3 T4 u
  68. Active=1
    ' K- U- v6 O5 ~% h
  69. ---example----
    % b2 c5 k$ ~3 ]
  70. - written 02.03.04 by pwk.linuxfan$ s+ B( }8 V0 b3 Y# D* C5 H! c; k

  71. 3 T# t- Q1 X' s0 U3 x- W: w
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看
8 q2 v- r9 x2 Q" {5 X9 T* d2 ]

  1. - j) e/ c. C, r4 v2 U
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ######
    9 ]: T5 S: G. h
  3. : @' S4 m# W4 T& J
  4. # # #我们所需要# # #
    7 g7 a0 Q1 X2 ?& X% R
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件' h1 K( G8 t, n$ ^& n% j5 G
  6. 不会解释如何做到这一点-也有文件存在,为6 r5 J% s) P0 W
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用7 G; T/ D3 J2 W9 e
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西0 }0 ^, m/ U" U! u, W
  9. 随着数据库。此外,你需要一个卖方图书馆安装于7 l- p0 S- j; B& a
  10. 本地机器,这是我的MySQL安装。
    * z, R& U6 ^/ E
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从
    7 c2 ^* g, I' ]# v; J8 e$ c
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL 9 o" k* v( E- T
  13. 数据库。 4 ?2 J1 S  m" d2 Q& l
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在
    6 J% ^/ G" Q7 v; {2 J% V
  15. 编写本报告的时候,仍然有太多的问题-检查现状
    & z3 f& a4 z0 o, N7 ?6 o
  16. 在teamspeak论坛,如果你有兴趣。 3 }) D( S: f7 R0 g) ~% W. m- Z
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机& P+ j, Q! S5 {" T8 J1 p4 E
  18. Borland公司使用。这个司机只能界面与客户端库
    2 W  o/ [. q, q( s
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这
    + i; A7 |: _& U$ {5 P
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为- _1 _8 e, X" N0 V, @
  21. " vendorlib " ,并解数据库连接。 1 d/ G. h4 O$ H* U" T+ M. y* Z; `" E
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。
    0 v; Z  R$ V9 Q# x. Q$ u- d
  23. / B1 a  y# o( ^9 D; F) l
  24. # # #做好工作# # # 3 s/ r+ I  W- }; a  c( Z
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都& ]) H) r, x/ a  `
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在
    ; s" J9 G, X- w$ b1 Z) ^1 V0 R
  27. 结束:
    * l5 f& |; k. x4 t8 P
  28. ---削减这里--- $ a$ `/ D8 W. [* t' t
  29. [ dbexpress ]
    5 p8 C" u! m, G8 y" b, D, c9 p
  30. sqldir = mysql_sql 4 N' l  c$ X. ?3 \; t! O3 F/ R9 k$ i
  31. drivername = MySQL中
    5 U9 c6 k5 Z4 x( L" x' `
  32. 数据库= your_database_name_here # q( [& K4 [& u# O
  33. 主机= the_pc_the_mysql - server_is_on
    ) D4 e5 B: U( E  z5 E1 s- H
  34. user_name = user_name_on_the_mysql服务器
    % F5 d2 u5 D$ o% A! N5 v
  35. 密码= password_to_go_with_above_user_name ( M4 X: [: k7 k3 W7 U
  36. getdriverfunc = getsqldrivermysql # A7 U2 |6 q6 s
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib " y: M) k+ E& n
  38. libraryname = path_to_libsqlmy_libary # \: Y3 B0 n* t% t1 q1 ~
  39. 积极= 1
    8 ^0 t+ a7 w+ b4 M- V4 K- I- s
  40. ---削减这里---
    + t! {* [. P2 m: s
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有:
    " o0 W- e* f5 P
  42. ---例如---
    + b# g, M) w/ v$ N2 o* A
  43. [ dbexpress ]
    1 c- t5 g- q: l  r3 L7 F! n
  44. sqldir = mysql_sql
    9 D- K% _' N: e- `# w
  45. drivername = MySQL中
    . r0 ~0 }9 @# _' N* v
  46. 数据库=测试
    / L4 _$ F1 {1 i, [2 _8 `# @# o
  47. 主机=本地主机, {9 t4 [0 {% x( O7 Y' ?/ a3 `( A
  48. user_name = testuser ! M! P- s. _% n/ r/ d' L, N' H6 z
  49. 密码= my_password
    2 C- U  H0 [: N+ ~; S+ F
  50. getdriverfunc = getsqldrivermysql
    , Y+ d0 z1 x$ P& T& y4 Z
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0 : R" u" v" [$ s) l) H4 E8 m+ ~
  52. libraryname =. / libsqlmy.so 2 _! J- q. t2 g. a
  53. 积极= 1
    3 S2 K  s* A8 g+ `! g0 b& H
  54. ---例如---
    " E, D/ {4 e) @' [% R" M

  55. 8 g$ z+ _9 l- Q3 m- G8 P
  56. 对Windows中,也运行MySQL服务器本地的,那就是:
    ) _: j9 s% s, u' _5 m0 O: c
  57. ---例如---
    $ t$ _1 a8 B* E- B! y0 t, _
  58. [ dbexpress ] 4 S! W1 @4 x3 K* L# ]
  59. sqldir = mysql_sql ( u# X5 M/ Q& Q+ c: o
  60. drivername = MySQL中' ?4 O/ p+ _# \! {  F
  61. 数据库=测试2 H3 Y3 @! w- r. ~8 [8 Q0 K6 c
  62. 主机= 127.0.0.1 * P% Y% w2 q/ j- [
  63. user_name = testuser
      x: G0 ^4 H& y* P0 T4 w
  64. 密码= my_password ' X$ b5 C" [$ ~- B) ~! O
  65. getdriverfunc = getsqldrivermysql
    2 I4 G* O% D6 }
  66. vendorlib = libmysql.dll在
    7 _! M1 A: T' d: L7 F$ m$ x  s# A
  67. libraryname = dbexpmysql.dll
    ) }4 N# I: y: @  E/ z# ^2 E8 b
  68. 积极= 1 . E5 U2 ]: G. k- W/ |5 q6 I& j
  69. ---例如----
    : ]% m/ B! x! u8 |, Z
  70. -写在0 2.03.04由p wk.linuxfan
    8 I8 ]- a9 Z* t2 W* w9 b
复制代码
发表于 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- n# h  e- h0 S& ^$ ?8 ~% a/ W3 a: F
% Q# O8 Y3 o3 h- m& R! O+ j- c
but, i only will free at nite, tuesday 11pm, your time
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2025-1-22 15:56 , Processed in 0.115533 second(s), 7 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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