码迷,mamicode.com
首页 >  
搜索关键字:alter system check d    ( 62653个结果
C#中窗体间参数传递实现增删改的例子
此例子中传递的变量有string type,string text,储存在结构数组中;static int i储存在Sta类中(如果在外面声明,调用它老出错),里面有geti和seti函数来操纵它。各个窗体实现功能及截图:各窗体代码如下:using System;using System.Colle...
分类:Windows程序   时间:2014-05-23 10:41:47    阅读次数:550
Mediator模式
参考资料《大话设计模式》Mediator(中介者)模式:使各个对象不需要显式的相互调用,从而使其耦合松散。using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_me...
分类:其他好文   时间:2014-05-23 10:13:17    阅读次数:331
linux进程间通讯-System V IPC 信号量
UNIX 内核管理的进程自主地操作,从而产生更稳定的系统。然而,每个开发人员最终都会遇到这样的情况,即其中一组进程需要与另一组进程通信,也许是为了交换数据或发送命令。这种通信称为进程间通信(Inter-Process Communication,IPC)。System V (SysV) UNIX 规范描述了以下三种 IPC 机制,它们统称为 SysV IPC:...
分类:系统相关   时间:2014-05-22 12:49:46    阅读次数:469
职责链模式、桥接模式
参考资料《大话设计模式》职责链模式:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ds_chainofresponsibility{ class Progr...
分类:其他好文   时间:2014-05-20 12:52:03    阅读次数:328
Linux System Programming 学习笔记(五) 进程管理
1. 进程是unix系统中两个最重要的基础抽象之一(另一个是文件)A process is a running programA thread is the unit of activity inside of a processthe virtualization of memory is ass...
分类:系统相关   时间:2014-05-20 12:33:05    阅读次数:407
ndk编译jsoncpp
本例采用jsoncpp-src-0.6.0-rc2-amalgamation.tarjava调用语句 int id = 1001; String name = "Kevin"; String result = system.toBuildJson(id, name); Log.i(TAG,St...
分类:Web程序   时间:2014-05-20 12:29:01    阅读次数:387
winform学习日志(二十八)----------将汉字转化为拼音,正则表达式和得到汉字的Unicode编码
一:上图,不清楚的看代码注解,很详细了二:具体代码窗体代码using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using Sy...
分类:Windows程序   时间:2014-05-20 11:18:57    阅读次数:839
Leetcode:Same Tree
戳我去解题Given two binary trees, write a function to check if they are equal or not.Two binary trees are considered equal if they are structurally identic...
分类:其他好文   时间:2014-05-20 10:09:37    阅读次数:201
SqlHelper 简单版
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;using System.Data.SqlClient;namespace AddressBook{...
分类:数据库   时间:2014-05-20 10:08:21    阅读次数:328
变量,存储过程,触发器,事务-索引等
--SELECT TOP 3 Name,Age,Gender FROM View_Student WHERE GROUP having ORDER BY id DESC----在最终生成用户想要的数据之后,才进行排序,如果不得不排序,那么就尽可能吧消耗减到最小--ALTER VIEW View_St...
分类:其他好文   时间:2014-05-20 09:20:36    阅读次数:360
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!