数据库方面中英文对照

数据库方面中英文对照
数据库方面中英文对照

本科毕业设计(论文)

英文翻译

题目创业平台设计与实现

学生姓名

专业班级网

学号

院(系)

指导教师(职称)

完成时间 2008 年6 月6 日

英文原文

An Overview of Servlet and JSP Technology

Gildas Avoine and Philippe Oechslin

EPFL, Lausanne, Switzerland

1.1 A Servlet's Job

Servlets are Java programs that run on Web or application servers, acting as a middle layer between requests coming from Web browsers or other HTTP clients and databases or applications on the HTTP server. Their job is to perform the following tasks, as illustrated in Figure 1-1.

Figure 1-1

1.Read the explicit data sent by the client.

The end user normally enters this data in an HTML form on a Web page. However, the data could also come from an applet or a custom HTTP client program.

2.Read the implicit HTTP request data sent by the browser.

Figure 1-1 shows a single arrow going from the client to the Web server (the layer where servlets and JSP execute), but there are really two varieties of data: the explicit data that the end user enters in a form and the behind-the-scenes HTTP information. Both varieties are critical. The HTTP information includes cookies, information about media types and compression schemes the browser understands, and so on.

3.Generate the results.

This process may require talking to a database, executing an RMI or EJB call, invoking a Web service, or computing the response directly. Your real data may be in a relational database. Fine. But your database probably doesn't speak HTTP or return results in HTML, so the Web browser can't talk directly to the database. Even if it could, for security reasons, you probably would not want it to. The same argument applies to most other applications. You need the Web middle layer to extract the incoming data from the HTTP stream, talk to

the application, and embed the results inside a document.

4.Send the explicit data (i.e., the document) to the client.

This document can be sent in a variety of formats, including text (HTML or XML), binary (GIF images), or even a compressed format like gzip that is layered on top of some other underlying format. But, HTML is by far the most common format, so an important servlet/JSP task is to wrap the results inside of HTML.

5.Send the implicit HTTP response data.

Figure 1-1 shows a single arrow going from the Web middle layer (the servlet or JSP page) to the client. But, there are really two varieties of data sent: the document itself and the behind-the-scenes HTTP information. Again, both varieties are critical to effective development. Sending HTTP response data involves telling the browser or other client what type of document is being returned (e.g., HTML), setting cookies and caching parameters, and other such tasks.

1.2 Why Build Web Pages Dynamically?

many client requests can be satisfied by prebuilt documents, and the server would handle these requests without invoking servlets. In many cases, however, a static result is not sufficient, and a page needs to be generated for each request. There are a number of reasons why Web pages need to be built on-the-fly:

1.The Web page is based on data sent by the client.

For instance, the results page from search engines and order-confirmation pages at online stores are specific to particular user requests. You don't know what to display until you read the data that the user submits. Just remember that the user submits two kinds of data: explicit (i.e., HTML form data) and implicit (i.e., HTTP request headers). Either kind of input can be used to build the output page. In particular, it is quite common to build a user-specific page based on a cookie value.

2.The Web page is derived from data that changes frequently.

If the page changes for every request, then you certainly need to build the response at request time. If it changes only periodically, however, you could do it two ways: you could periodically build a new Web page on the server (independently of client requests), or you could wait and only build the page when the user requests it. The right approach depends on the situation, but sometimes it is more convenient to do the latter: wait for the user

request. For example, a weather report or news headlines site might build the pages dynamically, perhaps returning a previously built page if that page is still up to date. 3.The Web page uses information from corporate databases or other server-side sources.

If the information is in a database, you need server-side processing even if the client is using dynamic Web content such as an applet. Imagine using an applet by itself for a search engine site:

"Downloading 50 terabyte applet, please wait!" Obviously, that is silly; you need to talk to the database. Going from the client to the Web tier to the database (a three-tier approach) instead of from an applet directly to a database (a two-tier approach) provides increased flexibility and security with little or no performance penalty. After all, the database call is usually the rate-limiting step, so going through the Web server does not slow things down. In fact, a three-tier approach is often faster because the middle tier can perform caching and connection pooling.

In principle, servlets are not restricted to Web or application servers that handle HTTP requests but can be used for other types of servers as well. For example, servlets could be embedded in FTP or mail servers to extend their functionality. And, a servlet API for SIP (Session Initiation Protocol) servers was recently standardized (see https://www.360docs.net/doc/0712572434.html,/en/jsr/detail?id=116). In practice, however, this use of servlets has not caught on, and we'll only be discussing HTTP servlets.

1.3 The Advantages of Servlets Over "Traditional" CGI

Java servlets are more efficient, easier to use, more powerful, more portable, safer, and cheaper than traditional CGI and many alternative CGI-like technologies.

1.Efficient

With traditional CGI, a new process is started for each HTTP request. If the CGI program itself is relatively short, the overhead of starting the process can dominate the execution time. With servlets, the Java virtual machine stays running and handles each request with a lightweight Java thread, not a heavyweight operating system process. Similarly, in traditional CGI, if there are N requests to the same CGI program, the code for the CGI program is loaded into memory N times. With servlets, however, there would be N threads, but only a single copy of the servlet class would be loaded. This approach reduces server memory requirements and saves time by instantiating fewer objects. Finally, when a CGI program finishes handling a request, the program terminates. This approach makes it

difficult to cache computations, keep database connections open, and perform other optimizations that rely on persistent data. Servlets, however, remain in memory even after they complete a response, so it is straightforward to store arbitrarily complex data between client requests.

2.Convenient

Servlets have an extensive infrastructure for automatically parsing and decoding HTML form data, reading and setting HTTP headers, handling cookies, tracking sessions, and many other such high-level utilities. In CGI, you have to do much of this yourself. Besides, if you already know the Java programming language, why learn Perl too? You're already convinced that Java technology makes for more reliable and reusable code than does Visual Basic, VBScript, or C++. Why go back to those languages for server-side programming?

3.Powerful

Servlets support several capabilities that are difficult or impossible to accomplish with regular CGI. Servlets can talk directly to the Web server, whereas regular CGI programs cannot, at least not without using a server-specific API. Communicating with the Web server makes it easier to translate relative URLs into concrete path names, for instance. Multiple servlets can also share data, making it easy to implement database connection pooling and similar resource-sharing optimizations. Servlets can also maintain information from request to request, simplifying techniques like session tracking and caching of previous computations.

4.Portable

Servlets are written in the Java programming language and follow a standard API. Servlets are supported directly or by a plugin on virtually every major Web server. Consequently, servlets written for, say, Macromedia JRun can run virtually unchanged on Apache Tomcat, Microsoft Internet Information Server (with a separate plugin), IBM WebSphere, iPlanet Enterprise Server, Oracle9i AS, or StarNine WebStar. They are part of the Java 2 Platform, Enterprise Edition (J2EE; see https://www.360docs.net/doc/0712572434.html,/j2ee/), so industry support for servlets is becoming even more pervasive.

5.Inexpensive

A number of free or very inexpensive Web servers are good for development use or deployment of low- or medium-volume Web sites. Thus, with servlets and JSP you can start with a free or inexpensive server and migrate to more expensive servers with

high-performance capabilities or advanced administration utilities only after your project meets initial success. This is in contrast to many of the other CGI alternatives, which require a significant initial investment for the purchase of a proprietary package.

Price and portability are somewhat connected. For example, Marty tries to keep track of the countries of readers that send him questions by email. India was near the top of the list, probably #2 behind the U.S. Marty also taught one of his JSP and servlet training courses (see https://www.360docs.net/doc/0712572434.html,/) in Manila, and there was great interest in servlet and JSP technology there.

Now, why are India and the Philippines both so interested? We surmise that the answer is twofold. First, both countries have large pools of well-educated software developers. Second, both countries have (or had, at that time) highly unfavorable currency exchange rates against the U.S. dollar. So, buying a special-purpose Web server from a U.S. company consumed a large part of early project funds.

But, with servlets and JSP, they could start with a free server: Apache Tomcat (either standalone, embedded in the regular Apache Web server, or embedded in Microsoft IIS). Once the project starts to become successful, they could move to a server like Caucho Resin that had higher performance and easier administration but that is not free. But none of their servlets or JSP pages have to be rewritten. If their project becomes even larger, they might want to move to a distributed (clustered) environment. No problem: they could move to Macromedia JRun Professional, which supports distributed applications (Web farms). Again, none of their servlets or JSP pages have to be rewritten. If the project becomes quite large and complex, they might want to use Enterprise JavaBeans (EJB) to encapsulate their business logic. So, they might switch to BEA WebLogic or Oracle9i AS. Again, none of their servlets or JSP pages have to be rewritten. Finally, if their project becomes even bigger, they might move it off of their Linux box and onto an IBM mainframe running IBM WebSphere. But once again, none of their servlets or JSP pages have to be rewritten.

6.Secure

One of the main sources of vulnerabilities in traditional CGI stems from the fact that the programs are often executed by general-purpose operating system shells. So, the CGI programmer must be careful to filter out characters such as backquotes and semicolons that are treated specially by the shell. Implementing this precaution is harder than one might think, and weaknesses stemming from this problem are constantly being uncovered in widely used CGI libraries.

A second source of problems is the fact that some CGI programs are processed by languages that do not automatically check array or string bounds. For example, in C and C++ it is perfectly legal to allocate a 100-element array and then write into the 999th "element," which is really some random part of program memory. So, programmers who forget to perform this check open up their system to deliberate or accidental buffer overflow attacks.

Servlets suffer from neither of these problems. Even if a servlet executes a system call (e.g., with Runtime.exec or JNI) to invoke a program on the local operating system, it does not use a shell to do so. And, of course, array bounds checking and other memory protection features are a central part of the Java programming language. 7.Mainstream

There are a lot of good technologies out there. But if vendors don't support them and developers don't know how to use them, what good are they? Servlet and JSP technology is supported by servers from Apache, Oracle, IBM, Sybase, BEA, Macromedia, Caucho, Sun/iPlanet, New Atlanta, ATG, Fujitsu, Lutris, Silverstream, the World Wide Web Consortium (W3C), and many others. Several low-cost plugins add support to Microsoft IIS and Zeus as well. They run on Windows, Unix/Linux, MacOS, VMS, and IBM mainframe operating systems. They are the single most popular application of the Java programming language. They are arguably the most popular choice for developing medium to large Web applications. They are used by the airline industry (most United Airlines and Delta Airlines Web sites), e-commerce (https://www.360docs.net/doc/0712572434.html,), online banking (First USA Bank, Banco Popular de Puerto Rico), Web search engines/portals (https://www.360docs.net/doc/0712572434.html,), large financial sites (American Century Investments), and hundreds of other sites that you visit every day.

Of course, popularity alone is no proof of good technology. Numerous counter-examples abound. But our point is that you are not experimenting with a new and unproven technology when you work with server-side Java.

英文翻译

Servlet和JSP技术简述

Gildas Avoine and Philippe Oechslin

EPFL, Lausanne, Switzerland

1.1 Servlet的功能

Servlets是运行在Web或应用服务器上的Java程序,它是一个中间层,负责连接来自Web浏览器或其他HTTP客户程序的请求和HTTP服务器上的数据库或应用程序。Servlet的工作是执行西门的任务,如图1.1所示。

图1.1Web中间件的作用

(1)读取客户发送的显式数据。

最终用户一般在页面的HTML表单中输入这些数据。然而,数据还有可能来自applet或定制的HTTP客户程序。

(2)读取由浏览器发送的隐式请求数据。

图1.1中显示了一条从客户端到Web服务器的单箭头,但实际上从客户端传送到Web服务器的数据有两种,它们分别为用户在表单中输入的显式数据,以及后台的HTTP信息。两种数据都很重要。HTTP信息包括cookie、浏览器所能识别的媒体类型和压缩模式等。

(3)生成结果。

这个过程可能需要访问数据库、执行RMI或EJB调用、调用Web服务,或者直接计算得出对应的响应。实际的数据可能存储在关系型数据库中。该数据库可能不理解HTTP,或者不能返回HTML形式的结果,所有Web浏览器不能直接与数据库进行会话。即使它能够做到这一点,为了安全上的考虑,我们也不希望让它这么做。对应大多数其他应用程序,也存在类似的问题。因此,我们需要Web中间层从HTTP 流中提取输入数据,与应用程序会话,并将结果嵌入到文档中。

(4)向客户发送显式数据(即文档)。

这个文档可以用各种格式发送,包括文本(HTML或XML),二进制(GIF图),甚至可以式建立在其他底层格式之上的压缩格式,如gzip。但是,到目前为止,HTML 式最常用的格式,故而servelt和JSP的重要任务之一就式将结果包装到HTML中。

(5)发送隐式的HTTP响应数据。

图1.1中显示了一条从Web中间层到客户端的单箭头。但是,实际发送的数据有两种:文档本身,以及后台的HTTP信息。同样,两种数据对开发来说都式至关重要的。HTTP响应数据的发送过程涉及告知浏览器或其他客户程序所返回文档的类型(如HTML),设置cookie和缓存参数,以及其他类似的任务。

1.2 动态构建网页的原因

预先建立的文档可以满足客户的许多请求,服务器无需调用servlet就可以处理这些请求。然而,许多情况下静态的结果不能满足要求,我们需要针对每个请求生成一个页面。实时构建页面的理由有很多种:

1、网页基于客户发送的数据。

例如,搜索引擎生成的页面,以及在线商店的订单确认页面,都要针对特定的用户请求而产生。在没有读取到用户提交的数据之前,我们不知道应该显示什么。要记住,用户提交两种类型的数据:显示(即HTML表单的数据)和隐式(即HTTP请求的报头)。两种输入都可用来构建输出页面。基于cookie值针对具体用户构建页面的情况尤其普遍。

2、页面由频繁改变的数据导出。

如果页面需要根据每个具体的请求做出相应的改变,当然需要在请求发生时构建响应。但是,如果页面周期性地改变,我们可以用两种方式来处理它:周期性地在服务器上构建新的页面(和客户请求无关),或者仅仅在用户请求该页面时再构建。具体应该采用哪种方式要根据具体情况而定,但后一种方式常常更为方便,因为它只需简单地等待用户的请求。例如,天气预报或新闻网站可能会动态地构建页面,也有可能会返回之前构建的页面(如果它还是最新的话)。

3、页面中使用了来自公司数据库或其他数据库断数据源的信息。

如果数据存储在数据库中,那么,即使客户端使用动态Web内容,比如applet,

我们依旧需要执行服务器端处理。想象以下,如果一个搜索引擎网站完全使用applet,那么用户将会看到:“正在下载50TB的applet,请等待!”。显然,这样很愚蠢;这种情况下,我们需要与数据库进行会话。从客户端到Web层再到数据库(三层结构),要比从applet直接到数据库(二层结构)更灵活,也更安全,而性能上的损失很少甚至没有。毕竟数据库调用通常是对速度影响最大的步骤,因而,经过中间层可以执行高速缓存和连接共享。

理论上讲,servelt并非只用于处理HTTP请求的Web服务器或应用服务器,它同样可以用于其他类型的服务器。例如,servlet能够嵌入到FTP或邮件服务器中,扩展他们的功能。而且,用于会话启动协议服务器的servlet API最近已经被标准化(参见https://www.360docs.net/doc/0712572434.html,/en/jsr/detail?id=116)。但在实践中,servelt的这种用法尚不流行,在此,我们只论述HTTP Servlet。

1.3 Servlet相对于“传统”CGI的优点

和传统CGI及许多类CGI技术相比,Java servelt效率更高、更易用、更强大、更容易移植、更安全、也更廉价。

1、效率

应用传统的CGI,针对每个HTTP请求都用启动一个新的进程。如果CGI程序自身相对比较简短,那么启动进程的开销会占用大部分执行时间。而使用servelt,Java 虚拟机会一直运行,并用轻量级的Java线程处理每个请求,而非重量级的操作系统进程。类似地,应用传统的CGI技术,如果存在对同一CGI程序的N个请求,那么CGI程序的代码会载入内存N次。同样的情况,如果使用servlet则启动N个线程,单仅仅载入servlet类的单一副本。这种方式减少了服务器的内存需求,通过实例化更少的对象从而节省了时间。最后,当CGI程序结束对请求的处理之后,程序结束。这种方式难以缓存计算结果,保持数据库连接打开,或是执行依靠持续性数据的其他优化。然而,servelt会一直停留在内存中(即使请求处理完毕),因而可以直接存储客户请求之间的任意复杂数据。

2、便利

Servelt提供大量的基础构造,可以自动分析和解码HTML的表单数据,读取和设置HTTP报头,处理cookie,跟踪会话,以及其他次类高级功能。而在CGI中,

大部分工作都需要我们资金完成。另外,如果您已经了解了Java编程语言,为什么还有学校Perl呢?您已经承认应用Java技术编写的代码要比Visual Basic,VBScript 或C++编写的代码更可靠,且更易重用,为什么还有倒退回去选择那些语言来开发服务器端的程序呢?

3、强大

Servlet支持常规CGI难以实现或根本不能实现的几项功能。Servlet能够直接于Web服务器对话,而常规的CGI程序做不到这一点,至少在不使用服务器专有API 的情况下是这样。例如,与Web服务器的通信使得讲相对URL转换成具体的路径名变得更为容易。多个servelt还可以共享数据,从而易于实现数据库连接共享和类似的资源共享优化。Servelt还能维护请求之间的信息,使得诸如会话跟踪和计算结果缓存等技术变得更为简单。

4、可移植性

Servelt使用Java编程语言,并且遵循标准的API。所有主要的Web服务器。实际上都直接或通过插件支持servlet。因此。为Macromedia JRun编写的servlet,可以不经过任何修改地在Apache Tomcat,Microsoft Internet Information Server,IBM WebSphere 。iPlanet Enterprise Server。Oracle9i AS 或者StrNine WebStar上运行。他们是java2平台企业版的一部分,所以对servlet的支持越来越普遍。

5、廉价

对于开发用的网站、低容量或中等容量网站的部署,有大量免费或极为廉价的Web服务器可供选择。因此,通过使用servelt和jsp,我们可以从免费或廉价的服务器开始,在项目获得初步成功后,在移植到更高性能或高级管理工具的昂贵的服务器上。这与其他CGI方案形成鲜明的对比,这些CGI方案在初期都需要为购买专利软件包投入大量的资金。

价格和可移植性在某种程度上是相互关联的。例如,Marty记录了所有通过电子邮件向他发送问题的读者的所在国。印度接近列表的顶端,可能仅次于美国。Marty 曾在马尼拉讲授过jsp和servlet培训课程,那儿对servelt和jsp技术抱很大的兴趣。

那么,为什么印度和菲律宾都对这项技术着呢感兴趣呢?我们推测答案可能分两部分。首先,这两个国家都拥有大量训练有素的软件开发人员。其次,这两个国家的货币对美元的汇率都极为不利。因此,从美国公司那里购买专用Web服务器会消耗掉项目的大部分前期资金。

但是,使用servlet 和JSP,他们能够从免费的服务器开始:Apache Tomcat。项目取得成功之后,他们可以转移到性能更高、管理更容易,但需要付费的服务器。他们的servelt和jsp不需要重写编写。如果他们的项目变得更庞大,他们或许希望转移到分布式环境。没有问题:他们可以转而使用Macromedia JRun Professional,该服务器支持分布式应用。同样,他们的servelt和jsp没有任何部分需要重写。如果项目变得极为庞大,错综复杂,他们或许希望使用Enterprise JavaBeans来封装他们的商业逻辑。因此,他们可以切换到BEA WebLogic或Oracle9i AS。同样,不需要对servlet 和jsp做出更改。最后,如果他们的项目变得更庞大,他们或许将他从Linux转移到运行IBM WebSphere的IBM大型机上。他们还是不需要做出任何更改。

6、安全

传统CGI程序中主要的漏洞来源之一就是,CGI程序常常由通过的操作系统外壳来执行。因此,CGI程序必须仔细地过滤掉那些可能被外壳特殊处理的字符,如反引导和分号。实现这项预防措施的难度可能超出我们的想象,在广泛应用的CGI库中,不断发现由这类问题引发的弱点。

问题的第二个来源是,一些CGI程序用不自动检查数组和字符串边界的语言编写而成。例如,在C和C++中,可以分配一个100个元素的数组,然后向第999个“元素“写入数据——实际上是程序内存的随机部分,这完全合法。因而,如果程序员忘记执行这项检查,就会将系统暴露在蓄意或偶然的缓冲区溢出攻击之下。

Servelt不存在这些问题。即使servelt执行系统调用激活本地操作系统上的程序,它也不会用到外壳来完成这项任务。当然,数组边界的检查以及其他内存包含特性是java编程语言的核心部分。

7、主流

虽然存在许多很好的技术,但是,如果提供商助支持他们,或开发人员不知道如何使用这些技术,那么它们的优点又如何体现呢?servelt和jsp技术得到服务器提供商的广泛支持,包括Apache,Oracle,IBM,Sybase,BEA,Maromedia,Causho,Sun/iPlanet,New Atlanta,ATG,Fujitsu,Lutris,Silverstream,World Wide Web Consortinrm ,以及其他服务器。存在几种低廉的插件,通过应用这些插件,Microsoft IIS和Zeus也同样支持servlet和jsp技术,它们运行在Windows,Unix/Linus,MacOS,VMS,和IBM大型机操作系统之上。它们用在航空业、电子商务、在线银行、web搜索引擎、门户、大型金融网站、以及成百上千您日常光顾的其他网

站。

当然,仅仅是流行并不能证明技术的优越性。很多泛美的例子。但我们的立场是:服务器端Java本非一项新的、为经证实的技术。

英文版excel中英文对照表

英文版Excel 中英文对照表 激活(activate) 数组(array) 数组公式(array formula) 相关联的数据透视表(associated PivotTable report )自动套用格式(autoformat) 坐标轴(asix) 基础地址(base address) “合并计算”表(consolidation table) 比较条件(comparison criteria) 比较运算符(comparison operator) 常量(constant) 单元格引用(cell reference) 当前区域(current region) 分类轴(category asix) 分类字段(category field) 复制区域(copy area) 计算列(calculated column) 计算项(calculated item) 计算字段(数据库)(calculated field) 计算字段(数据透视表)(calculated field) 列标题(column heading) 列字段(column field) 条件(criteria) 条件窗格((criteria pane) 条件格式(conditional format) 图表工作表(chart sheet) 图表区(chart area) 修订记录(change history) 约束条件(constraints) 证书验证机构(certifying authority) 自定义计算(custom calculation) 垂直线(drop lines) 从属单元格(dependents) 明细数据(detail data) 默认工作表模板(default worksheet template) 默认工作簿模板(default workbook template) 默认启动工作簿(default startup workbook ) 目标区域(destination area) 数据标签 (data label) 数据标志(data marker) 数据表(data table) 数据表单(data form) 数据窗格(data pane)

(完整版)数据库重要术语(中英文)

单词汇总(数据库专业一点的词汇其实主要就是每章后面review items的内容,在这里简单列一 下,如果你实在没时间看书,至少这些单词要认识。): 1. 数据库系统:database system(DS),database ma nageme nt system(DBMS) 2. 数据库系统(DS),数据库管理系统(DBMS) 3. 关系和关系数据库table= relation,column = attribute 属性,domain, atomic domain, row= tuple , relati onal database, relati on schema, relati on in sta nee, database schema, database in sta nee; 4. 表=关系,列=属性属性,域,原子域,排=元组,关系型数据库,关系模式,关系实例,数 据库模式,数据库实例; 1. key 们:super key, can didate key, primary key, foreig n key, referencing relati on, referen ced relati on; 2. 超码,候选码,主码,外码,参照关系,被参照关系 5. 关系代数(relational algebra): selection, project, natural join, Cartesian product, set operations, union, in tersect, set differe nee ( except\m in us), Ren ame, assig nment, outer join, group ing, tuple relati on calculus 6. (关系代数):选择,项目,自然连接,笛卡尔积,集合运算,集,交集,集合差(除负), 重命名,分配,外连接,分组,元组关系演算 7. sql组成: DDL :数据库模式定义语言,关键字:create DML :数据操纵语言,关键字:Insert、delete、update DCL :数据库控制语言,关键字:grant、remove DQL :数据库查询语言,关键字:select 8. 3. SQL 语言:DDL,DML,DCL,QL,sql query structure, aggregate functions, nested subqueries, exists(as an operator), uni que(as an operator), scalar subquery, asserti on, in dex(i ndices), catalogs, authorization, all privileges, granting, revoking , grant option, trigger, stored procedure, stored fun cti on 4. SQL语言:DDL,DML,DCL,QL,SQL查询结构,聚合函数,嵌套子查询,存在(如运 营商),独特的(如运营商),标量子查询,断言指数(指数) ,目录,授权,所有权限,授 予,撤销,GRANT OPTION,触发器,存储过程,存储函数 8. 表结构相关:Integrity constraints, domain constraints, referential integrity constraints 9. 完整性约束,域名约束,参照完整性约束 5. 数据库设计(ER 模型):Entity-Relationship data model, ER diagram, composite attribute, sin gle-valued and multivalued attribute, derived attribute, binary relati on ship set, degree of relati on ship set, mapp ing card in ality, 1-1, 1-m, m-n relati on ship set (one to one, one to many, many to many), participati on, partial or total participati on, weak en tity sets, discrim in ator attributes, specialization and generalization 6. 实体关系数据模型,ER图,复合属性,单值和多值属性,派生属性,二元关系集,关系集, 映射基数的程度,1-1,1-米,MN关系集合(一对一,一对多,多对多) ,参与部分或全部参与,弱实体集,分辨符属性,特化和概化 10. 函数依赖理论:functional dependence, normalization, lossless join (or lossless) decomposition, First Normal Form (1NF), the third normal form (3NF), Boyce-codd normal form (BCNF), R satisfies F, F

数据库方面中英文对照

本科毕业设计(论文) 英文翻译 题目创业平台设计与实现 学生姓名 专业班级网 学号 院(系) 指导教师(职称) 完成时间 2008 年6 月6 日

英文原文 An Overview of Servlet and JSP Technology Gildas Avoine and Philippe Oechslin EPFL, Lausanne, Switzerland 1.1 A Servlet's Job Servlets are Java programs that run on Web or application servers, acting as a middle layer between requests coming from Web browsers or other HTTP clients and databases or applications on the HTTP server. Their job is to perform the following tasks, as illustrated in Figure 1-1. Figure 1-1 1.Read the explicit data sent by the client. The end user normally enters this data in an HTML form on a Web page. However, the data could also come from an applet or a custom HTTP client program. 2.Read the implicit HTTP request data sent by the browser. Figure 1-1 shows a single arrow going from the client to the Web server (the layer where servlets and JSP execute), but there are really two varieties of data: the explicit data that the end user enters in a form and the behind-the-scenes HTTP information. Both varieties are critical. The HTTP information includes cookies, information about media types and compression schemes the browser understands, and so on. 3.Generate the results. This process may require talking to a database, executing an RMI or EJB call, invoking a Web service, or computing the response directly. Your real data may be in a relational database. Fine. But your database probably doesn't speak HTTP or return results in HTML, so the Web browser can't talk directly to the database. Even if it could, for security reasons, you probably would not want it to. The same argument applies to most other applications. You need the Web middle layer to extract the incoming data from the HTTP stream, talk to

数据库(中英文翻译)

原文: Planning the Database It is important to plan how the logical storage structure of the database will affect system performance and various database management operations. For example, before creating any tablespaces for your database, you should know how many data files will make up the tablespace,what type of information will be stored in each tablespace, and on which disk drives the datafiles will be physically stored. When planning the overall logical storage of the database structure, take into account the effects that this structure will have when the database is actually created and running. You may have database objects that have special storage requirements due to type or size. In distributed database environments, this planning stage is extremely important. The physical location of frequently accessed data dramatically affects application performance. During the planning stage, develop a backup strategy for the database. You can alter the logical storage structure or design of the database to improve backup efficiency. Backup strategies are introduced in a later lesson. These are the types of questions and considerations, which you will encounter as a DBA, and this course (in its entirety) is designed to help you answer them. Databases: Examples Different types of databases have their own specific instance and storage requirements. Your Oracle database software includes templates for the creation of these different types of databases. Characteristics of these examples are the following: ? Data Warehouse: Store data for long periods and retrieve them in read operations. ? Transaction Processing: Accommodate many, but usually small, transactions. ? General Purpose: Work with transactions and store them for a medium length of time.

旅游常用英语中英文对照并附有发音

转机时在机场里可能要用的词汇: Flight Number 或者Flight No. 读作:服来特拿木波儿翻译为:航班号 check-in counter读作:切克银考恩特儿 翻译为:登记上飞机的窗口 Gate 读作:给特 翻译为:登机口 Departure lounge读作:低趴欠儿劳嗯几 翻译为:候机室 Boarding Pass读作:保定怕四 翻译为:登机牌 Baggage claim 读作:白给几克雷木 翻译为:行李认领 Exit 读作:爱哥细特 翻译为:出口 Taxi pick-up point 读作:太可斯诶皮克阿普泡恩特翻译为:出租车乘车点 Air Ticket 读作:爱鹅梯肯特 翻译为:飞机票 Restroom 读作:乳爱斯特入木 翻译为:洗手间 Toilet 读作:涛爱里特翻译为:厕所

Men’s 读作:门思 翻译为:男洗手间 Women读作:喂米恩 翻译为:女洗手间 North 读作:闹思 翻译为:北 South 读作:臊思 翻译为:南 East 读作:亿思特 翻译为:东 West 读作:外思特 翻译为:西 Queue here 读作:克油嘿儿 翻译为:在此排队 Assistance 读作:饿赛斯吞斯 翻译为:问讯处 Connecting flights counter 读作:克耐克挺服来次考恩特儿翻译为:转机服务台 Luggage pick up 读作:拉给几皮克阿普 翻译为:取行李 Telephone 读作:台里服恩 翻译为:电话

Elevator 读作:爱里喂特儿或者lift 读作:里服特翻译为:电梯 Airport 读作:爱鹅泡特 翻译为:机场 Date 读作:嘚(dei)特 翻译为:日期 Time 读作:太木 翻译为:时间 Departure 读作:低怕企鹅 翻译为:出发 Take off 读作:忒克熬付 翻译为:起飞 Delayed 读作:低雷得 翻译为:延误 Restaurant 读作:乳爱斯特乳昂特 翻译为:餐厅 Stairs and lifts to departures 读作:思带额思安得里付次图低扒企鹅 翻译为:由此乘电梯前往登机 BUS 读作:把思 翻译为:公共汽车 Departure time 读作:低扒企鹅太木

(完整版)数据库重要术语(中英文)

单词汇总(数据库专业一点的词汇其实主要就是每章后面review items的内容,在这里简单列一下,如果你实在没时间看书,至少这些单词要认识。): 1.数据库系统:database system(DS),database management system(DBMS) 2.数据库系统(DS),数据库管理系统(DBMS) 3.关系和关系数据库table= relation,column = attribute属性,domain, atomic domain, row= tuple, relational database, relation schema, relation instance, database schema, database instance; 4.表=关系,列=属性属性,域,原子域,排=元组,关系型数据库,关系模式,关系实例,数 据库模式,数据库实例; 1.key们: super key, candidate key, primary key, foreign key, referencing relation, referenced relation; 2.超码,候选码,主码,外码,参照关系,被参照关系 5.关系代数(relational algebra):selection, project, natural join, Cartesian product, set operations, union, intersect, set difference ( except\minus), Rename, assignment, outer join, grouping, tuple relation calculus 6.(关系代数):选择,项目,自然连接,笛卡尔积,集合运算,集,交集,集合差(除\负), 重命名,分配,外连接,分组,元组关系演算 7. sql组成: DDL:数据库模式定义语言,关键字:create DML:数据操纵语言,关键字:Insert、delete、update DCL:数据库控制语言,关键字:grant、remove DQL:数据库查询语言,关键字:select 8. 3.SQL语言:DDL,DML,DCL,QL,sql query structure, aggregate functions, nested subqueries, exists(as an operator), unique(as an operator), scalar subquery, assertion, index(indices), catalogs, authorization, all privileges, granting, revoking, grant option, trigger, stored procedure, stored function 4.SQL语言:DDL,DML,DCL,QL,SQL查询结构,聚合函数,嵌套子查询,存在(如运 营商),独特的(如运营商),标量子查询,断言指数(指数),目录,授权,所有权限,授予,撤销,GRANT OPTION,触发器,存储过程,存储函数 9.表结构相关:Integrity constraints, domain constraints, referential integrity constraints 10.完整性约束,域名约束,参照完整性约束 5.数据库设计(ER 模型):Entity-Relationship data model, ER diagram, composite attribute, single-valued and multivalued attribute, derived attribute,binary relationship set, degree of relationship set, mapping cardinality,1-1, 1-m, m-n relationship set (one to one, one to many, many to many), participation, partial or total participation, weak entity sets, discriminator attributes, specialization and generalization 6.实体关系数据模型,ER图,复合属性,单值和多值属性,派生属性,二元关系集,关系集, 映射基数的程度,1-1,1-米,MN关系集合(一对一,一对多,多对多),参与部分或全部参与,弱实体集,分辨符属性,特化和概化 11.函数依赖理论:functional dependence, normalization, lossless join (or lossless) decomposition, First Normal Form (1NF), the third normal form (3NF), Boyce-codd normal form (BCNF), R satisfies F, F holds on R, Dependency preservation保持依赖, Trivial, closure of a set of functional dependencies函数依赖集的闭包, closure of a set of attributes属性集闭包,

旅游常用英语中英文对照并附有发音优选稿

旅游常用英语中英文对照并附有发音 文件管理序列号:[K8UY-K9IO69-O6M243-OL889-F88688]

转机时在机场里可能要用的词汇:Flight Number 或者Flight No. 读作:服来特拿木波儿 翻译为:航班号 check-in counter读作:切克银考恩特儿 翻译为:登记上飞机的窗口 Gate 读作:给特 翻译为:登机口 Departure lounge读作:低趴欠儿劳嗯几 翻译为:候机室 Boarding Pass读作:保定怕四 翻译为:登机牌 Baggage claim 读作:白给几克雷木 翻译为:行李认领 Exit 读作:爱哥细特 翻译为:出口 Taxi pick-up point 读作:太可斯诶皮克阿普泡恩特 翻译为:出租车乘车点 Air Ticket 读作:爱鹅梯肯特 翻译为:飞机票 Restroom 读作:乳爱斯特入木 翻译为:洗手间 Toilet 读作:涛爱里特翻译为:厕所

Men’s 读作:门思 翻译为:男洗手间 Women读作:喂米恩 翻译为:女洗手间 North 读作:闹思 翻译为:北 South 读作:臊思 翻译为:南 East 读作:亿思特 翻译为:东 West 读作:外思特 翻译为:西 Queue here 读作:克油嘿儿 翻译为:在此排队 Assistance 读作:饿赛斯吞斯 翻译为:问讯处 Connecting flights counter 读作:克耐克挺服来次考恩特儿翻译为:转机服务台 Luggage pick up 读作:拉给几皮克阿普 翻译为:取行李 Telephone 读作:台里服恩 翻译为:电话

欧洲国家中英文对照带音标

欧洲国家中英文对照带 音标 IMB standardization office【IMB 5AB- IMBK 08- IMB 2C】

国家名称首都挪威 Kingdom of Norway 冰岛 Republic of Iceland 瑞典 Kingdom of Sweden ['swi:d?n] 芬兰 Republic of Finland 爱沙尼亚 Republic of Estonia [es'tuni] 拉脱维亚 Republic of Latvia ['ltvi] 立陶宛 Republic of Lithuania [,liθju:'eini] 白俄罗斯 Republic of Belarus ['belrs] 俄罗斯 Russian Federation ['fed?rein] 乌克兰 Ukraine [ju:'krein; -'krain] 摩尔多瓦 Republic of Moldova [ml'd:v] 波兰 Republic of Poland ['pulnd] 捷克 Czech [tek] Republic 斯洛伐克 Slovak ['sluvk; slu'vk; -'vɑ:k] Republic 匈牙利 Republic of Hungary ['hɡri] 德国 Federal ['fedrl] Republic of Germany 英国 United kingdom of Great Britain and Northern Ireland

爱尔兰 Ireland 丹麦 Kingdom of Denmark ['denma:k] 荷兰 Kingdom of the Netherlands ['neelndz] 摩纳哥 Principality [,prinsi'p?liti] of Monaco [ mnku] 法国 French Republic 比利时 Kingdom of Belgium ['beldm] 卢森堡 Grand Duchy ['dti] of Luxembourg ['lksmb:ɡ, 'lju:ks'bu:r]奥地利 Republic of Austria ['stri] 瑞士 Swiss [swis] Confederation [kn,fed'rein] 列支敦士登 Principality [,prinsi'p?liti] of Liechtenstein ['li:t?ntain]西班牙 Kingdom of Spain 安道尔 Principality of Andorra [ n'd:r] 葡萄牙 Portuguese [,p:tju'ɡi:z, -'ɡi:s] Republic 意大利 Italian Republic 马耳他 Republic of Malta ['m:lt] 圣马力诺 Republic of San Marino 梵蒂冈 Vatican ['vtikn] City 斯洛文尼亚 Republic of Slovenia [slu'vi:ni] 克罗地亚 Republic of Croatia [kr?u'eij]

SQL命令大全-中英文对照

[code=SQL][/code] --语句功能 --数据操作 SELECT --从数据库表中检索数据行和列 INSERT --向数据库表添加新数据行 DELETE --从数据库表中删除数据行 UPDATE --更新数据库表中的数据 --数据定义 CREATE TABLE --创建一个数据库表 DROP TABLE --从数据库中删除表 ALTER TABLE --修改数据库表结构 CREATE VIEW --创建一个视图 DROP VIEW --从数据库中删除视图 CREATE INDEX --为数据库表创建一个索引DROP INDEX --从数据库中删除索引 CREATE PROCEDURE --创建一个存储过程DROP PROCEDURE --从数据库中删除存储过程CREATE TRIGGER --创建一个触发器 DROP TRIGGER --从数据库中删除触发器CREATE SCHEMA --向数据库添加一个新模式DROP SCHEMA --从数据库中删除一个模式CREATE DOMAIN --创建一个数据值域 ALTER DOMAIN --改变域定义 DROP DOMAIN --从数据库中删除一个域 --数据控制 GRANT --授予用户访问权限 DENY --拒绝用户访问 REVOKE --解除用户访问权限 --事务控制 COMMIT --结束当前事务 ROLLBACK --中止当前事务 SET TRANSACTION --定义当前事务数据访问特征--程序化SQL DECLARE --为查询设定游标 EXPLAN --为查询描述数据访问计划 OPEN --检索查询结果打开一个游标 FETCH --检索一行查询结果 CLOSE --关闭游标 PREPARE --为动态执行准备SQL 语句EXECUTE --动态地执行SQL 语句

旅游胜地词汇(中英文对照)

旅游胜地词汇 Asia 亚洲 The Himalayas 喜马拉雅山 Great Wall, China 中国长城 Forbidden City, Beijing, China 北京故宫 Mount Fuji, Japan 日本富士山 Taj Mahal, India 印度泰姬陵 Angkor Wat, Cambodia 柬埔寨吴哥窟 Bali, Indonesia 印度尼西亚巴厘岛 Borobudur, Indonesia 印度尼西亚波罗浮屠 Sentosa, Singapore 新加坡圣淘沙 Crocodile Farm, Thailand 泰国北榄鳄鱼湖 Pattaya Beach, Thailand 泰国芭堤雅海滩 Babylon, Iraq 伊拉克巴比伦遗迹 Mosque of St, Sophia in Istanbul (Constantinople), Turkey 土耳其圣索非亚教堂 Africa 非洲 Suez Canal, Egypt 印度苏伊士运河 Aswan High Dam, Egypt 印度阿斯旺水坝 Nairobi National Park, Kenya 肯尼亚内罗毕国家公园 Cape of Good Hope, South Africa 南非好望角 Sahara Desert 撒哈拉大沙漠 Pyramids, Egypt 埃及金字塔 The Nile, Egypt 埃及尼罗河 Oceania 大洋洲 Great Barrier Reef 大堡礁 Sydney Opera House, Australia 悉尼歌剧院 Ayers Rock 艾尔斯巨石 Mount Cook 库克山 Easter Island 复活节岛 Europe 欧洲 Notre Dame de Paris, France 法国巴黎圣母院 Effiel Tower, France 法国艾菲尔铁塔 Arch of Triumph, France 法国凯旋门 Elysee Palace, France 法国爱丽舍宫 Louvre, France 法国卢浮宫

国家名中英文对照表.doc

1 世界各国家名中英对照一览:目前共有232个国家和地区,其中联合国会员国共有192个。各大洲的国家分布是不均衡的,非洲的国家和地区最多,达57个,其次是美洲(52个),以下依次为亚洲(48个)、欧洲(46个)、大洋洲(29个)。 国家中英文对照表: A 阿富汗 Afghanstan 阿尔巴尼亚 Albana 阿尔及利亚 Algera 安道尔 Andorra 安哥拉 Angola 安提瓜和巴布达 Antgua and Barbuda 阿根廷 Argentna 亚美尼亚 Armena 澳大利亚 Australa 奥地利 Austra 阿塞摆疆 Azerbajan B 巴哈马Bahawmas 巴林 Bahran 孟加拉 Bangladesh 巴巴多斯 Barbados 白俄罗斯 Belarus 比利时 Belgum / Xtra page 伯利兹 Belze 贝宁 Benn 不丹 Bhutan 玻利维亚 Bolva 波斯尼亚和黑塞哥维那 Bosna and Herzegovna 博茨瓦纳 Botsana 巴西 Brazl 文莱 Brune 保加利亚 Bulgara 布基纳法索 Burna Faso 布隆迪 Burund

C 柬埔寨 Camboda 喀麦隆 Cameroon 加拿大 Canada 佛得角 Cape Verde 中非 Central Afrcan Republc 乍得 Chad 智利 Chle 中国 Chna 哥伦比亚 Colomba 科摩罗 Comoros 刚果(金) Congo (Congo-nshasa) 刚果 Congo 哥斯达黎加 Costa Rca 科特迪瓦 Cote d'vore 克罗地亚 Croata 古巴 Cuba 塞浦路斯 Cyprus 捷克 Czech / 前捷克斯洛伐克 Former Czechoslovaa D 丹麦 Denwmar 吉布提 Djbout 多米尼克 Domnca 多米尼加 Domncan Republc E 东帝汶 East Tmor 厄瓜多尔 Ecuador 埃及 Egypt 赤道几内亚 Equatoral Gunea 厄立特里亚 Ertrea 爱沙尼亚 Estona 埃塞俄比亚 Ethopa 欧洲联盟 European Unon (EU) F 斐济 Fj 芬兰 Fnland 法国 France G 加蓬 Gabon 冈比亚 Gamba

英文数据库列表

英文数据库列表 英文数据库 A ACM Digital Library收录了美国计算机协会(Association for Computing Machinery)的各种电子期刊、会议录、快报等文献AGRICOLA 农业参考文献数据库,涉及美国农业和生命科学等领域,提供了1970年至今的重要农业信息。 American Chemical Socitey 美国化学学会全文期刊数据库 American Mathematics Society 美国数学学会数据库,世界上最权威的数学学术团体,数据库内容涉及数学及数学在统计学、工程学、物理学、经济学、生物学、运筹学、计算机科学中的应用等 American Physical Society (APS) 美国物理学会数据库,为用户提供期刊的在线阅读。 Annual Reviews 为全世界的科学团体服务,提供由著名科学家撰写的评论。Annual Reviews分生物医学、物理学和社会科学三个主题,共出版29种期刊。 ASCE The American Society of Civil Engineers美国土木工程师协会数据库 ASME Technical Journal 美国机械工程师学会数据库。美国机械工程师学会,主持着世界上最大的技术出版之一,制定各种工业和制造业

行业标准。由于工程领域各学科间交叉性不断增长,ASME出版物也相应提供了跨学科前沿科技的资讯。 B Beilstein/Gmelin crossfire 以电子方式提供包含可供检索的化学结构和化学反应、相关的化学和物理性质,以及详细的药理学和生态学数据在内的最全面的信息资源。 BIOSIS Previews 世界上最大的关于生命科学的文摘索引数据库。Blackwell 英国Blackwell(英文文献期刊) (https://www.360docs.net/doc/0712572434.html,) Blackwell出版公司是世界上最大的期刊出版商之一(总部设在英国伦敦的牛津),以出版国际性期刊为主,包含很多非英美地区出版的英文期刊。它所出版的学术期刊在科学技术、医学、社会科学以及人文科学等学科领域享有盛誉。 近年来,Blackwell出版的期刊不断发展。目前,Blackwell出版期刊总数已超过700种,其中理科类期刊占54%左右,其余为人文社会科学类。涉及学科包括:农业、动物学、医学、工程、数学统计、计算机技术、商业经济、生命科学、物理学、人文科学、艺术、社会及行为科学等。 https://www.360docs.net/doc/0712572434.html,V5ZW11Y2geE5 Blackwell出版期刊的学术质量很高,很多是各学科领域内的核心刊物,据最新统计,其中被SCI收录的核心期刊有239种,被SSCI 收录的有118种。

9个常用的国外英文论文文献数据库

9个常用的国外英文论文文献数据库9个论文文献数据库,科研搬砖,阅读涨姿势,论文写作小帮手!先说说什么是数据库:学术科研中说的「数据库」和「文献数据库」,往往是一种网站的形式,这个网站的贮存了大量文献数据(比如论文)可以简单的理解为一个网络图书馆。 数据库中的论文往往都是耗费了大量的时间和精力整理出 来的,还有很多是需要购买版权才可以放在互联网上的,再加上维护这个网站本身就耗费颇多,因此这些数据库通常不是完全免费的,你可以在上面免费查找文献,浏览摘要等简介内容,但是如果你要下载文献,就要付钱。 大学因为科研和教学需要,常年要下载大量的论文材料,所以就会和数据库的经营者签订很多协议,例如包年,就是给一定量的钱,然后就可以无限制下载论文。也有按照下载的数量进行计费。那英语作为世界第一学术语言,有哪些数据库是值得大家分享的呢?1、Wiley InterScience(英文文献期刊)Wiley InterScience是John Wiely & Sons公司创建的动态在线内容服务,1997年开始在网上开通。通过InterScience,Wiley 学术期刊集成全文数据库(Academic Search Premier,简称ASP):包括有关生物科学、工商经济、资讯科技、通讯传播、工程、教育、艺术、文学、医药学等领域的七千多种期刊,

其中近四千种全文刊。 学术研究图书馆(Academic Research Library,简称ARL)综合参考及人文社会科学期刊论文数据库,涉及社会科学、人文科学、商业与经济、教育、历史、传播学、法律、军事、文化、科学、医学、艺术、心理学、宗教与神学、社会学等学科,收录2,300多种期刊和报纸,其中全文刊占三分之二,有图像。可检索1971年来的文摘和1986年来的全文。商业信息数据库(ABI/INFORM)ABI即为Abstracts of Business Information的缩写,世界着名商业及经济管理期刊论文数据库,收录有关财会、银行、商业、计算机、经济、能源、工程、环境、金融、国际贸易、保险、法律、管理、市场、税收、电信等主题的1,500多种商业期刊,涉及这些行业的市场、企业文化、企业案例分析、公司新闻和分析、国际贸易与投资、经济状况和预测等方面,其中全文刊超过50%,其余为文摘,有图像。 医学电子期刊全文数据库(ProQuest Medical Library)该数据库收录有220种全文期刊,文献全文以PDF格式或文本加图像格式存储;收录范围包括所有保健专业的期刊,有护理学、儿科学、神经学、药理学、心脏病学、物理治疗及其它方面。 6. BlackwellBlackwell出版公司是世界上最大的期刊出版商之一(总部设在英国伦敦的牛津),以出版国际性期刊为主,

中国公民国内旅游文明行为公约中英文对照

中国公民国内旅游文明行为公约 营造文明、和谐的旅游环境。关系到每位游客的切身益。做文明游客是我们大家的义务,请遵守以下公约: 1.维护环境卫生。不随地吐痰和口香糖,不乱扔废弃物,不在禁烟场所吸烟。 2.遵守公共秩序。不喧哗吵闹,排队遵守秩序,不并行挡道,不在公众场所高声交谈. 3.保护生态环境。不踩踏绿地,不摘折花木和果实,不追捉、投打、乱喂动物。 4.保护文物古迹。不在文物古迹上涂刻,不攀爬触摸文物,拍照摄像遵守规定。 5.爱惜公共设施。不污损客房用品,不损坏公用设施,不贪占小便宜,节约用水用电,用餐不浪费。 6.尊重别人权利。不强行和外宾合影,不对着别人打喷啑,不长期占用公共设施,尊重服务人员的劳动,尊重各民族宗教习俗。 7.讲究以礼待人。衣着整洁得体,不在公共场所袒胸赤膊;礼让老幼病残,礼让女士;不讲粗话。 8.提倡健康娱乐。抵制封建迷信活动,拒绝黄、赌、毒。 ConventionofChineseCitizen’sCivilizedBehaviorinDomesticTraveling

Buildingcivilizedandharmonytouristenvironmenthasadirectbearingontheeveryto urist’sfundamentalinterests.Itisourobligationtomakecivilizationvisitors,pleas eobservethefollowingconventions: 1.Pleasemaintaintheenvironmentalsanitation.Nospitting,nogumandnolitteri ng.Don'tsmokeexceptindesignatedareas. 2.Protecttheecologicalenvironment.Donottrampleinthegrassland,picktheflo wersandfruits,anddonotchase,catch,beatorfeedtheanimals. 3.herelics.Pleasetakephotosaccordingtotheregulations. 4.Cherishthepublicaccommodations.Donotdefileordamagetheappliancesintheh otel.Donotgainingpettyadvantages.Donotwastethefoodandpleasesavethewat erandelectric. 5.publicfacilitiesforalingtime.Respectserviceperson’sworkandreligioncu stomsofeverynations. 6.Becourtesy.Dresscleananddecentanddonotbarebreastinpublic.Treattheolda ndthedisabledandladieswithcomity.Donotslang.

相关文档
最新文档