Zend Studio 可以直接通过Remote
System的方式直接连接服务器端的代码,就是可以直接修改服务器端的代码,不过修改的时间小心点,修改就会立即生效的。选择Remote Systems
后,在下面就会出现下图把这个tab移动到左边,并在左侧区域点击右键,出现下图,选择 new conn...
分类:
Web程序 时间:
2014-07-22 23:06:34
阅读次数:
459
Oracle内部主要存在以下四种SCN 1.系统检查点(system checkpoint)SCN
每当一个检查点完成时,Oracle就把该检查点对应的SCN记录到控制文件中,可以用以下语句查看当前数据库 的检查点SCN: select
CHECKPOINT_CHANGE# from v$datab...
分类:
其他好文 时间:
2014-05-01 16:12:03
阅读次数:
409
采用sys or system / manager as sysdba;
连接数据库。创建普通用户konglin: create user konglin identified by pwd_oracle;删除用户, drop
user konglin;授予用户登录数据库的权限: grant cre...
分类:
数据库 时间:
2014-05-01 15:29:35
阅读次数:
372
一.界面设计 二.具体代码 using System; using
System.Collections.Generic; using System.ComponentModel; using
System.Configuration; using System.Data; using System...
分类:
其他好文 时间:
2014-05-01 15:26:48
阅读次数:
345
public DateTime? StatusDateTime =
null;脑子便也出现个问号,这是什么意思呢?网上搜下,总结如下:1.
可空类型修饰符(?):引用类型可以使用空引用表示一个不存在的值,而值类型通常不能表示为空。例如:string str=null; 是正确的,int
i=null...
分类:
其他好文 时间:
2014-05-01 14:46:33
阅读次数:
347
private void ToConvert_Click(object sender,
EventArgs e) { string strPath = System.Windows.Forms.Application.StartupPath;
...
分类:
其他好文 时间:
2014-05-01 14:44:33
阅读次数:
346
Over the weekend, I was doing some work on the
internal CMS we use over at eagleenvision.net and I wanted to scrap my custom
table implementation for ...
分类:
Web程序 时间:
2014-05-01 14:28:26
阅读次数:
613
Hashtable h = new Hashtable();h.put("6",
"666");h.put("8", "888");h.put("2", "222");for (String key : h.keySet())
System.out.println(key);System.out.....
分类:
编程语言 时间:
2014-05-01 14:22:31
阅读次数:
383
this list is very important , you can not
download what you want like fictx , flash-plugin , vm-tool and so onyou can use
the sites of China , also yo...
分类:
系统相关 时间:
2014-05-01 14:13:25
阅读次数:
561
这些天用泛型做了一个数据库的底层,自我感觉很方便,但是功能不是很完善,会继续考虑下去下面给大家分享一下代码1数据库连接的帮助类using
System;using System.Collections.Generic;using System.Linq;using
System.Text;using...
分类:
数据库 时间:
2014-05-01 14:07:32
阅读次数:
603