删除用户,创建用户命令drop user goda
cascade;删除用户及其下所有对象,包括表CREATE USER qdcenter IDENTIFIED BY qdcenter DEFAULT
TABLESPACE data1 TEMPORARY TABLESPACE temp1 QUOTA...
分类:
数据库 时间:
2014-04-30 05:00:45
阅读次数:
569
首先.NET中的ICryptoTransform是单向的,也就是只能从一个状态将数据转化成另一个状态,反之是不可以的。当然手动
操作ICryptoTransform还是比较繁琐的,通过CryptoStream可以更轻松地操作一个ICryptoTransform。由于
ICryptoTransform...
分类:
Web程序 时间:
2014-04-30 02:40:00
阅读次数:
559
收集一些对PHP研究较深的文章,方便平时的查阅。 1)弱类型变量实现 2)PHP的生命周期
3)变量的引用计数、写时复制(Reference counting & Copy-on-Write) 4)变量的存储方式 5)数组
6)HashTable API 7)面向对象
分类:
Web程序 时间:
2014-04-30 01:38:26
阅读次数:
565
1. 打开新的窗口并传送参数:
传送参数:response.write("<script>window.open(’*.aspx?id="+this.DropDownList1.SelectIndex+"&id1="+...+"’)</script>")
接收参数:string a = Reque....
分类:
其他好文 时间:
2014-04-29 22:53:14
阅读次数:
571
1,date_default_timezone_set(PRC)
设定一个脚本中所有日期函数的默认时区,PRC设置中国时区2,microtime(true) 返回当前unix微秒时间戳 1398681491.8171
,一秒=1000毫秒,1毫秒=1000微秒3,round($str,int) .....
分类:
Web程序 时间:
2014-04-29 22:32:48
阅读次数:
578
2014-04-28
22:05题目:写个程序判断三连棋哪一方赢了。解法:三个相同的棋子连成一条横线,竖线或者对角线就判断为赢了。代码: 1 // 17.2 Write an
algorithm to check if someone has won the tic-tac-toe game. 2 ...
分类:
其他好文 时间:
2014-04-29 18:12:07
阅读次数:
474
happens-beforerelation on memory operations
such as reads and writes of shared variables. The results of a write by one
thread are guaranteed to be .....
分类:
移动开发 时间:
2014-04-29 16:38:32
阅读次数:
511
Most of the database intensive applications are
worring about the default values of these variables obviously. Developers used
to inform me that they ...
分类:
数据库 时间:
2014-04-29 15:26:38
阅读次数:
739
计算磁盘IOPS的三个因素:1、RAID类型的读写比不同RAID类型的IOPS计算公式:RAID类型公式RAID5、RAID3Drive IOPS=Read
IOPS + 4*Write IOPSRAID6Drive IOPS=Read IOPS + 6*Write IOPSRAID1、RAID10...
分类:
其他好文 时间:
2014-04-29 10:41:46
阅读次数:
382
1,创建主窗体 在内存中实例化JFrame对象
通过使用setSize(),setBounds()或者pack()方法给JFrame设置大小
通过使用setTitle()设置标题,setDefaultCloseOperation()设置关闭策略,setLocationRelativeTo()设...
分类:
其他好文 时间:
2014-04-28 11:16:39
阅读次数:
486