/************************************************************************* > File Name: 1.cpp > Author: > Mail: > Created Time: 2014年08月...
分类:
其他好文 时间:
2014-08-03 12:31:55
阅读次数:
208
IP windows:??ipconfig
Linux:????ifconfig
ping?-a?ip?//?show?host?name
shell通俗理解:把用户输入的命令翻译给操作系统。shell 是一个交互性命令解释器。shell独立于操作系统,这种设计让用户可以灵活选择适合自己的shell。shell让你在命令行键入命令,经过shell解释后传送给操作系统(内核)执行。 shell是一个命令处理器(command proc.....
分类:
系统相关 时间:
2014-08-02 17:52:33
阅读次数:
217
源代码:
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SQLTest
{
c...
分类:
Web程序 时间:
2014-08-02 15:35:53
阅读次数:
185
源代码:
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace SQLTest
{
c...
分类:
数据库 时间:
2014-08-02 15:34:43
阅读次数:
210
查询数据路里的数据数量:
代码:
using System;
using System.Collections.Generic;
using System.Data;
using System.Data.SqlClient;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespac...
分类:
数据库 时间:
2014-08-02 15:33:53
阅读次数:
259
Download:https://github.com/sambee/JavaMailClientWithGUI
分类:
编程语言 时间:
2014-08-02 15:15:13
阅读次数:
229
Command对象可以分成4种,SqlCommand,OleDbComman,OlbcCommand,OracleComman
属性
说明
CommandType
获取或设置Command对象要执行命令的类型
CommandText
获取或设置要对数据源执行的SQL语句或存储过程名或表名
CommandTimeOut
获取或设置...
分类:
Web程序 时间:
2014-08-01 23:10:42
阅读次数:
294
网上太多发邮件储存过程,我就不转发了,弄个简单的作为示例;
create or replace procedure Send_mail(mail_body varchar2) is
smtp_conn utl_smtp.connection;
user_name varchar2(20) := utl_raw.cast_to_varchar2(utl_encode.base64_...
分类:
数据库 时间:
2014-08-01 20:00:12
阅读次数:
384
SD总线通信是基于指令和数据比特流,起始位开始和停止位结束。SD总线通信有三个元素:1.Command:由host发送到卡设备,使用CMD线发送;2.Response:从card端发送到host端,作为对前一个CMD的相应,通过CMD线发送;3.Data:即能从host传输到card,也能从card传输到host,通过data线传输。一、Commands 以下是四种用于控制卡设备的指令类型,每个c...
分类:
其他好文 时间:
2014-08-01 19:46:42
阅读次数:
219