http://zhanghong.iteye.com/blog/8659371. 首先创建数据库表SQL> create table customer(2 id number(8) not null primary key,3 name varchar2(20),4 age number(3),5 ...
分类:
数据库 时间:
2014-08-10 18:01:30
阅读次数:
251
网上找了好久没有正确的,后面直接在http://wiki.nginx.org/Drupal
上找到原文,但原文中复制过来会出现个 'root' rewrite directive is duplicate 错误和 server 第一列的错误。
对比aliyun上的预先设定的rewrite 发现它们都没有server {} 这个名,并且这个位置也在nginx -t 时报错了。
注释了报错的位置...
分类:
其他好文 时间:
2014-08-10 10:28:50
阅读次数:
318
事情是这样的:
博主尝试用Python的sqlite3数据库存放加密后的用户名密码信息,表是这样的CREATE TABLE IF NOT EXISTS user
(
userID INTEGER PRIMARY KEY AUTOINCREMENT,
userStudentID BLOB NOT NULL UNIQUE ON CONFLICT IGNORE,
use...
分类:
数据库 时间:
2014-08-10 01:50:29
阅读次数:
427
一、Objectivesdisplay all rows, eliminate duplicate rows, and limit the number of rows displayedsubset rows using other conditional operators and cacula...
分类:
数据库 时间:
2014-08-09 11:20:27
阅读次数:
235
场景:
如果业务层的内容被内嵌于界面层中,我们需要帮这分离出来
代码坏味道
MyFrame
/**
*
* @author wumingkun
* @version 1.0.0
* @Description
*/
package com.demo.refactor;
import java.util.Observable;
im...
分类:
其他好文 时间:
2014-08-09 00:14:48
阅读次数:
351
首先这是正常的,因为SECONDARY是不允许读写的,在写多读少的应用中,使用Replica Sets来实现读写分离。通过在连接时指定或者在主库指定slaveOk,由Secondary来分担读的压力,Primary只承担写操作。对于replica set 中的secondary 节点默认是不可读的,...
分类:
数据库 时间:
2014-08-08 17:55:56
阅读次数:
283
主键没有着明确的概念定义,其是索引的一种,并且是唯一性索引的一种,且必须定义为“PRIMARY KEY”,是只可意会不可言传的东西。下面让我用通俗,甚至有些低俗的语言为您简单介绍一下MySQL的主键。简单描述:主键不能重复,就像QQ的用户名,有N个叫“虫zi”的网友,可是他们的QQ号码是不一样的,....
分类:
数据库 时间:
2014-08-08 12:15:05
阅读次数:
328
An extensible file system format for portable storage media is provided. The extensible file system format includes the specification of primary and s...
分类:
其他好文 时间:
2014-08-06 18:43:11
阅读次数:
359
create database XjhDemogouse XjhDemogo--商品类别Create table Sort( SortId int primary key identity(1,1),--类别Id SortFatherId int foreign key references Sor...
分类:
其他好文 时间:
2014-08-06 08:22:21
阅读次数:
419