帮我翻译一下下面这段计算机资料吧谢谢

来源:百度知道 编辑:UC知道 时间:2024/06/07 02:25:16
Google\金山的就免了,谢谢 !
The standard client programs handle many of the most common tasks that MySQL users need to perform, but applications sometimes have requirements that are not addressed by the capabilities of those clients. In this part of the book, we'll discuss what you need to know to write your own MySQL-based programs for accessing your databases. To make this possible, MySQL includes a client-programming library that gives you the flexibility to satisfy whatever specialized requirements your applications may have. By providing you with access to the MySQL server, the client library opens up possibilities limited only by your own imagination.
To understand what you gain by writing your own programs, consider what you can accomplish that way in comparison to using the capabilities of the mysql client and its no-frills interface to the MySQL server:
? You can customize input handling. With mysql, you enter raw SQL statements. With your own programs, you can p

我自己翻译的,SQL学得不是很好,翻译的时候比较吃力,请见谅。

标准的客户端程序能够处理很多MySQL用户最常用到的任务,但是有时用户的水平使得应用程序的要求得不到处理。在本书的这一部分,我们讲讨论一下如何使用基于MySQL的程序来访问数据库。为了令使用方便可行,MySQL包含了用户编程库灵活地为您提供应用程序所需的所有需求。通过提供您对mySQL服务器的访问,用户库只能够为您一人提供服务。

要理解通过您自己编写的程序能够得到什么,您需要考虑您通过自己的方式来编程和使用MySQL客户端所提供的所有可能以及MySQL服务器简洁的界面来编程有什么不同。

你可以自己定制输入控制。通过使用MySQL,你能够看到原始的SQL语句。使用您自己的程序,您可以为其他用户提供更加易懂和易用的输入方式。您的程序可以由完全不懂SQL语言的人来使用,甚至使用者都不用知道数据库在任务中所起到的作用。输入采集是和命令行一样基础的东西,它提示用户,读入数值,或者一些复杂的东西,像基于屏幕管理包的屏幕表格,如curses,S-Lang,使用Tcl/Tk技术的X窗口,或者是网页中的表格。