事情是这样的:
博主尝试用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
File path = new File("/sdcard/okc"); File file = new File("/sdcard/okc/save.txt"); if (!path.exists()){ path.mkdirs(); ...
分类:
其他好文 时间:
2014-08-10 01:42:29
阅读次数:
220
1 CREATE DATABASE ChinaData 2 3 USE ChinaData 4 5 if exists (select * from sysobjects where id = OBJECT_ID('[province]') and OBJECTPRO...
分类:
其他好文 时间:
2014-08-09 15:39:58
阅读次数:
462
如图,现在有两个数据集,左边表示#tempTable1,右边表示#tempTable2。现在有以下问题:1.求两个集的交集?2.求tempTable1中不属于集#tempTable2的集?先创建两张临时表:create table #tempTable1( argument1 nvarchar...
分类:
其他好文 时间:
2014-08-08 20:52:26
阅读次数:
237
虚拟机无法删除的处理方法1)、查看虚拟机状态virsh#list--allIdNameState----------------------------------------------------9instance-000000c7running10instance-0000002erunning11instance-000000a8running12instance-000000a7running-instance-00000066shutoff2)、删..
分类:
其他好文 时间:
2014-08-08 16:30:57
阅读次数:
208
建表语句:DROP TABLE IF EXISTS `t_company`;CREATE TABLE `t_company` ( `companyId` int(10) unsigned NOT NULL AUTO_INCREMENT, `companyName` varchar(30) NOT.....
分类:
系统相关 时间:
2014-08-08 15:21:56
阅读次数:
332
-- 表的结构 `ecs_account_log`CREATE TABLE IF NOT EXISTS `ecs_account_log` (`log_id` mediumint(8) unsigned NOT NULL AUTO_INCREMENT COMMENT '自增ID号',`user_id...
分类:
数据库 时间:
2014-08-08 12:13:45
阅读次数:
295
friend表结构
DROP TABLE IF EXISTS FRIEND;
create table friend(
uid bigint not null comment '用户标识',
friend_uid bigint not null comment '申请加为好友的用户标识',
sys_create_date datetime no...
分类:
数据库 时间:
2014-08-07 15:51:50
阅读次数:
272
SELECT 表名=case when a.colorder=1 then d.name else '' end, 字段序号=a.colorder, 主键=case when exists(SELECT 1 FROM sysobjects where xtype='PK' a...
分类:
数据库 时间:
2014-08-06 18:40:31
阅读次数:
227
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Test
{
class Program
{
static void Main(string[] args)
{
string pat...
分类:
移动开发 时间:
2014-08-06 11:52:51
阅读次数:
191