using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi...
分类:
其他好文 时间:
2014-06-21 08:14:06
阅读次数:
176
客户端代码function login(type) { $.ajax({ type: "post", url: "logindo.aspx", data: { user: $("#name").val(),//对应的值 ...
分类:
其他好文 时间:
2014-06-21 07:36:58
阅读次数:
172
EF分为三类:db first:首先建立数据库,然后通过ADO.Net Entity Data Model项目建立.edmx文件,这是一个xml文件主要作用就是映射类和数据表model first:首先建立.edmx文件,映射类和数据表的关系,然后生成代码code first:首先写代码,如实体对象...
分类:
其他好文 时间:
2014-06-21 06:24:41
阅读次数:
192
All people seem to need data processing( Application presentation session transport network data link physic )host : end device ( PC Server )switch : ...
分类:
其他好文 时间:
2014-06-21 00:01:08
阅读次数:
493
WSS logging database grows very fast and it cause the storage problem most of the time in sharepoint server 2010.To reduce the size of the logging dat...
分类:
数据库 时间:
2014-06-20 22:04:05
阅读次数:
333
select * from opendatasource('SQLOLEDB' , 'Data Source=172.27.xxx.xxx; User ID=Admin;Password=xxx').[数据库名].dbo.表名备注:数据名的中括号和dbo一定要写,不然找不到
分类:
数据库 时间:
2014-06-20 21:33:59
阅读次数:
230
题目:实现ComplexLinNode* Clone(ComplexLinNode*pHead),复制一个复杂链表。分析:必须先pnext后才能进行m_AnyNodestruct ComplexLinNode{ char m_data; ComplexLinNode* m_NextNod...
分类:
其他好文 时间:
2014-06-20 20:01:33
阅读次数:
256
Bulk Insert命令具体 BULK INSERT以用户指定的格式复制一个数据文件至数据库表或视图中。 语法:Sql代码 BULKINSERT[['database_name'.]['owner'].]{'table_name'FROM'data_file'} WITH( [BATCHSIZE[...
分类:
其他好文 时间:
2014-06-20 18:50:45
阅读次数:
265
using System; using System.IO;//用于文件存取 using System.Data;//用于数据访问 using System.Drawing;//提供画GDI+图形的基本功能 using System.Drawing.Text;//提供画GDI+图形的高级功能 usi...
oracle定时备份数据库,以及删除7天前备份的数据。1、创建存放备份目录:mkdir /home/oracle/data_backupmkdir /home/oracle/log_backup2、编辑脚本oracle_backup.sh,内容如下:#!/bin/shexport ORACLE_BA...
分类:
数据库 时间:
2014-06-20 18:41:58
阅读次数:
243