2012年10月14日
摘要: 数据库表的作用是什么? 在关系型数据库中,所有数据的组织,管理和使用都是表为基础的。Oracle 数据库中的信息都要存放在表中,表的逻辑结构是以行列为组织结构的,它是一种逻辑结构,在数据库中并不存在。 数据库表定义主键的关键字是___primary key;定义外键的关键字是__references_______。 定义一个字段不可为空的关键字是___not null_______,检查约束... 阅读全文
posted @ 2012-10-14 22:41 163com 阅读(206) 评论(0) 推荐(0) 编辑
摘要: 数据库表的作用是什么? 在关系型数据库中,所有数据的组织,管理和使用都是表为基础的。Oracle 数据库中的信息都要存放在表中,表的逻辑结构是以行列为组织结构的,它是一种逻辑结构,在数据库中并不存在。 数据库表定义主键的关键字是___primary key;定义外键的关键字是__references_______。 定义一个字段不可为空的关键字是___not null_______,检查约束... 阅读全文
posted @ 2012-10-14 22:40 163com 阅读(169) 评论(0) 推荐(0) 编辑
摘要: C#线程的使用简单示例代码如下: using System;using System.Threading; class Program{static void Main(string[] args){Thread.CurrentThread.Name = "主线程";Thread thread1 = new Thread(new ThreadStart(Program.Output));threa... 阅读全文
posted @ 2012-10-14 22:38 163com 阅读(152) 评论(0) 推荐(0) 编辑
摘要: using System.Xml;//初始化一个xml实例XmlDocument xml=new XmlDocument(); //导入指定xml文件xml.Load(path);xml.Load(HttpContext.Current.Server.MapPath("~/file/bookstore.xml")); //指定一个节点XmlNode root=xml.SelectSingleN... 阅读全文
posted @ 2012-10-14 22:37 163com 阅读(109) 评论(0) 推荐(0) 编辑
摘要: 关于C#进程的一些学习,包含了进程的各个方面的知识,欢迎阅读 C#进程学习,本机中的所有进程的监测与控制 转载请注明出处:http://www.cnblogs.com/aaaaa/ using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Sy... 阅读全文
posted @ 2012-10-14 22:32 163com 阅读(357) 评论(0) 推荐(0) 编辑
  2012年9月27日
摘要: 数据库表的作用是什么? 在关系型数据库中,所有数据的组织,管理和使用都是表为基础的。Oracle 数据库中的信息都要存放在表中,表的逻辑结构是以行列为组织结构的,它是一种逻辑结构,在数据库中并不存在。 数据库表定义主键的关键字是___primary key;定义外键的关键字是__references_______。 定义一个字段不可为空的关键字是___not null_______,检查约束... 阅读全文
posted @ 2012-09-27 15:01 163com 阅读(159) 评论(0) 推荐(0) 编辑
  2012年9月25日
摘要: C#线程的使用简单示例代码如下: using System;using System.Threading; class Program{ static void Main(string[] args) { Thread.CurrentThread.Name = "主线程"; Thread thread1 = new Thread(new ThreadStar... 阅读全文
posted @ 2012-09-25 17:25 163com 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 代码如下,谢谢阅读,控制台应用程序: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.IO;using System.Xml.Linq; namespace LinqQueryDemo{ class Student { public... 阅读全文
posted @ 2012-09-25 17:21 163com 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 示例代码如下,控制台应用程序: using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace LambdaExpressionDemo{ delegate void AddHandler(int a, int b); class Program { ... 阅读全文
posted @ 2012-09-25 17:17 163com 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 示例代码如下,控制台应用程序: using System;using System.Collections.Generic;using System.Linq;using System.Text; namespace AnonymousTypeDemo{ class Program { static void Main(string[] args) { ... 阅读全文
posted @ 2012-09-25 17:14 163com 阅读(144) 评论(0) 推荐(0) 编辑