串语句用英语怎么说,串语句的英文翻译


词语导航

基本信息

词语:串语句

繁体:串語句

拼音:chuàn yǔ jù

英语翻译

【计】 string statement

分词翻译

串的英语翻译:

bunch; cluster; get things mixed; skewer; strand; string together

语句的英语翻译:

sentence
【计】 COMPLEX statement

翻译例句

1. 将多个sql语句在一起并在一个批处理中执行它们的功能。

The ability to string multiple SQL statements together and to execute them in a batch.

2. 这将把函数内包含的或传递到函数中的字符转换为正确的sql语句

This converts the character string contained within or passed into the function to a correct SQL statement.

3. 在建立数据库连接之后,为insert语句创建一个简单的字符

After establishing a database connection, create a simple string for your INSERT statement.

4. 因此,上面两个赋值语句创建相同的字符值列表。

The two assignment statements above, therefore, both create the same list of string values.

5. 开发应用程序时将语句声明为字符变量使得将应用程序转换成生产应用程序更加容易。

Declaring the statement as a string variable when you develop your application makes it easier to convert to a production application.

6. 然后它用它的双亲请求,根据连接的描述找到正确的数据库统计值,并根据sql键字符找到语句统计值。

It then USES its parent request to find the right database statistics based on the connection"s description, and to find statement statistics based on the SQL key string.

7. 要从过程生成用户错误,可以使用SQLERROR变量检索一个实际的错误字符,该错误字符使语句无法作用于调用应用程序,如清单16所示。

To generate user errors from procedures, you can use the SQLERROR variable to return an actual error string that caused the statement to fail to the calling application, as shown in Listing 16.

8. 该变量包含最后一个失败的sql语句的错误字符

This variable contains the error string from the last failed SQL statement.

9. 较理想的做法是,字符有一个如error或与之相似的子(见蓝色粗体的语句),这个子允许测试者很快地在输出文件中查找到错误。

Ideally, the string of characters should have a substring such as error or something similar (see the statement in bold blue), which will allow the tester to quickly find the error in the output file.

10. 最后一个游标的SQLERROR被返回,而最后一个失败的sql语句的错误字符将被存储到变量SQLERRSTR中。

SQLERROR of the last cursor is returned, and the error string of the latest failed SQL statement is stored into variable SQLERRSTR.

11. 超过远程长度限制的字符不能嵌入到远程语句中。

Strings exceeding the remote length limit cannot be embedded in remote statements.

12. 如果仔细看看上面这个语句,会看出所有值都是直接字符(由单引号包围)或变量名,它们都由逗号分隔。

If you look closely at the statement above, you will see that all of the individual values are either literal strings (surrounded by single quotes) or variable names, all separated by commas.

13. 此函数将一个字符值作为输入,该字符是一个有效的SQL全选择语句

This function takes a string value as input which is a valid SQL full select statement.

14. 这个键(或多个键)用于替代这个参数标记(或多个标记),参数标记被定义为在RPG handle_open子过程中创建的sql语句字符的一部分。

The key (or keys) are used to replace the parameter marker (or markers) which were defined as part of the SQL statement string created in the RPG HANDLE_OPEN sub-procedure.

15. 在SQL编程中,可以使用SQL命令PREPARE将含有任何(数学)公式的字符转换成可执行的sql语句

In SQL programming, a string containing any (mathematical) formula can be converted into an executable SQL statement with the SQL command PREPARE.

16. 语句字符中的?(问号)是一个参数标识,代表用来返回结果的变量。

The? (question mark) literal in the statement string is a parameter marker that represents the variable in which the result is returned.

17. 这种方法就是构建一个字符,包含了完整的所要显示的html语句wWW.wenTIYI.COM

The approach is to basically build a string containing the entire HTML to be displayed.

18. 在DB 2中,最后一个失败的sql语句的错误字符可以通过使用GETDIAGNOSTICS语句检索,参见表4。

On DB2, the error string of the latest failed SQL statement can be retrieved using the GET DIAGNOSTICS statement, as shown in Table 4.

19. 第8行中的打印语句也是前面讨论过的字符格式操作。

The print statement in Line 8 is another of those string formatting operations that was discussed earlier.

20. 对于通过对象化来编程式地访问和操纵关系数据,最流行的方式是通过一些API 和包装器,这些 API 和包装器提供了一个或多个编写为文本字符的SQL语句

The most popular way to objectize to programmatically access and manipulate relational data has been through special APIs and wrappers that provide one or more SQL statements written as text strings.

21. 注册好函数之后,就可以在SQL语句中使用它们,并得到由它产生的SVG字符

Once the functions are registered, you can use them in your SQL statements and have a look at the SVG strings produced by it.

22. 在创建预备语句(包括可调用语句)时,在创建时捕捉到 SQL字符参数。

When creating a prepared statement (including a callable statement), the SQL string argument is captured at creation time.

23. 我还想进一步根据SQL字符跟踪预备语句(在执行之前就已经准备就绪)。

I would further like to track performance of prepared statements by the SQL strings that was prepared prior to executing to them.

24. 不过在这条语句当中,+的一些参数不是加法所定义的整数,而是字符

In this statement, however, at least some of the values to which + is applied are string data rather than the numeric data on which addition is defined.

25. query字符包含一个简单的sql语句来选择指定客户的所有联系信息。

The query string contains a simple SQL statement to select all contact information for a specific client.

26. 因为以下两个原因,我们将sql语句定义成了一个字符变量。

We define the SQL statement as a string variable for two reasons.

27. 第一个define语句在名称空间 test 中创建一个字符常量ASTRING。

Well, the first define statement creates a string constant called ASTRING in the test namespace.

28. Hibernate生成sql语句字符并使用JDBC准备和执行操作在数据库中执行它们。

Hibernate generates the SQL statement strings and executes them against the database using the JDBC prepare and execute operations.

29. 要忽略包含字符"xnpd" 的所有记录,可以使用以下awk语句

To ignore all records that contain the string "xnpd", one could use the following awk statement

30. 要忽略包含字符"xnpd" 的所有记录,可以使用以下awk语句

To ignore all records that contain the string "xnpd", one could use the following awk statement

版权声明:问题易所有作品(图文、音视频)均来源网络,版权归原创作者所有,与本站立场无关,如不慎侵犯了你的权益,请联系我们告知,我们将做删除处理!