原因是夏令时间会造成计算错误,差一小时就是差一天,用毫秒数计算已经不是正确方法了。
现代标准就是尽量不要使用毫秒数计算日期。
以下是正确方法:
public long daysBetween(Date start,Date end){long diff 0;if (start null || end …
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using System.IO; namespace Function { /// <summary> /// 将DataSet写成CSV文件 /// </summary> p…
Java里方法的参数传递方式只有一种:值传递。值传递,就是将实际参数值的副本(复制品)传入方法内,而参数本身不会受到任何影响。 public class PrimitiveTransferTest { public static void swap(int a,int b) { int tem…
因为农历的日期,是由天文学家推算出来的,到现在只有到2049年的,以后的有了还可以加入!
CREATE TABLE SolarData
(
yearId int not null,
data char(7) not null,
dataInt int not null
)
--插入数据
INSERT INTO
SolarData SELEC…
更好的计时器类实现:
LINUX RTC机制实现计时器类很多时候需要在LINUX下用到定时器,但像setitimer()和alarm()这样的定时器有时会和sleep()函数发生冲突,这样就给编程带来了很大的困难。 写了一个定时器的类,使用select进行精确…
//存储过程
/*if Exists(select name from sysobjects where nameaddOneArticle and typeP) drop procedure addOneArticle*//*if Exists(select name from sysobjects where name Session and typeP) drop procedure Session*/ /* exec(drop procedure dbo.Session) */u…
IFOBJECT_ID(tempdb..#) IS NOT NULLDROP TABLE #此句检查是否存在 临时表#
OBJECT_ID此函数返回数据库对象标识号
用OBJECT_ID可以举一反三实现别的功能
如:
if exists (select * from sysobjects where objectproperty(object_id(PerPersonData),istable) 1)
整条语句的…
ognl.OgnlException: target is null for setProperty(null, "x", [Ljava.lang.String;b0c40e)错误异常在提交form表单的时候发现后台经常出现类似异常,很奇怪,因为我的前台提交的参数和设置的ognl根本没有x之类的参数 后经研究发现原来是使用…
sqlite数据库只用一个文件就ok,小巧方便,所以是一个非常不错的嵌入式数据库,SQLite大量的被用于手机,PDA,MP3播放器以及机顶盒设备。 Mozilla Firefox使用SQLite作为数据库。 Mac计算机中的包含了多份SQLite的…
CodeFirst 虽然很好,但是为了驯服她,好费劲啊。 MySQL .net connector 版本号 6.5.4 在 EF 4.3.1 中无法顺利执行 Code First 操作。 她会抛出异常,信息如下: You have an error in your SQL syntax; check the manual that corre…
怎样将数字转换为字符串?C语言提供了几个标准库函数,可以将任意类型(整型、长整型、浮点型等)的数字转换为字符串。以下是用itoa()函数将整数转换为字符串的一个例子:
# include <stdio.h>
# include <stdlib.h>
int main ()
{ int num…
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; 本程序由FASM 1.54编译;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
format PE GUI
4.0include
%fasminc%/win32a.incinvokeOpenSCManager…
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.IO;//引入命名空间 using System.Net;//引入命名空间
namespac…
在VC中有两种方法可以进行串口通讯。一种是利用Microsoft公司提供的ActiveX控件 Microsoft Communications Control。另一种是直接用VC访问串口。下面将简述这两种方法。 一、Microsoft Communications Control Microsoft公司在WINDOWS中提供了一个串口通讯控件ÿ…
错误原因:
数据库字段与实体类属性名称不一致
解决方法
使用as或使用resultmap
例如使用as
select b.id_ as id ,b.title_ as title ,b.bill_time_ as billTime,b.type_id_ as typeId,b.price_ as price ,b.explain_ as explain ,bt.name_ as name from bill_ b left j…
if exists (select * from dbo.sysobjects where id object_id(N[dbo].[p_movefile]) and OBJECTPROPERTY(id, NIsProcedure) 1) drop procedure [dbo].[p_movefile] GO /*--移动服务器上的文件 不借助 xp_cmdshell ,因为这个在大多数时候都被禁用了 --邹建 2004.08(引…
Javascript语言的设计不够严谨,很多地方一不小心就会出错。 举例来说,请考虑以下情况。 现在,我们要判断一个全局对象myObj是否存在,如果不存在,就对它进行声明。用自然语言描述的算法如下: if (myObj不存在…
where 11有什么用?在SQL语言中,写这么一句话就跟没写一样。 select * from table1 where 11与select * from table1完全没有区别,甚至还有其他许多写法,1<>2,aa,a<>b,其目的就只有一个…
测试InputStream,读取一个中文文本,但发现在控制台上输出时,是乱码:
public class InputStream { public static void main(String[] args) { FileInputStream in null; int b; long num 0; try { //建立了一根管道,读取一个…
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"><html xmlns"http://www.w3.org/1999/xhtml"><head><title>表单验证提示效果</title…
时间类型:、 Coordinated universal time (UTC):世界标准时间,也就是格林威治时间(greenwich mean time ,GMT). Calendar time:日历时间,从1970年1月1日0点到此时经过的秒数 时间显示: Char *as…
--生成测试数据CREATE TABLE T_TABLE(id int IDENTITY(1,1) NOT NULL,upid int NULL,title [varchar](50))
INSERT INTO T_TABLE (upid,title) values(0,1TITLE)INSERT INTO T_TABLE (upid,title) values(0,2TITLE)INSERT INTO T_TABLE (upid,title) values(0,3TITLE)INSERT I…
统计难题
Time Limit: 4000/2000 MS (Java/Others) Memory Limit:131070/65535 K (Java/Others) Total Submission(s): 9856 Accepted Submission(s): 3989
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid1251
Problem Description
Ignatius最近遇到一个…
Spring中使用JdbcTemplate的queryForObject方法,当查不到数据时会抛出如下异常:
org.springframework.dao.EmptyResultDataAccessException: Incorrect result size: expected 1, actual 0
org.springframework.dao.support.DataAccessUtils.(DataAcce…
线程是一个和平台关系比较密切的概念,这里我们也不能看出它的具体实现,只能看一下它的表现了.
public class Thread implements Runnable
public final static int MIN_PRIORITY 1;public final static int NORM_PRIORITY 5;public final static int MAX_PRIORITY 10;//以…
文字水印的生成方法File fImage new File("/sdcard/dcim", "beijing.jpeg");FileOutputStream iStream new FileOutputStream(fImage);Bitmap oriBmporiBmp.compress(CompressFormat.JPEG, 100, iStream);int w 320, h 240;String mstrTitle "感…
1、首先创建一个MFC对话框框架,在对话框资源上从工具箱中添加上一个Tab Control 控件,根据需要修改一下属性,然后右击控件,为这个控件添加一个变量,将此控件跟一个CTabCtrl类变量绑定在一起,这里设为m_tabc…
在开发中遇到一个问题,在mysql中字段都为varchar型,但是有的没有值查出来是NULL,有的查出来是空。 先来看一下mysql中的NULL和empty String的区别:
1.A NULL value represents the absence of a value for a record in a field (…
约束 Including Constraints在数据库中使用约束(constraints)是为了在该数据库中实施所谓的"业务规则"其实就是防止非法信息进入数据库,满足管理员和应用开发人员所定义的规则集.ORACLE 使用完整性约束(integrity constraints)防止不合法的数据写入数据库,管理员和开…
本文将主要通过“同步调用”、“异步调用”、“异步回调”三个示例来讲解在用委托执行同一个“加法类”的时候的的区别和利弊。 首先,通过代码定义一个委托和下面三个示例将要调用的方法: /*添加的命名空间 using System.Threading; using System.Runt…
linux c语言 select函数用法Select在Socket编程中还是比较重要的,可是对于初学Socket的人来说都不太爱用Select写程序,他们只是习惯写诸如 connect、accept、recv或recvfrom这样的阻塞程序(所谓阻塞方式block,顾名思义,…
/*使用递归方法求一个数组的最小值.*/#include <iostream>#include <time.h>using namespace std;void main(){srand((unsigned)time(NULL));//the seed of the random number.for(int i0;i<10;i){cout<<rand()<<" ";}}
一、原题 Evaluate the following SQL statement: SQL>SELECT cust_id, cust_last_name FROM customers WHERE cust_credit_limit IN (SELECT cust_credit_limit FROM customers WHERE cust_city Singapore); Which sta…
一、原题 Which two statements are true regarding the COUNT function? (Choose two.) A. The COUNT function can be used only for CHAR, VARCHAR2, and NUMBER data types. B. COUNT(*) returns the number of rows including duplicate rows and rows containing NULL …
open cur_view_name_detail; --获得视图列表loop fetch cur_view_name_detail into lv_table_name;lv_detail_sql:replace(lv_detail_sql_undo,VW_OP_MAIL_01_1204,lv_table_name);lv_detail_sql:replace(lv_detail_sql,g_run_day_n,to_char(g_run…
说明:
1. 此文档基于 linux 2.6.32,TQ2440上测试通过,
2. arm-linux-gcc版本
Thread model: posix gcc version 4.3.3 (Sourcery G Lite 2009q1-203)
一. 问题描述及追踪分析
使用 rmmod时候发现如下错误
rmmod chdir no such file or directory…
sql server 2005分页存储过程和sql server 2000分页存储过程,sql 2005的分页存储过程分3个版本,一个是没有优化过的,一个是优化过的,最后一个支持jion的,sql2000的分页存储过程,也可以运行在sql2005上&…
2009-1-4 19:53:57 org.apache.commons.digester.Digester error严重: Parse Error at line 4 column 17: Document root element "form-validation", must match DOCTYPE root "null".org.xml.sax.SAXParseException: Document root element "form-v…
Object类是所有类的超类,也就是说,Java中的每一个类都是由Object扩展而来的.因而每当你创建一个对象,它都将拥有Object类中的全部方法.让我们先来看看java.lang.Object的中的主要方法有哪些:
public class Object{
//公共构造函数
public Object();
//公共实例方法
public bool…
一、case when case when 类似我们的if ...else ,判断语句 语法如下: CASE expr WHEN expr1 THEN return_expr1 [WHEN expr2 THEN return_expr2 ... WHEN exprn THEN return_exprn ELSE else_expr] END 第二种延伸用法: CASE …
NULL_PEN、 NULL_BRUSH 和 HOLLOW_BRUSH 的使用 Use of NULL_PEN, NULL_BRUSH, and HOLLOW_BRUSH http://support.microsoft.com/kb/66532/en-us/GDI contains several "NULL" stock objects: NULL_BRUSH, HOLLOW_BRUSH, and NULL_PEN. These objects are defined in…
On success, the total number of characters written is returned. This count does not include the additional null-character automatically appended at the end of the string.
成功返回写字符的总数,其中不包括结尾的null字符。On failure, a negative num…
输入一个RSS地址:代码:<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"><html xmlns"http://www.w3.org/1999/xhtml"><head><title>this is test<…
从名字上看出来,EnumMap是为枚举类服务的,它的key不能为null,在创建它的时候,必须要指定一个枚举类,如:EnumMap enumMap new EnumMap(Season.class);
下面示范它的用法public enum Season
{SPRING,SUMMER,FALL,WINTER…
硬盘序列号是硬盘格式化时系统随机分配给硬盘的一组十六进制字符串,除分对硬盘重新进行格式化,硬盘序列号是不会改变的。所以,很多软件都会以硬盘序列号判断用户是否合法用户。以下是JAVA获取硬盘序列号的方法。 public static String getHdS…
publicclassPrintFunction ...{ public String printName String.Empty; public Font prtTextFont new Font("Verdana", 10); public Font prtTitleFont new Font("宋体", 10); private String[] titles new String[0]…
/**************************创建XMLHttpRequest对象**************************/function CreateRequest(){var xmlObj null;try {xmlObj new XMLHttpRequest();}catch(e){try{xmlObj new ActiveXObject("MSXML2.XMLHTTP");}catch(e2){try{xmlObj new ActiveXOb…
创建两个类
SingleLinkedList<T>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;namespace DevGuideToCollections
{/// <summary>/// Represents a strongly typed single linked list./// &l…
类代码using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;namespace DevGuideToCollections
{/// <summary>/// Represents a strongly typed array./// </summary>/// <typeparam name"T…
下面的方法是查询 element 元素类型的结点 XElement firstParticipant; // A full document with all the bells and whistles. XDocument xDocument new XDocument( new XDeclaration("1.0", "UTF-8", "yes"), new XDocumentType("BookP…
SmartUpload su new SmartUpload(); su.initialize(pageContext);pageContext变量找不到,并且不能用new PageContext()定义该变量,如何解决呢?
在action中可以这样得到pageContetext对象 import javax.servlet.jsp.JspFactory;import…
下面贴出使用迅雷下载的webThunderDetect.js源码:
function _xlThunderQtyPV(){try{vhref "http://analytics-union.xunlei.com/PV?peerid0&urihttp://thunderqtypv.union.xunlei.com&src" document.domain;image1 new Image(1,1);image1.srcvhref;} ca…
1.从注册到现在有几天DBOperator的一个方法 public int getTime1ToTime2(String Time1) { String StrDateTime1; int iStrDate.indexOf("-"); String ip1StrDate.substring(0,i); StrDateStrDate.substring(i1,StrDate.length()); iStrDate.indexOf("-"…
我们知道,如果对象是3种情况,那么就会js调用对象的属性会进行报错,那么我们在调用前应该进行判断是否为这3种情况。
//判断空或者undefined或者NAN,用它来调用方法会出错误的。
function isTransferErrorEmpty(obj){if(Object.prototype.toS…
摘要:本文通过对自动化等COM技术的应用介绍了一种在MFC应用程序中动态嵌入Microsoft Word文档的简单方法。使在MFC应用程序中即可打开、显示和存储外部Word文档。 关键字:VC、MFC、COM、自动化引言 Microsoft Office办公套件以其功能强大、方便实用…
//主键
alter table tabelname add new_field_id int(5) unsigned default 0 not null auto_increment ,add primary key (new_field_id);
//删除列
alter table t2 drop column c;
//重命名列
alter table t1 change a b integer; //改变列的类型
alter table t1 change…
VC 和 MFC 的一些常见问题 如何抛出(throw)由CUserException派生的异常? 当我试图捕获(catch)一个派生类异常时,我得到以下错误"error C2039:classCMyException: is not a member of CMyException cl…
使用jetty版本:jetty-websocket-8.0.4.v20111024.jar
使用servletapi版本:3.0
服务器端servlet继承 WebSocketServlet 实现websocket连接。如下代码:
public class Communicate extends WebSocketServlet {private static final long seri…
前面说到模仿Control类自身的BeginUpdateInternal和EndUpdateInternal方法,封装各个控件都适用的基础类,先看代码吧1 class AvoidControlFlicker 2 { 3 private int _paintFrozen; 4 5 public void FreezePainting(Control toFreezeControl…
Java代码 package ansj.sun.util; public class BitMap { private static final byte MAX 127; public static void main(String[] args) throws InterruptedException { int m 1578015112 ; BitMap hm new BitMap() ; …
这是从网上找的,感觉有用就放在这儿!
using System;using System.Collections;using System.Collections.Generic;using System.Reflection;using System.IO;using System.Net;using System.Text;namespace MyCsStudy{ class Program { //…
delete()方法的使用:SQLiteDatabase db databaseHelper.getWritableDatabase();
db.delete("person", "personid<?", new String[]{"2"});
db.close();上面代码用于从person表中删除personid小于2的记录。update()方法的使用&am…
线程存储, Thread Specific Data 。线程存储有什么用了?他是什么意思了?大家都知道,在多线程程序中,所有线程共享程序中的变量。现在有一全局变量,所有线程都可以使用它,改变它的值。而如果
每个…
在网上看了许多能生成静态页的新闻系统,但基于asp.net的系统极少,闲下时间来自己写了一个,发出来,大家一起研究,代码没做什么优化,只是实现了功能 using System;using System.Collections;using System.Com…
创建操作日志字典 -------------------------------------------------------------Susue--------- 如表已存在,先删除--if exists(select 1 from sysobjects where nameS_LOG and XtypeU) drop table S_LOG ;go--------- 建新表和主键create table S_LOG ( P_ID int IDENTIT…
RTSP服务器处理客户端点播的基本流程 处理连接请求的基本流程:
l Step 1:与客户端建立RTSP连接(调用incomingConnectionHandler方法),创建ClientSession并关联fClientSocket与incomingRequestHandler(调用…
//1. PHP中出现的字符串Hash函数 static unsigned long hashpjw(char *arKey, unsigned int nKeyLength) { unsigned long h 0, g; char *arEndarKeynKeyLength; while (arKey < arEnd) { h (h << 4) *arKey; if ((g (h & 0xF0000000))) { …
数学函数 1.绝对值 S:select abs(-1) value O:select abs(-1) value from dual 2.取整(大) S:select ceiling(-1.001) value O:select ceil(-1.001) value from dual 3.取整(小) S:select floor(-1.001) value O:se…
一次神奇的MySQL优化 转载自: http://xiaobin.net/201109/strange-sql-performance-problem/ 话说有这么一个表: CREATE TABLE user_group (id int(11) NOT NULL auto_increment,uid int(11) NOT NULL,group_id int(11) NOT NULL,PRIMARY KEY (id),K…
分别设定$var null;$var 0;$var ;$var array();if (empty($var)) {print "This var is set set so I will print.";}echo <hr/>;if (isset($var)) {print "This var is set set so I will print.";}
手册说得挺详细 http://ca.php.net/manual/…
单列索引和组合索引 为了形象地对比两者,再建一个表: create table myindex ( i_testid int not null auto_increment, vc_name varchar(50) not null, vc_city varchar(50) not null, i_age int not null, i_schoolid int not null, primary key (i_tes…
来自:c和指针.P342 断言就是声明某种东西应该为真。ANSI C 实现了一个assert宏,它在调试程序时很有用。它的原型如下所示:
void assert( int expression ); 当它被执行时,这个宏对表达式参数进行测试。如果它的值为假,…
定义和使用类 ST 2是面向对象的语言,在开发过程中当然要创建(定义)和使用类。本文简介了ST2的类系统。如果你想以面向对象的角度理解ST2,那么这篇文章应该是非常有意义的!! 本文整理自http://www.cnblogs.c…
Phone List
Time Limit: 3000/1000 MS (Java/Others) Memory Limit:32768/32768 K (Java/Others) Total Submission(s): 4602 Accepted Submission(s): 1557
题目连接:http://acm.hdu.edu.cn/showproblem.php?pid1671
Problem Description
Given a list of p…
先看一段代码:
#include <stdio.h>
void fun(int **ppTemp) { int a 0; int *pTemp &a; printf("The address of pTemp is %d\n", pTemp); *ppTemp &pTemp; printf("The address of ppTemp is %d\n&qu…
在VC中,大多数情况对文件的操作都使用系统提供的 API 函数,但有的函数我们不是很熟悉,以下提供一些文件操作 API 函数介绍: 一般文件操作 API
CreateFile打开文件要对文件进行读写等操作,首先必须获得文件句柄,通过该…
转换标准时间
public static string getSubDatetime(object obj) { string Result string.Empty; if (obj ! null) { DateTime dt; if (DateTime.TryParse(obj.ToString(), out dt)) { dt …
出于安全方面的原因,现代的浏览器不允许跨域的访问。 这意味着,网页以及它试图加载的 XML 文件,都必须位于相同的服务器上。 <html><body><script type"text/javascript">try //Internet Explorer { xmlDocnew…
oracle 手工创建Scott用户
1.登录数据库 sqlplus / as sysdba
2.创建scott用户 create user scott identified by tiger; 3.为scott用户分配权限 grant connect,resource to scott; 4.用scott用户登录 conn scott/tiger 5.执行demobld.sql脚本,脚本内容是…
问题是这样的,实体对象一定要有一个无参数的构造函数。本来吗,你自个不写一个带参的函数当然不会有这个问题了。但写了就可能不写一个无参数的构造函数。否则就会报-------异常:ognl.OgnlException: target is null for setProperty
这个是在…
使用mysql中经常会遇到的问题,记录下来 转自: http://database.e800.com.cn/articles/2007/630/1183147360019880660_1.html select bid from board where not in (select bid from favorite)但在 mysql里就提示SQL语句的语法不对,“...near …
信号量的数据类型为结构sem_t,它本质上是一个长整型的数。
------函数sem_init()用来初始化一个信号量。 它的原型为: extern int sem_init __P ((sem_t *__sem, int __pshared, unsigned int __value));
sem为指向信号量结构的…
一、原题 View the Exhibit and examine the data in the EMPLOYEES table. You want to generate a report showing the total compensation paid to each employee to date. You issue the following query: SQL> SELECT ename|| joined on ||hiredate|| …
/****************************
v_index 为主键语句
tablename 为表名
written by:wonder
modified by:
****************************/CREATE OR REPLACE PROCEDURE prc_delete(v_index IN VARCHAR2, tablename IN VARCHAR2) IS v_sql VARCHAR2(2000); v_sql1 V…
需求:有如下两张表,其中tb_web_app表中数据有十万甚至百万,另,tb_web_app表中的c_category_code关联表tb_system_category中的c_code字段。 CREATE TABLE tb_system_category (id int(11) NOT NULL AUTO_INCREMENT,c_parent_id in…
这几天在用MFC做有关定时器的东西,发现MFC自带的定时器方式SetTimer方式不适合用于频繁重新计时的方式,过多地Stop和SetTimer程序会死掉,因此,自已用线程的方式做了一个定时器类:
#pragma once
#include "afxwin.h"#def…
Left Join / Right Join /inner join相关关于左连接和右连接总结性的一句话:左连接where只影向右表,右连接where只影响左表。Left Join select * from tbl1 Left Join tbl2 where tbl1.ID tbl2.ID左连接后的检索结果是显示tbl1的所有数据和tbl2中满足wh…
DTD is prohibited!?
许多人发出疑问:为什么我的XML文档,加入了DTD就无法解析? IXMLDOMParseError 返回的错误:DTD is prohibited.
更有许多人惊奇:我怎么没有出现这种情况。 ProhibitDTD Boolean False in 3.0,…
import java.net.*;
import java.io.*;
public class test
{public static void main(String[] args){URL url null;URLConnection urlCon;InputStream inStream;//你只需判断这个变量值 .try{url new URL("http","www13.kaxiu.com",80,"modules/9…
方法与SingleLinkedList(单向链表)类似
创建两个泛型类DoubleLinkedList<T>using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Diagnostics;namespace DevGuideToCollections
{/// <summary>/// Represents a …
今天因为客户需要,需要将多个WORD文档合并成为一个WORD文档。其中,对WORD文档的合并方式分两种形式:一是复制合并;一是插入合并,即将多个文档按照先后顺序合并到另一个文档中.代码如下:
using System;using System.Collections.Generic;usin…
我是通过这篇文章来学习的,网上一搜好几个:)
http://hi.baidu.com/daijun2007/blog/item/eb39373e54f6e33a71cf6c50.html 下面是自己写的 var type System.IO.Path.GetExtension(FileUpload1.FileName);Regex rNumber new Regex("^/d(/./d)?|[A-Z]$"); //"…
官方例子: SummaryIt may prove beneficial to validate user input within the client-side events. The BeforeExitEditModeHandler allows for a perfect time to validate the the input and "lock" the user on the cell until proper data has been entered.Ad…
想要导入文件进mysql里面的数据表,执行LOAD DATA INFILE /Users/ziqi.zhang/testDB.csv INTO TABLE goods FIELDS TERMINATED BY ,;
返回:
ERROR 1290 (HY000): The MySQL server is running with the --secure-file-priv option so it cannot execute…
User Mode Driver介绍 Windows CE 6.0中引入了User Mode Driver的概念,可是无论是网上,还是各个芯片厂商提供的方案中,都很少提及这方面的内容。 本文以小郭对存储管理和User Mode Driver Host的理解为基础,结合具体的代码实现&am…
在大多2440开发板BSP中的SMDK2440/DRIVERS/backlite目录下一般都有背光驱动。在注册表中添加如下函数的时候,开机时确实可以打印"!!!!!!!!!!!! BACKLIGHT ON !!!!!!!!!!!!,如果没有操作大概1分钟后也可以打印!!!!!!!!!!!! BACKLIGHT OFF !!!!!!!!!!…
MFC提供集合类(Collect)专门负责数据对象的存储和管理,MFC的集合类分为三类,分别用于处理三类不同性质的数据结构:表(List,类似于数据结构的双链表),数组(Array)和映射(Map,具有类似字典的功能).
一,数组使用心得
原型: template< class TYPE, class ARG_TYPE > clas…
一楼为原帖,二三楼是ARMCE的讲解。原文如下:Modify BusEnum to support asynchronous driver loadinga. Currently, the BuiltIn drivers are loaded by BusEnum.dll in a single thread. BusEnum was designed to be able to call itself. BusEnum…
TO_DATE格式复制内容到剪贴板代码:Day:dd number 12dy abbreviated friday spelled out fridayddspth spelled out, ordinal twelfthMonth:mm number 03mon abbreviated marmonth spelled out marchYear:yy two digits 98yyyy four digits 199824小时格式下时间范围为ÿ…
动态添加Meta tages: // Render: <meta name"keywords" content"Some words listed here" /> HtmlMeta meta new HtmlMeta();meta.Name "keywords";meta.Content "Some words listed here";this.Header.Controls.Add(meta);/…
在提到上述的概念之前,首先想说说Javascript中函数的隐含参数:arguments
Arguments
该对象代表正在执行的函数和调用它的函数的参数。
[function.]arguments[n]参数function :选项。当前正在执行的 Function 对象的名字。 n :选…
我们总结一下在第二篇中的
Session
操作:
1. 获取记录 Person person (Person)session.Get(typeof(Person),1);2. 保存记录 session.Save(person);3. 删除记录 Person person (Person)session.Get(typeof(Person),1);session.…
<script>
function switchMenu(evt){
var eleevt.target||evt.srcElement; //分别针对非ie和ie,获取事件的源对象
if(ele.tagName"H1"){ //如果是<h1>
var uluele.parentNode.getElementsByTagName("ul");
for(var i0;i<ulu.le…
adshost表
id,Username,Password,Site_name,Site_URL,Site_type,Site_desc,Linkname,Email,QQ,MSN,Phone,Company,Address,Postal,Fax
以下是原sql语句.
if exists (select * from dbo.sysobjects where id object_id(N[dbo].[Adshost]) and OBJECTPROPERTY(id, NIsUserTab…
/** * 读取文件指定行。 */public class ReadSelectedLine {// 读取文件指定行。 static void readAppointedLineNumber(File sourceFile, int lineNumber) throws IOException {FileReader in new FileReader(sourceFile);LineNumberReader reader new LineNumberRe…
单例相对于静态变量的优势:
(1),可以支持延迟加载
(2),可以支持多态 最简单的单例模式
public class Singleton { private static final Singleton instance new Singleton(); private Singleton() { } public static Singleton getInstance(){ return instance…
清除和设置文件缓冲区
(1).清除文件缓冲区函数: int fflush(FILE *stream); int flushall(); fflush()函数将清除由stream指向的文件缓冲区里的内容,常用于写完一些数据后,立即用该函数清除缓冲区,以免误操作时,破坏原…
http://blog.csdn.net/v_july_v/article/details/6630757
从上面博客中获取的算法,编译测试通过 void testMake1000WRand(){const int size 10000000;int *num new int [size];int n;FILE *fp fopen("F:\\rasterTest\\data.txt", "w");asse…
这个都知道在哪里用,但是道理不清楚。然后google 了一下,一个比较好的解释虽然是英文,但是很经典。 1.0 is an integer constant
2.\0 is a character constant
3.NULL is a macro(宏) defined in several standard …
C引用与指针的比较 引用是C中的概念,初学者容易把引用和指针混淆一起。 一下程序中,n是m的一个引用(reference),m是被引用物(referent)。 int m; int &n m; n相当于m的别名(…
点击打开链接public void CommuertReportExcel(){DataTable dtshow new DataTable();DataTable dt new DataTable();string sql "select LogTime,AttendantWorkNo,ActionName from AttendantLogInfo where ActionName in(登录,下班) " search_condition() "…
一、ADO概述 ADO是Microsoft为最新和最强大的数据访问范例 OLE DB 而设计的,是一个便于使用的应用程序层接口。ADO 使您能够编写应用程序以通过 OLE.DB 提供者访问和操作数据库服务器中的数据。ADO 最主要的优点是易于使用、速度快、内存支出少和磁盘遗迹小。ADO 在…
Oracle 分析函数——CUBE , ROLLUP
CUBE
功能描述:
注意: ROLLUP
功能描述:
注意: 如果是 ROLLUP(A, B, C) 的话, GROUP BY 顺序
(A 、 B 、 C)
(A 、 B)
(A)
最后对全表进行 GROUP BY 操作。
如…
s3c2410 有三个时钟FLCK 、HCLK 和PCLK (这3个时钟都是核心时钟)s3c2410 芯片有这么一段话:FCLK is used by ARM920T ,内核时钟,主频。HCLK is used for AHB bus, which is used by the ARM920T, the memory controlle…
最近解决一个获得gmail附件文件名字的问题, 由于打开gmail附件所获得的intent data 是Content://xxxx形式,而非常用的File://xxxx形式,所以不能直接用getIntent().getData()来获得文件名。研究了一下,最后发现用下面方法可以获得c…
视频演示:http://u.115.com/file/f223235faf演示重点说明在前一个演示中,我们通过使用两个一对多的关系建立了LINQ to SQL中的伪多对多关系,之所以称之为伪关系,只是表示它并非是真正意义上的多对多关系。然而,前面的做…
http://www.vcworld.net/news/200910/114918.html 欢迎进入内存这片雷区。伟大的Bill Gates 曾经失言: 640K ought to be enough for everybody — Bill Gates 1981
程序员们经常编写内存管理程序,往往提心吊胆。如果不想触雷,唯一的解决…
MTK的控件和窗体绘制机制及其事件响应机制(一) 一、entryfunction在文档里面我们看到下面的条款: 以下引自:write applications using pixtel MMI platform.pdfBefore display the new screen over previous screen the f…
ORACLE提供了一种树形结构用来实现层次查询: START WITH :指定记录是根节点的条件。根节点可以有多个。 CONNECT BY :指定记录之间是父节点和子节点关系的条件。查找出含有子节点的父节点的条件 PRIOR :指定父节点记录的引用。 SI…
一直学数据库的都知道,关系运算有交,差,并,等运算,而之前的版本一直只看到并,好象很少看到有差,交的运算显式的表达在操作SQL语句中,现在好了,SQL SERVER 2005中有差&…
instanceof 运算符是用来在运行时指出对象是否是特定类的一个实例。instanceof通过返回一个布尔值来指出,这个对象是否是这个特定类或者是它的子类的一个实例。 用法:
result object instanceof class
参数:result必选项。任意变量。o…
3> 调用User Mode Driver Host API来将Driver Load到内存 CeFsIoControl()实际上是一个对文件系统驱动FSD进行操作的函数,需要传入文件夹名字和IoControlCode。 帮助文档中对该函数的解释如下:
This function sends an I/O control to a file …
Cannot forward after response has been committed
这句话的直译意思好像是,response已经提交了,不能再转向了。
其实这个错误是由于response多次提交或者是由于有页面显示后仍然含请求转向产生的,换句话说就是程序在return之前就已经执行…
JS自带函数 concat 将两个或多个字符的文本组合起来,返回一个新的字符串。 var a "hello"; var b ",world"; var c a.concat(b); alert(c); //c "hello,world" indexOf 返回字符串中一个子串第一处出现的索引(从左到右…
Singleton应该说是平时用的最多的一种模式之一Singleton模式主要作用是保证在Java应用程序中,一个类Class只有一个实例存在。一般Singleton模式通常有几种形式: public class Singleton { private Singleton(){} //在自己内部定义自己一个实例,…
-- 表生成
if exists (select * from dbo.sysobjects where id object_id(N[dbo].[sgip_Deliver]) and OBJECTPROPERTY(id, NIsUserTable) 1)drop table [dbo].[sgip_Deliver]GO
if exists (select * from dbo.sysobjects where id object_id(N[dbo].[sgip_Report]) and O…
第7章内存管理欢迎进入内存这片雷区。伟大的Bill Gates 曾经失言:640K ought to be enough for everybody— Bill Gates 1981程序员们经常编写内存管理程序,往往提心吊胆。如果不想触雷,唯一的解决办法就是发现所有潜伏的地雷并且排除它们&am…
原文来自:http://dev.mysql.com/doc/refman/5.1/en/partitioning-limitations-partitioning-keys-unique-keys.html This section discusses the relationship of partitioning keys with primary keys and unique keys. The rule governing this relationshi…
前段时间 写Oracle 的存储过程 遇到了很多问题 ,用存储过程 显示一个select * from table 就那么费劲吗?在Google和Baidu上找了好长时间,终于找到了正确答案。 Result Sets from Stored Procedures In Oracle A frequently asked question is: Id like …
算术运算符
加 SET var122; 4- 减 SET var23-2; 1* 乘 SET var33*2; 6/ 除 SET var410/3; 3.3333DIV 整除 SET var510 DIV 3; 3% 取模 SET var610%3 ; 1
比较运算符 > 大于 1>2 False< …
select sysdate from dual; ---获得当前时间
select to_char(sysdate,yyyy-mm-dd) from dual --改变时间格式位(yyyy-mm-dd)
select NVL(LRRQ,1) from fad020; --如果为空 转显示1 对应SQL Server (isnull)
select (case CPBH when S then 1 else CPBH end) as a from fa…
文章目录 一、背景二、Value 取值为 null 原因分析2.1. Value 取值为 null 常见原因分析常见现象一:类没有交给 Spring 管理,比如类没有加上 Component 等注解常见现象二:手动 new 对象实例,没有从 Spring 容器中获取常见现象三&a…
MYSQl left join 联合查询效率分析
user表: id | name ——— 1 | libk 2 | zyfon 3 | daodao
user_action表:
user_id | action ————— 1 | jump 1 | kick 1 | jump 2 | run 4 | swim
sql: select id, name, action from user as u left join user_action a on u.id …
在2009年的JavaOne大会上,Joshua Bloch和Neal Gafter又为我们带来的7道谜题,挺有意思的。大家不妨看看。 摘自: Return of the Puzzlers: Schlock and Awe Joshua Bloch, Google, Inc.; Neal Gafter, Microsoft http://developers.sun.co…
用Javascript获取指定页面元素的位置是一个非常常见的需求,本文介绍的函数能够准确返回一个元素相对于整个文档左上角的坐标,即元素的 top 、left 的位置,而且能够兼容浏览器,相信对新手非常有用。function getElementPos(element…
sql语句根据特定条件改变排序及效率测试 两个解决方案:
SELECT * FROM T_Admin
ORDER BY CASE WHEN admin_name loo THEN 0 ELSE 1 END
另外一种:
SELECT *, 0 AS tmp_o
FROM t_admin
WHERE admin_name loo
UNION
SELECT *, 1 AS tmp_o
FROM t_admin
…
转自:http://java.mblogger.cn/flowercat/
1、case表达式select country_name,region_id, case region_id when 1 then europe when 2 then america when 3then asia else other end continent from countries where country_name like I%;在9i中提供的case表达式&…
上篇《Oracle高水位线(HWM)及性能优化》用到的show_space
create or replace procedure show_space ( p_segname_1 in varchar2,p_space in varchar2 default MANUAL,p_type_1 in varchar2 default TABLE ,p_partition_1 in varchar2 default NULL,p_analyzed in varchar2 def…
定义个结构体数组 type ty_parmeter is record ( v_hezuotype number(1), v_comefrom varchar2(50), v_regchannel varchar2(50), v_newchannel nvarchar2(30) ) ; type ty_parmeter_table is table of ty_parmeter index by binary_integer; parameter_arr…
说明: 1. Based on linux2.6.32, only for mem(SDR) 2. 有兴趣请先参考阅读: 电源管理方案APM和ACPI比较.doc Linux系统的休眠与唤醒简介.doc 3. 本文先研究标准linux的休眠与唤醒,android对这部分的增改在另一篇文章中讨论 4. 基于手上的一…
DefaultMessageListenerContainer继承自AbstractPollingMessageListenerContainer,主要使用同步的方式接收消息(也就是通过循环调用MessageConsumer.receive的方式接收消息)。该类主要的属性如下: Java代码 private int concurren…
oracle分页查询的时候,不能使用limit,所以只能这样 1. select * from table_name where rownum>begin and rownum< end 2.sql "select * from table" con.prepareCall("SELECT * FROM(SELECT A.…
JDBC链接Mysql Java2009-04-26 09:11 阅读18 评论0 字号: 大大 中中 小小 import java.sql.*;import java.util.*; public final class Mysql{ private Connection conn null;// private Statement st null; ArrayList res new ArrayList(); private Pre…
public void reset(ActionMapping mapping, HttpServletRequest request) { String id request.getParameter("id"); ComJob job new ComJob(); ComJobDAO jobdao new ComJobDAO(); if (idnull||id""){ this.setComputer("一般");…
在2009年的JavaOne大会上,Joshua Bloch和Neal Gafter又为我们带来的7道谜题,挺有意思的。大家不妨看看。摘自:Return of the Puzzlers: Schlock and AweJoshua Bloch, Google, Inc.; Neal Gafter, Microsofthttp://developers.sun.com/learni…
Date--->Timestamp
public String getCurrentTime(){ Date date new Date(); //format对象是用来以指定的时间格式格式化时间的 SimpleDateFormat form new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); //时间格式,这里的格式可以自己…
1.创建type,必须是单独的type,在pkg中的不行
CREATE OR REPLACE TYPE obj_txb_xb97 as TxbLE OF rec_xb97;
CREATE OR REPLACE TYPE rec_xb97 AS OBJECT( xoe001 NUMBER(18), xxe901 NUMBER(18), xxe140 VARCHAR2(3), xxe210 VARCHAR2(3), xxb210…
抱歉,来源忘记了。。package sanpai.db;
import java.io.*;import java.sql.*;import java.util.*;import java.util.Date;
/** * This class is a Singleton that provides access to one or many * connection pools defined in a Property file. A client gets…
在oracle中处理日期大全 TO_DATE格式 Day: dd number 12 dy abbreviated fri day spelled out friday ddspth spelled out, ordinal twelfth Month: mm number 03 mon abbreviated mar month spelled out march Year: yy two digits 98 yyyy four digits 1998 2…
有分类表tb_system_category,结构如下: CREATE TABLE tb_system_category (id int(11) NOT NULL AUTO_INCREMENT,c_parent_id int(11) NOT NULL,c_name varchar(50) NOT NULL,c_full_name varchar(200) DEFAULT NULL,c_code varchar(50) NOT NULL,c_desc…
// TstCStylStr.cpp : Defines the entry point for the console application.// 测试C风格的字符串(计算C风格字符串长度一定要算上终结符null) NY2009#include "stdafx.h"#include <stdio.h>#include <string.h>#include <io…
memset用法详解(转)
2007-01-31 20:00
<memory.h> or <string.h> memest原型 (please type "man memset" in your shell) void *memset(void *s, int c, size_t n); memset:作用是在一段内存块中填充某个给定的值,它对…
SAX应用之org.xml.sax.ContentHandler2007/05/11 10:52SAX是SIMPLE API FOR XML的缩写,它并不是由W3C官方所提出的标准,可以说是"民间"的事实标准。实际上,它是一种社区性质的讨论产物。虽然如此,在XML中对SAX的应用丝毫…
《sqlserver应用开发》1。返回限制行select top 5 name...2.列名 is null使用表达式,函数,3.在查询中使用函数; 1。字符串函数部分常用的字符串函数
函数名 描述charindex 用来寻找一个指定的字符串在另一个字符串中的起始…
一、原题 View the Exhibit and examine the description for the CUSTOMERS table. You want to update the CUST_CREDIT_LIMIT column to NULL for all the customers, where CUST_INCOME_LEVEL has NULL in the CUSTOMERS table. Which SQL statement will accomplish the…
最近忽然突发奇想,想统计一下我最经常上的网站是哪些,并且在这些网站上都停留了多久。为此决定写一个BHO插件来做这件事。
BHO(Browser Help Objects)是实现了特定接口(IObjectWithSite)的COM组件。开发好的BHO插件除了要在注册表中注册为COM Server外&…
getServletContext().getResource()引发的错误
tomcat4.1: /** * Return a URL object of a resource that is mapped to the * specified context-relative path. * * param path Context-relative path of the desired resource * * exception Malf…
Java代码 public class BinaryTree { public static void main(String[] args) { BinaryTree bt new BinaryTree(); int[] ints {12,123,21,123,1,432,23,42,3,123,124,3,5435,66,456554,435,423,42,1} ; for (int i 0; i <ints.len…