A type of read operation used for UPDATE statements, that is a combination of read committed and consistent read. When an UPDATE statement examines a ...
分类:
数据库 时间:
2018-03-12 21:20:07
阅读次数:
283
在systemstap中自定义函数 Embedded C can be the body of a script function. Instead enclosing the function body statements in { and}, use %{ and %}. Any enclos ...
分类:
其他好文 时间:
2018-03-11 02:47:47
阅读次数:
428
参考文档: https://docs.microsoft.com/zh-cn/sql/t-sql/statements/set-transaction-isolation-level-transact-sql https://msdn.microsoft.com/zh-cn/library/jj85 ...
分类:
数据库 时间:
2018-02-24 11:47:20
阅读次数:
244
day16 JavaScript中的函数 函数的作用 通过使用function声明,后跟一组参数以及函数体, 语法: functionfunctionName([arg0, arg1, argn]){ statements } 说明: 1.funtionName是要定义的函数名,属于标识符。 2.[ ...
分类:
编程语言 时间:
2018-02-22 21:36:17
阅读次数:
153
1. DDL(Data Definition Language) 数据库定义语言statements are used to define the database structure or schema。用于定义数据库的三级结构,包括外模式、概念模式、内模式及其相互之间的映像。定义数据的完整性、安 ...
分类:
数据库 时间:
2018-02-14 21:56:16
阅读次数:
208
题目链接: Python Indentation 题意: Python是没有大括号来标明语句块的,而是用严格的缩进来体现。现在有一种简化版的Python,只有两种语句: (1)'s'语句:Simple statements. 相当于一般语句。(2)'f'语句:For statements. 相当于f ...
分类:
编程语言 时间:
2018-01-30 23:11:34
阅读次数:
475
1. Programs are composed of modules.2. Modules contain statements.3. Statements contain expressions.4. Expressions create and process objects. Handlin ...
分类:
编程语言 时间:
2018-01-22 21:18:37
阅读次数:
202
首先是定义 Python用异常对象(exception object)表示异常情况,遇到错误后,会引发异常。如果异常对象并未被处理或捕捉,程序就会用所谓的回溯(Traceback,一种错误信息)终止执行。 然后是常用的语句 try: <statements> #运行try语句块,并试图捕获异常 ex ...
分类:
编程语言 时间:
2018-01-17 18:08:52
阅读次数:
179
1.官方Feature 211: Elide Deprecation Warnings on Import Statements 214: Remove GC Combinations Deprecated in JDK 8 277: Enhanced Deprecation 289: Deprec ...
分类:
编程语言 时间:
2018-01-13 11:22:49
阅读次数:
211
循环是一个结构,导致程序要重复一定的次数。条件循环也是如此,当条件变为假,循环结束。for循环可以用在序列里,可以循环遍历,其语法如下:foriterating_varinsequence:statements(s)我们讲过的序列有字符串,元组和列表,比如我们定义一个字符串a,然后遍历a的各个字符并打印出来,信息如下:In[1]:a=‘ABC‘In[2]:aOut[2]:‘ABC‘In[3]:fo
分类:
编程语言 时间:
2018-01-11 11:33:44
阅读次数:
164