QPainter::begin: Paint device returned engine
== 0, type: 2QPainter::setCompositionMode: Painter not activeQPainter::end:
Painter not active, aborted一...
分类:
其他好文 时间:
2014-05-17 00:14:44
阅读次数:
479
一、sql事务1.什么是事务:事务是一个不可分割的工作逻辑单元,在数据库系统上执行并发操作时事务是做为最小的控制单元来使用的。他包含的所有数据库操作命令作为一个整体一起向系提交或撤消,这一组数据库操作命令要么都执行,要么都不执行。2.事务的语句开始事物:BEGIN
TRANSACTION提交事物:C...
分类:
数据库 时间:
2014-05-16 21:45:24
阅读次数:
383
--存储过程名和参数,参数中in表示传入参数,out标示传出参数,inout表示传入传出参数create
procedure p_procedurecode(in sumdate varchar(10)) begin declare v_sql
varchar(500); --需要...
分类:
数据库 时间:
2014-05-16 20:51:07
阅读次数:
486
if exists(select * from master.sys.sysprocesses
where spid in (select blocked from
master.sys.sysprocesses))begin---确定进程被锁住的其他资源select spid 进程,STATUS ...
分类:
其他好文 时间:
2014-05-16 06:38:48
阅读次数:
329
//只扩展为wstring,不考虑编码
std::wstringString2WString(conststd::string&str)
{
std::wstringwstr(str.length(),L‘‘);
std::copy(str.begin(),str.end(),wstr.begin());
returnwstr;
}
//只拷贝低字节至string中
std::stringWString2String(conststd::wstring&ws..
分类:
其他好文 时间:
2014-05-14 15:58:11
阅读次数:
262
令\[S_i=\sum_{k=1}^n k^i
m^k\]我们有\[\begin{eqnarray*}(m-1)S_i & = & mS_i - S_i \\& = &
\sum_{k=1}^n k^i m^{k+1} - \sum_{k=1}^n k^i m^k \\& = & \sum_{k=2...
分类:
其他好文 时间:
2014-05-14 10:45:13
阅读次数:
357
$\bf命题:$设$\int_a^{ + \infty } {f\left( x \right)dx}
$收敛,若$\lim \limits_{x \to \begin{array}{*{20}{c}} {{\rm{ + }}\infty }
\end{array}} f\left( x \righ...
分类:
其他好文 时间:
2014-05-14 09:49:48
阅读次数:
341
设\[\mathop {\lim }\limits_{x \to
\begin{array}{*{20}{c}}{{a^ + }}\end{array}} f\left( x \right) = \mathop {\lim
}\limits_{x \to \begin{array}{*{20}{c}...
分类:
其他好文 时间:
2014-05-14 08:33:45
阅读次数:
310
设\[\mathop {\lim }\limits_{x \to
\begin{array}{*{20}{c}}{{a^ + }}\end{array}} f\left( x \right) = \mathop {\lim
}\limits_{x \to \begin{array}{*{20}{c}...
分类:
其他好文 时间:
2014-05-14 08:32:48
阅读次数:
245
create or replace function get_sal1(id
employees.employee_id%type) return number is sal employees.salary%type;begin sal
:= 0; select salary into s...
分类:
数据库 时间:
2014-05-13 19:41:58
阅读次数:
456