//窗体加载完毕 void MyMessageBox_Loaded(object sender,
RoutedEventArgs e) { //启动定时期倒计时,多线程计时 //System.Threading....
分类:
编程语言 时间:
2014-05-09 03:27:00
阅读次数:
366
Oracle Standby Database 实现方案 From:
http://wanow.blog.hexun.com/4672755_d.html字号:大 中 小版本:V20060328.01.01Standby
Database的工作原理1. Oracle 与 High Availabil...
分类:
数据库 时间:
2014-05-09 03:21:18
阅读次数:
645
数据库中的数字和编程语言中的数字有显著的不同,数据库中的数字可以为空,C#中的数字不能为空。int? x = null;
//此时x可以为空测试类(NullableTest)using System;using System.Collections.Generic;using
System.Linq...
分类:
其他好文 时间:
2014-05-09 03:20:29
阅读次数:
303
1. ConfigurationManager的命名空间:using
System.Configuration;2.To be able to save you have to use a configuration object
returned by the OpenExeConfigurati...
分类:
移动开发 时间:
2014-05-09 03:03:07
阅读次数:
596
1.创建工程文件-> 新建->网站 如下图。工程建好后,会自动添加如下代码: 1
using System; 2 using System.Linq; 3 using System.Web; 4 using
System.Web.Services; 5 using System.Web.Servic...
分类:
Web程序 时间:
2014-05-09 02:59:12
阅读次数:
608
Oracle日志文件管理与查看from:http://hi.baidu.com/shuker/item/25ee611ee960c7426826bb1f
1.查询系统使用的是哪一组日志文件: select * from v$log; 2.查询正在使用的组所对应的日志文件: select * ...
分类:
数据库 时间:
2014-05-09 02:54:25
阅读次数:
520
update T_Goods set ClickRate=(ClickRate+1) select
ClickRate from T_Goods where GID={0}
分类:
数据库 时间:
2014-05-09 02:48:51
阅读次数:
353
实际操作环境为:Eclipse+Pydev中使用Jython链接Oracle数据库。方法有二,如下所示。(注意:将要使用的.jar文件路径加入系统变量classpath中)一:Note:使用ojdbc.jar库from
oracle.jdbc.driver import OracleDriverfr...
分类:
数据库 时间:
2014-05-09 00:20:23
阅读次数:
348
查看锁表进程SQL语句1:select sess.sid, sess.serial#,
lo.oracle_username, lo.os_user_name, ao.object_name, lo.locked_mode from
v$locked_object lo, ...
分类:
数据库 时间:
2014-05-09 00:12:45
阅读次数:
439
原因:将FileUpload控件放到了UpdatePannel控件中了解决办法:将FileUpload控件位置移动到UpdatePannel控件外面
分类:
其他好文 时间:
2014-05-09 00:04:01
阅读次数:
304