SQL server
文章平均质量分 72
jackpanlee
这个作者很懒,什么都没留下…
展开
-
基于C#语言的SQL server基本操作
step 1:建立连接 string sqlCoon = @"Data Source=PANLEE-PC;initial catalog=foodTrace;Integrated Security=True"; //数据库连接语句 SqlConnection sqlConnection = new SqlConnection(sqlCoon);//原创 2015-04-18 15:41:03 · 677 阅读 · 0 评论 -
DataTable SQL server数据呈现
private void button_Query_Click(object sender, EventArgs e) { string strConn = @"data source=PANLEE-PC;initial catalog=DB15728;integrated security=true"; SqlConnection c原创 2015-07-30 17:40:16 · 816 阅读 · 0 评论 -
C# chart
http://blog.sina.com.cn/s/blog_621e24e20101cp64.html转载 2015-07-28 23:08:30 · 609 阅读 · 0 评论 -
SQL server 数据库远程连接
SQL server 数据库远程连接: http://www.cnblogs.com/laov/archive/2012/07/19/2578088.html原创 2015-09-02 22:00:52 · 552 阅读 · 0 评论 -
SQLite
使用范例: http://hzy3774.iteye.com/blog/1691932 常见问题解决方案: 无法加载 DLL“SQLite.Interop.dll 解决方案:http://www.mzwu.com/article.asp?id=3180 Could not load file or assembly原创 2015-09-03 06:55:32 · 300 阅读 · 0 评论 -
sqlite3使用
http://yuanzhifei89.iteye.com/blog/1123870转载 2015-09-03 08:49:48 · 431 阅读 · 0 评论 -
SQL防注入
方式一: string sqlS = "select * from Info WHERE Sequence=@Sequence"; string sqlConStr = @"Data Source = PANLEE-PC\MSSQLSERVER_2; Initial Catalog = ASPNET; Persist Security Info = True; U原创 2015-11-07 22:26:34 · 526 阅读 · 0 评论