E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
routine
MYSQL存储过程与函数
[characteristic ...]
routine
_body CREATE
webcode
·
2012-05-25 00:00
Mysql存储过程
Socket I/O模型之重叠I/O(overlapped I/O)--完成例程方式
C++代码// write by larry // 2009-8-20 // This is a server using overlapped IO(completion
routine
).
qiulinwoaini
·
2012-05-04 11:00
socket
IO
Stream
null
library
asynchronous
Windows驱动编程 文件读写 以及注册表操作
C++代码NTSTATUSZwReadFile(IN HANDLEFileHandle,IN HANDLEEvent OPTIONAL,IN PIO_APC_
ROUTINE
ApcRoutine
·
2012-04-16 11:00
编程
windows
Microsoft
null
buffer
attributes
linux多线程学习笔记二---基本线程编程
一,线程常见函数介绍#include #include void*thread_
routine
(void*arg) { pthread_ttid=pthread_self(); printf("thread1sayhello
kkxgx
·
2012-04-09 20:00
JOIN
thread
多线程
linux
null
存储
pthread
intpthread_create( pthread_t*tid, constpthread_attr_t*attr, void*(*start_
routine
maikforever
·
2012-03-23 11:00
数据结构
struct
null
delete
Signal
destructor
MySql的存储过程学习小结 附pdf文档下载
存储过程是一种存储在数据库库中的程序(就像正规语言里的子程序一样),准确的来说,MySql支持的“
routine
(例程)”有两种:一是我们说的存储过程,二是在其它sql语句中可以返回值的函数(使用起来和
·
2012-03-23 01:17
Java 读取硬盘Serial Number[转]
(s): Varia When you need to know hardware details, Java is not the best tool unless you call a JNI
routine
seawavecau
·
2012-03-22 13:00
number
do_fork()浅析
linux-2.6.36.3/* * Ok,thisisthemainfork-
routine
. * *Itcopiestheprocess,andifsuccessfulkick-starts *itandwaitsforittofinishusingtheVMifrequired
lihenair
·
2012-03-14 11:00
thread
linux
NetWork
Signal
Descriptor
NameSpaces
MySQL入门很简单-学习笔记 - 第14章 存储过程和函数
[characteristic...]
routine
_body procedure发音[prə'si:dʒə] proc_parameter IN|OUT|INOUTparam_nametypech
晨曦之光
·
2012-03-09 15:00
线程问题的小总结
createthread创建线程的时候,出现了一个错误,那就是:cannotconvertparameter3from'DWORD(__cdecl*)(LPVOID)'to'LPTHREAD_START_
ROUTINE
herostarone
·
2012-03-07 23:00
ALV数据导出后缺位问题解决
对于字段对应的域Convers.
routine
=ALPHA,也就是有前导零的字段,比如供应商号、商品号、客户号、考核组织等。
user714
·
2012-02-24 12:00
pthread_cleanup_push/pop
voidpthread_cleanup_push(void(*
routine
)(void*),void*arg);voidpthread_cleanup_pop(intexecute);//这里的int
HDUTigerkin
·
2012-01-09 11:00
c
null
fun
WinixJ---kernel/init.s文件详解
WinixJ---kernel/init.s文件详解这个文件是从loader真正跳入内核后的
routine
。
myjfm
·
2011-12-20 00:00
pthread API
intpthread_create( pthread_t*tid, constpthread_attr_t*attr, void*(*start_
routine
lijiang13466672879
·
2011-12-19 17:00
数据结构
api
null
delete
Signal
destructor
Pthread编程手册
intpthread_create( pthread_t*tid, constpthread_attr_t*attr, void*(*start_
routine
鹰击长空
·
2011-12-05 07:00
CALL SYMPUT
Routine
CALLSYMPUT(macro-variable,value);macro-variablecanbeoneofthefollowingitems:acharacterstringthatisaSASname,enclosedinquotationmarks.Forexample,toassignthecharacterstringtestingtomacrovariableNEW,submi
yugao1986
·
2011-12-01 20:00
String
input
character
reference
variables
compilation
Pthread编程基础
intpthread_create( pthread_t*tid, constpthread_attr_t*attr, void*(*start_
routine
scut1135
·
2011-11-29 19:00
thread
多线程
编程
application
Signal
destructor
DFSMS之ACS介绍
ACS
routine
简介ACS是“自动类选择”的意思。
leowzy
·
2011-11-16 09:00
DFS
用VC写线程
HANDLE hWorkThread; hWorkThread=CreateThread(NULL, 0, (LPTHREAD_START_
ROUTINE
)StartWorkThread,
jiagou
·
2011-11-10 09:00
线程
用VC写线程
HANDLE hWorkThread; hWorkThread=CreateThread(NULL, 0, (LPTHREAD_START_
ROUTINE
)StartWorkThread,
jiagou
·
2011-11-10 09:00
线程
手把手教你玩转网络编程模型之完成例程(Completion
Routine
)篇(下)
四. 完成例程的实现步骤基础知识方面需要知道的就是这么多,下面我们配合代码,来一步步的讲解如何亲手实现一个完成例程模型(前面几步的步骤和基于事件通知的重叠I/O方法是一样的)。【第一步】创建一个套接字,开始在指定的端口上监听连接请求和其他的SOCKET初始化全无二致,直接照搬即可,在此也不多费唇舌了,需要注意的是为了一目了然,我去掉了错误处理,平常可不要这样啊,尽管这里出错的几率比较
ddl007
·
2011-11-01 23:00
编程
Stream
socket
IO
网络
null
手把手教你玩转网络编程模型之完成例程(Completion
Routine
)篇(上)
手把手教你玩转网络编程模型之完成例程(CompletionRoutine)篇前 言记得写这个系列的上一篇文章的时候已经是四年前了,准确的说是四年半以前了,翻开我尘封已久的IO模型里面的“完成例程”的实现方式及示例代码。本文凝聚着笔者心血,如要转载,请指明原作者及出处,谢谢!不过代码写得不好,欢迎改进,而且没有版权,请随便散播、使用。OK,Let’sgo! Havefun! 本文配套的示例源码下载
ddl007
·
2011-11-01 23:00
编程
windows
socket
网络
服务器
Sockets
DB2 sql存储过程基础
要学这个先得弄明白另外一个概念:
routine
,这个一般翻译成“例程” >>
routine
:存在server端,按应用程序逻辑编写的,可以通过client或者其他
routine
调用的数据库对象
king114963349
·
2011-10-27 16:00
sql
db2
代码大全读后杂记-02 为啥创建子程序(方法,函数)
PS:代码大全中的子程序(
routine
)就是C++中的函数(function),Java中的方法(method)~
glutinit
·
2011-10-27 15:00
函数
在Linux中设置线程的优先级
如何在Linux中设置线程的优先级我们使用intpthread_create(pthread_t*thread,constpthread_attr_t*attr,void*(*start_
routine
vividonly
·
2011-10-25 08:00
thread
linux
struct
测试
进程创建之do_fork
/* *Ok,thisisthemainfork-
routine
. * *Itcopiestheprocess,andifsuccessfulkick-starts *itandwaitsforittofinishusingtheVMifrequired
SunnyBeiKe
·
2011-10-18 21:00
thread
struct
report
user
UP
permissions
小题大做之MySQL 5.0存储过程编程入门
[characteristic...]
routine
_body proc_parameter
胡晅晖
·
2011-10-11 10:00
pthread_create
CreateThread Syntax:#include intpthread_create(pthread_t*thread,constpthread_attr_t*attr, void*(*start_
routine
kiddy19850221
·
2011-09-29 20:00
thread
function
user
null
Parameters
attributes
Gstreamer 工具使用(二)
两种模式需要实作的
routine
不同,在对资料的操作(manipulation)上的重点也不一样
android_lee
·
2011-09-19 22:00
Winform应用程序的单一例程
在做WinFrom开发的时候,很多时候我们想只有一个例程(
routine
)在运行。就像是设计模式中的SinglePattern,其原理大致相同。
OfficialYoung
·
2011-09-13 14:47
单例模式
职场
休闲
应用程序的单例
激活窗口
MFC画图 :画数字
画图部分在一个线程中:1,创建线程:HANDLEm_hThread;DWORDm_nID;intindex;m_hThread=CreateThread(NULL,0,(LPTHREAD_START_
ROUTINE
netanimals
·
2011-09-09 17:00
null
mfc
MySQL入门很简单-学习笔记 - 第14章 存储过程和函数
[characteristic...]
routine
_bodyprocedure发音[prə'si:dʒə]proc_parameterIN|OUT|INOUTparam_nametypecharacteristic
KimSoft
·
2011-09-09 15:15
DB.MySQL
MySQL入门很简单-学习笔记 - 第14章 存储过程和函数
[characteristic...]
routine
_body procedure 发音 [prə'si:dʒə] proc_parameter IN|OUT|INOUT p
61party
·
2011-09-09 15:00
mysql
MySQL入门很简单-学习笔记 - 第14章 存储过程和函数
[characteristic...]
routine
_body procedure发音[prə'si:dʒə] proc_parameter IN|OUT|INOUTparam_nametypech
KimSoft
·
2011-09-09 15:00
sql
mysql
list
search
存储
Windows网络编程:Complete
Routine
的基本使用
Windows网络编程:CompleteRoutine的基本使用CompleteRoutine的基本使用,下面是一个简单的例子#include #include #pragma comment(lib, "ws2_32.lib")#define LISTEN_PORT 5080#define BUFF_SIZE 256void CALLBACK WorkerRoutine(DWORD erro
上善若静水
·
2011-09-08 11:00
Linux C线程池实现
三个文件 1 tpool.h typedef struct tpool_work { void (*
routine
)(void *);
kenby
·
2011-09-08 00:00
c
linux
线程池
pthread
专题 9 线程
线程的创建与中断函数原型:pthread_create(thread,attr,start_
routine
,arg)pthread_exit(status)pthread_attr_init(attr)
fuyajun01
·
2011-08-28 17:00
JOIN
thread
null
Signal
structure
variables
pthread
pthread_create.htmlNAMEpthread_create-threadcreation SYNOPSIS#includeintpthread_create(pthread_t*thread,constpthread_attr_t*attr, void*(*start_
routine
zhanglibin_1222
·
2011-08-27 19:17
职场
pthread
休闲
pthread
pthread_create.htmlNAMEpthread_create-threadcreationSYNOPSIS#includeintpthread_create(pthread_t*thread,constpthread_attr_t*attr,void*(*start_
routine
zhanglibin_1222
·
2011-08-27 19:17
职场
pthread
休闲
_tprintf printf printf wprintf _stprintf sprintf sprintf swprintf
TCHAR.H
Routine
_UNICODE & _MBCS Not Defined _MBCS Defined _UNICODE Defined _tprintf printf
whyabc
·
2011-08-22 08:00
printf
DB2存储过程快速入门
要学这个先得弄明白另外一个概念:
routine
,这个一般翻译成“例程”>>
routine
:存在server端,按应用程序逻辑编写的,可以通过client或者其他
routine
调用的数据库对象.>3种类型
此人伤不起
·
2011-08-15 18:11
db2
职场
存储
教程
休闲
ABAP中Conversion
Routine
示例
在SAP的Domain定义中,OutputLength下面有个Convers.
routine
的标识,这是SAP用来进行输入输出转换的。
zhongguomao
·
2011-08-11 15:00
mysql存储过程和函数
[characteristic...]
routine
_body 这里的参数类型可以是INOUTINO
tianmo2010
·
2011-08-07 15:00
sql
mysql
null
存储
insert
variables
BW:对于非法字符的控制
这个解决办法有这么几种: 1、直接改PSA PSA可以修改,可是这样治标不治本,顶多是我们这边数据上载正常了,可是数据跟业务上的录入还是有差别 2、在转换中写Start
Routine
lzkyo
·
2011-08-04 17:00
非法字符
MySQL用户管理
privilege): CREATE DROP ALTER DELETE INDEX INSERT SELECT UPDATE CREATE VIEW SHOW VIEW ALTER
ROUTINE
helloklzs
·
2011-08-04 10:00
mysql
privileges
SAP BW 例程(
Routine
)【开始例程、关键值或特性的例程、结束例程】
定义 可以使用例程定义关键值或特性的复杂的转换规则. 例程是本地 ABAP 类,它们包括预定义的定义和实施范围.进站和出站参数的 TYPES及方法签名都存储在定义范围中.实际例程创建于实施范围中.使用该方法,可以分配 ABAP 对象.在生成期间,把此方法嵌入到转换程序中. 转换包括以下类型的例程: 启动例程 关键值或
lzkyo
·
2011-08-01 13:00
SAP
pthread_once 函数
blog/item/4deb8f2b1707bf221f3089a6.html 仅执行一次的操作intpthread_once(pthread_once_t*once_control,void(*init_
routine
ixidof
·
2011-07-29 18:00
mysql error 1370 解决办法
调用存储过程时报了下面的错误 ERROR 1370 (42000): execute command denied to user backupAccount@'localhost' for
routine
babaoqi
·
2011-07-19 17:00
mysql
创建线程时的几个陷阱
#include#include#include void*start_
routine
(void*param){ char*str=(char*)param;
cjsycyl
·
2011-07-18 11:00
JOIN
thread
多线程
测试
null
产品
绝望主妇单词集
never anything newsworthy about my life performed my chores ran my errands quietly polishing the
routine
mistbow
·
2011-06-29 12:00
编程
工作
struts
上一页
18
19
20
21
22
23
24
25
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他