译注:书接上篇,了解过创建表以及load data后,假如发现需要更改表字段类型或者添加表字段,怎么办?这篇文章将进一步了解具体细节。 This chapter explains how to alter the attributes of a table such as changing its ...
分类:
其他好文 时间:
2017-01-20 19:35:24
阅读次数:
398
写在前面:本来想着把表的创建,删除,以及修改一篇搞定的。结果看了一下,东西还是蛮多的,而且也是很多经常使用的操作。所以,就暂且分开处理吧。 This chapter explains how to create a table and how to insert data into it. The ...
分类:
其他好文 时间:
2017-01-20 17:43:49
阅读次数:
289
I had enough trouble not falling down when the ground was dry; it might be safer for me to go back to bed now. 当地上是干的时候,我不摔跤都有足够的麻烦了;对于我来说现在回到床上可能更安全一 ...
分类:
其他好文 时间:
2017-01-20 15:58:47
阅读次数:
253
1、logical address = segment identifier (16bits) + offset (32bits) segment selector其实就是GDT或者LDT的索引,其中的TI字段用来确定是选择GDT还是IDT 2、segment identifier is calle ...
分类:
系统相关 时间:
2017-01-19 14:05:10
阅读次数:
195
IText创建PDF、添加水印、对PDF文档属性的设置,以及PDFBox对PDF文档是否加密的判断。 ...
分类:
其他好文 时间:
2017-01-19 12:52:53
阅读次数:
1557
自增、自减运算符 自增运算符++,将数值增加1;自减运算符--,将数值减少1 运算符 代码片段 区别 ++ x = 2 * m ++; 先运行 x = 2 * m; 再运行 m = m + 1; ++ x = 2 * ++m 先运行 m = m + 1; 再运行 x = 2 * m; -- y = ...
分类:
编程语言 时间:
2017-01-15 12:48:56
阅读次数:
219
simple and common parallel algorithm building block is the all-prefix-sums operation. In this chapter, we define and illustrate the operation, and we ...
分类:
其他好文 时间:
2017-01-11 14:05:33
阅读次数:
1016
27使用调度程序 Oracle Database provides database job capabilities through Oracle Scheduler (the Scheduler). This chapter explains how to use the various Sch ...
分类:
数据库 时间:
2017-01-08 10:47:41
阅读次数:
276
corejava Chapter 1:An Introduction to java /java简介 1.1 java as a programming platform /java 程序设计平台 1.2 The java "White paper" buzzword /"java" 白皮书中的口号 ...
分类:
编程语言 时间:
2017-01-05 18:23:34
阅读次数:
1167
又见面啦!!!经过上一章的学习,我们大概对Hibernate框架有所了解。接下来进入我们的第二阶段——实战! 准备数据库 这里使用MySQL作为示范。 如下图: 数据库的操作暂时就到这里。 Ps:没有数据库基础的朋友们,请先学习数据库基础再来学习哦! 准备Hibernate的jar包 至于你下载什么 ...
分类:
Web程序 时间:
2016-12-28 01:24:24
阅读次数:
334