****************************************DBUtil工具包获取一个连接***********************************************
package com.xlc.utils;
import java.io.FileInputStream;
import java.io.InputStream;
import...
分类:
数据库 时间:
2016-05-12 22:23:56
阅读次数:
224
今天是上班第二天,今天老大安排我们做了一个简单的WinForm登陆界面。原来连接数据库都是用老师给的SQLHelper类来写的,今天自己尝试着写一下,虽然不难但是还是遇到了些问题。 连接字符串的7种方式只尝试了两种,一种是本地连接,一种sa连接。 今天老大给很多关于团队项目的经验。比如1.记住常见的 ...
分类:
其他好文 时间:
2016-04-21 23:35:34
阅读次数:
173
SqlHelper类 作用:充当一个助人为乐的角色。这个类呢,任何类都可以调用。例如:数据的“增, 删, 改 ,查”,数据库的链接,等等。 这个类是静态类,只要用类名.方法名(),就可以使用该方法的功能了。 作用:简化代码,提高性能,提高运行效率。 string sql = "select * fr ...
分类:
其他好文 时间:
2016-03-30 19:43:04
阅读次数:
719
1.SQLHelper类 例如: 2.MyTool类(DataTable转List<>) 例如: 3.DGMsgDiv类(可生成自己的控件) 例如: ...
分类:
其他好文 时间:
2016-03-29 19:30:55
阅读次数:
240
1.使用Connection连接数据库的步骤: (1).添加命名空间 System.Data.SqlClient(注意:初学者经常会忘记) (2)定义连接字符串。连接SQL Server 数据库时: server=服务器名;database=数据库名;uid=用户名;pwd=密码;例如:要连接本机上 ...
分类:
数据库 时间:
2016-03-28 21:54:10
阅读次数:
347
1.App.Config(连接字符串): 说明:现在我们的连接字符串不再保存在一个静态的字段中,而是保存在了一个名称为App.Config文件中,该文件必须在UI层添加,但是我们知道SQLHelper是在DAL层创建的。你在SQLHelper类中通过ConfigurationManager来解析Ap
分类:
移动开发 时间:
2016-03-22 06:15:14
阅读次数:
161
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.SqlClient; using System.Data; /// <summary> //
分类:
数据库 时间:
2016-03-04 19:18:51
阅读次数:
303
参考资料来源:http://www.cnblogs.com/liwuyi/archive/2012/05/16/2505461.html
分类:
数据库 时间:
2016-02-18 11:48:56
阅读次数:
197
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.SqlClient; using System.Data; /// <summary> //
分类:
数据库 时间:
2016-02-17 12:47:16
阅读次数:
231
简单的SQLHelper类 1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 using Sy
分类:
数据库 时间:
2016-02-15 18:14:32
阅读次数:
235