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

1901 17

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

[复制链接]
发表于 2008-1-18 15:41:41 | 显示全部楼层 |阅读模式
麻烦翻译一下,下面这段文章:xhan
! t. O/ B! D. B4 |. X/ ^; C% C7 P' h1 `( d! o$ S6 A
  1. 5 W7 a% H% f% P! f- Q; V
  2. ###### Using MySQL as Database for TeamSpeak-Server 2.0.20.1 ######
    8 c5 T1 F  N: i$ H9 t

  3. : D  V6 l7 F, T# X
  4. ### What we need ###
    9 [0 {/ u7 i3 ~3 X0 Z# ?4 J- Q9 I
  5. Naturally, we will need a MySQL server to store the data for us, this document
    # G7 X7 g, a% G8 b( p! F
  6. will not explain how this can be done - there are documents out there for the 4 D8 H9 d" o# V# }  m1 z8 z4 x
  7. interested. The requirements include a (empty) database for TeamSpeak to use
    " N8 d7 q/ i1 V0 P6 p7 B% P  Q
  8. and a user account (username + password) that has the permissions to do stuff; M$ H$ i, b- W7 `& s4 Z% A; Q
  9. with the database. Additionally, you will need a vendor library installed on the
    4 |8 u* ]- O* C' q1 y, W: G
  10. local machine, this came with my MySQL install.
    : s8 o$ \) W9 f% {) Y. f8 x, Q
  11. These instructions will not tell you how you might transfer your data from the
    " _+ s: u7 a" w! s; V
  12. SQLite database to the MySQL database, we start with a clean and empty MySQL5 P# W$ ^) |, y0 H) U8 W( s; {
  13. database.- X( g' Y6 c: a/ F7 b1 F3 `" |# n
  14. Some users have reported ways to import a SQLite database into MySQL, but at
    , w# _1 |- Q' d- i8 F  S
  15. the time of writing, there are still too many issues - check the current status: O- K$ G& x- f- l9 m
  16. in the TeamSpeak forums if you are interested./ n: s# e7 M. _- K
  17. NOTE: To allow TeamSpeak to access the MySQL database the dbExpress driver from9 o+ s; C( ^  P- R
  18. Borland was used. This driver can only interface with the client library that
    4 d( \6 E, y1 t
  19. comes with MySQL 3.x. It is possible to access a MySQL 4.x database with this
    % a8 A9 G, u5 H( Y7 d# I% J
  20. client library - basically all you have to do is to use a 3.x client library as 2 ]  z. s' q+ [0 m
  21. "VendorLib" and a 4.x database to connect to.. s8 d. Q% J& t3 {" R% j. F0 [( s* {1 H
  22. If you need more info about dbExpress, you can contact Borland.
    3 M" M- F' f/ T: ]& Z0 q
  23. 3 x* k* o: B0 V: Y
  24. ### Doing the work ###
    . l& U* a+ L2 P7 I
  25. Setting up TeamSpeak to use MySQL (should) be straight forward once you have all8 |' m* b0 U! n4 Y- N& O
  26. the perquisites right, just open your server.ini file, and add this section at1 C& z0 U! t) A$ L
  27. the end:
    % O. ]% O  o* J% N* h! p
  28. ---cut here---
    - P; ?$ d$ L* v. X  Z
  29. [DBEXPRESS]4 b  q' b- K1 a; \$ _
  30. sqldir=mysql_sql
    + |% G0 @) L0 ^1 u. {% N7 j
  31. Drivername=mysql( }$ T; t8 K) a: J1 k5 q
  32. Database=Your_Database_Name_Here  M& m! _# i6 Y0 n+ p
  33. Hostname=The_PC_the_MySQL-Server_is_on
    # c8 \  S# k! D, S& ~+ J6 o1 i
  34. User_name=User_name_on_the_MySQL-Server
    1 T1 G* q* l0 y! a+ p' r3 P
  35. Password=Password_to_go_with_above_user_name
    8 R- X8 v* G4 b  W0 M
  36. GetDriverFunc=getSQLDriverMYSQL
    * Q7 G6 [6 \. A4 V5 v: @
  37. VendorLib=path_pointing_at_your_mysql_vendor_lib
    ! D% @) c* B) W  O
  38. LibraryName=path_to_libsqlmy_libary" i  j$ M8 T. G6 h# e' N8 l
  39. Active=1
    : e1 g$ ]2 ]* @# S
  40. ---cut here---( L- {1 l( t* j" q2 X3 t# a
  41. In my environment (a linux box with a MySQL server running locally) I have:3 Y; {8 n/ }2 w! t3 e; ^  O7 B% s
  42. ---example---* ]  y& p4 g% E
  43. [DBEXPRESS]
    - b5 M! H7 C* Q- u0 V
  44. sqldir=mysql_sql
    " X$ c9 s' ~, h% m$ s
  45. Drivername=mysql( ?) Z  `% z2 z- N
  46. Database=test$ E4 g& L2 q8 Y& g7 w
  47. Hostname=localhost
    & j' }: @+ @; O; t& Y1 E3 [
  48. User_name=testuser$ x3 H% M8 h' {5 o$ }/ j4 n
  49. Password=my_password
    ! {# i' q, u# b* k$ S
  50. GetDriverFunc=getSQLDriverMYSQL
    " v3 N5 ]5 t' x" G3 J9 c* ?
  51. VendorLib=/usr/lib/libmysqlclient_r.so.10.0.0
    1 b9 c) ^% p* Y$ Q' ^. e
  52. LibraryName=./libsqlmy.so
    ( ~6 e+ h5 l% [. d9 d' ~, N
  53. Active=1
    ' p- t3 x6 j/ M& b) J* y
  54. ---example---$ q6 k2 H- ~9 }4 }* r& D
  55. ' O# A6 d( E8 J/ B
  56. On a windows box, also running the MySQL server locally, it would be:
    * {2 Q5 }1 Q0 w$ [1 _
  57. ---example---1 f& X: l0 w3 Z- w8 ?$ d2 K0 R0 Y
  58. [DBEXPRESS]' O, V! K- i& P5 P9 S4 I/ [7 l
  59. sqldir=mysql_sql- R0 I" X" Z) q7 e
  60. Drivername=mysql8 l, E& c$ ~' m( o0 H1 Q3 C% x
  61. Database=test
    4 d- h! X! U% x1 i# a5 i0 ~
  62. Hostname=127.0.0.12 }0 J. m' ^$ {1 O- D" E
  63. User_name=testuser
    / N% d$ N1 K! S& Q# h
  64. Password=my_password
    - S* I9 s. t! D  o/ s
  65. GetDriverFunc=getSQLDriverMYSQL
    ) C0 {" _" `; n2 ]& j! y/ v7 T
  66. VendorLib=libmysql.dll$ c2 e) S7 C( v/ E8 F  f4 u
  67. LibraryName=dbexpmysql.dll
    5 {* W0 H6 Z3 r# {  b
  68. Active=1
    . Y: H# i2 c# M/ A" W6 l, H
  69. ---example----
    ! ?6 R* r3 ]. F( \; r
  70. - written 02.03.04 by pwk.linuxfan4 Y+ n/ f# }/ b3 z3 m$ C
  71. # k! e) z8 t: J# T& A( A$ R7 E" u/ |
复制代码
发表于 2008-1-18 15:43:17 | 显示全部楼层
就是说在每一句英文附加一段中文注释,不知道可有难度不??:xhan
发表于 2008-1-18 15:48:42 | 显示全部楼层
我这里有一个网页自动翻译的结果,大家校正一下看看
) J$ z0 `7 |. d
  1.   a5 p0 u3 Y& E+ Y: i: f. t
  2. ######使用MySQL数据库,为teamspeak服务器2.0.20.1 ######
    + z! {/ }' u5 V( i2 B
  3. " x  C6 }2 [. H+ W# u3 |
  4. # # #我们所需要# # #
    ) [$ ^% n2 }" s4 Q
  5. 当然,我们还需要有MySQL服务器来存储这些数据对我们来说,这个文件: E5 m, Y) Z6 w
  6. 不会解释如何做到这一点-也有文件存在,为
    : v7 C/ n& w2 f8 E
  7. 有兴趣的。要求包括: (空)数据库teamspeak使用6 ?3 `: P% w+ U1 w7 W" R) j
  8. 和一个用户帐户(用户名+密码) ,有权限做的东西7 B7 T; G: I" y8 R
  9. 随着数据库。此外,你需要一个卖方图书馆安装于
    . g% |# L* t, o, B; G
  10. 本地机器,这是我的MySQL安装。 & s+ G* O4 ~. P: z' |! o" T
  11. 这些指示不会告诉你,你怎么可能转移你的数据,从
    " ]6 V" c, t4 v1 O$ Q
  12. SQLite数据库向MySQL数据库,我们开始一种更清新和空洞的MySQL 7 L: _2 N0 t8 c0 C2 B4 I9 }" u; W- R
  13. 数据库。 : }* R4 E% Q5 B  g8 F
  14. 有些用户报方式进口SQLite数据库到MySQL中,但在) T: k( ]  u% l( Y6 r5 b0 }: l" S
  15. 编写本报告的时候,仍然有太多的问题-检查现状
    1 _: `- t1 R6 [0 X
  16. 在teamspeak论坛,如果你有兴趣。
    6 F3 X4 r) c& g2 u7 y
  17. 注意:为了让teamspeak访问MySQL数据库的dbexpress司机
    / l9 P5 A: N- V. M+ @& h/ L  m
  18. Borland公司使用。这个司机只能界面与客户端库
    , [8 f& r7 r9 d7 h& U) e: H) u
  19. 随MySQL 3.x.这是有可能进入一个mysql解数据库,这( Z3 n4 y- T: n
  20. 客户端库-基本上你所需要做的就是使用3 .x客户端库作为
    6 o, S/ c) V4 F7 N  e; Y
  21. " vendorlib " ,并解数据库连接。
      ^$ ~$ v. ^( l5 d% m+ F
  22. 如果您需要更多的信息dbexpress ,你可以联络Borland公司。 # z5 i! y3 a* |7 f
  23. 9 s0 M- i5 K( l# b/ s( d; |) D. f1 l
  24. # # #做好工作# # # # V0 b4 ]8 F+ l% K. x( V
  25. 成立teamspeak使用MySQL (应该)直线前进时,一旦你都
    ' a0 C0 r+ \# J0 Y' C( U
  26. 该额外赏赐权利,而只不过是打开你的server.ini文件,并加上这一节在
    ( @1 k/ d! _/ p* @
  27. 结束: & a* F# M1 ~3 \$ |1 A
  28. ---削减这里---
    + X8 r/ Z" m7 K! a% {8 e
  29. [ dbexpress ] 7 _$ @; a3 J  j( z1 @' `
  30. sqldir = mysql_sql
    5 A0 [$ N2 u; R. R: ]$ Z. H& P2 x
  31. drivername = MySQL中
    8 g& v$ u3 C/ n6 R3 \
  32. 数据库= your_database_name_here   \7 x$ {: A9 r' P
  33. 主机= the_pc_the_mysql - server_is_on # I4 n1 _! G( X0 S$ j# d
  34. user_name = user_name_on_the_mysql服务器0 v6 t2 \+ g" N# s+ y+ ?! z
  35. 密码= password_to_go_with_above_user_name 1 E; w2 P2 E& a% |$ @
  36. getdriverfunc = getsqldrivermysql
    ( o+ G6 K, h; {2 p8 s3 T/ v# R2 Q
  37. vendorlib = path_pointing_at_your_mysql_vendor_lib
    5 P; Z/ ~6 m3 b8 c. x7 a0 k: I5 |
  38. libraryname = path_to_libsqlmy_libary
    % k" F% J1 c7 f
  39. 积极= 1 - F  l; }5 `3 [% g) e3 e
  40. ---削减这里--- 6 S  r  y$ v: }' [" r$ E0 r4 ], `
  41. 在我的环境( Linux的包装盒与MySQL服务器运行在本地) ,我有: / c. i4 h8 s( O  ?  i
  42. ---例如---
    % Y4 c2 r' a7 I5 `: K0 |
  43. [ dbexpress ] - B/ Q) x- a" C( w6 N
  44. sqldir = mysql_sql
    ! ^, |* K, K3 J, @. @1 e$ G
  45. drivername = MySQL中
    6 f/ e' X3 _# L4 f$ X' g/ ?
  46. 数据库=测试, y- ?/ x6 V) m+ Y& B) q9 m0 w
  47. 主机=本地主机+ `' s( n3 c0 n& d% `' g
  48. user_name = testuser
    ) P$ W0 j0 u: l7 Q; w
  49. 密码= my_password : M& o" Z  ^* R$ {3 y; A9 l% ^9 s
  50. getdriverfunc = getsqldrivermysql 8 }5 c  W, A% W( a9 Z3 j
  51. vendorlib = / usr/lib/libmysqlclient_r.so.10.0.0 : i9 H0 W. L( V) E* a# g
  52. libraryname =. / libsqlmy.so
    9 p/ Q  F' H/ E- N2 W: V
  53. 积极= 1
    . f4 D8 c' ]0 q, h' Q( O  ~
  54. ---例如--- 1 h+ Z( r) _+ D
  55. ( I) K/ L* J2 H2 z3 N: o
  56. 对Windows中,也运行MySQL服务器本地的,那就是: ) r: b. a( A2 [" s' q1 l# G
  57. ---例如---
    9 k& r0 [' ]" U
  58. [ dbexpress ]
    6 Z0 v9 Z- d; Q: }. d$ k+ |1 R* V
  59. sqldir = mysql_sql   O5 C* C9 h2 ?+ l
  60. drivername = MySQL中, B; t0 E5 V. m( `6 i& |( ^
  61. 数据库=测试
    + P3 V4 M! @' U
  62. 主机= 127.0.0.1 ( f. w- @: j' M! r% I
  63. user_name = testuser
    2 O4 ]$ r/ |  m3 E( i0 x
  64. 密码= my_password 5 w' k- D6 s6 p/ p, d$ G2 H. `! R, U
  65. getdriverfunc = getsqldrivermysql ' A; S3 b6 A+ W! H
  66. vendorlib = libmysql.dll在/ n) f0 K' z8 l2 \+ f. D" f& `+ q4 e
  67. libraryname = dbexpmysql.dll
    / ?# X  {. d  j+ z
  68. 积极= 1
    ; @& T3 d9 P8 p/ @1 @/ w
  69. ---例如----
    & m. H/ N' K1 `( @+ b
  70. -写在0 2.03.04由p wk.linuxfan
    " z/ D% |8 {6 m- w
复制代码
发表于 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 n: C+ }' C* b) c1 r4 L
9 ]) v1 S6 e. J5 Z5 y& Y4 P! ?but, i only will free at nite, tuesday 11pm, your time
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2024-11-1 14:22 , Processed in 0.104055 second(s), 6 queries , Redis On.

Powered by Discuz! X3.4

© 2001-2013 Comsenz Inc.

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