上一页 1 2 3 4 5 6 ··· 16 下一页
摘要: 该文讲解 C# 对 mysql 数据库进行增删改查操作。 1. 安装数据库,注意要安装 Connector NET。 2. 引入 MySql.Data.dll,添加项目引用,该文件一般位置为:C:\Program Files (x86)\MySQL\Connector NET xx\Assembli 阅读全文
posted @ 2018-08-17 16:16 夜雨声烦丶 阅读(522) 评论(0) 推荐(0) 编辑
摘要: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.... 阅读全文
posted @ 2018-08-15 14:10 夜雨声烦丶 阅读(2210) 评论(0) 推荐(0) 编辑
摘要: 1、使用Visual Studio 2013创建新项目 2、创建一个主窗体和4个子窗体 3、创建一个数据库、一个表、一个存储过程 4、在配置文件里添加数据库连接字符串 5、真正的编码工作。 第一步:创建新项目,一张图片抵一万字!看图说话,呵呵。。 第二步:创建4个子窗体,名称分别是formComma 阅读全文
posted @ 2018-08-14 10:16 夜雨声烦丶 阅读(13938) 评论(3) 推荐(2) 编辑
摘要: connect_error) { die('Connect Error (' . $mysqli->connect_errno . ') ' . $mysqli->connect_error); } $output = array(); $user_by= $_POST['user_by']; $uid = $_POST["uid"]; if (empty($... 阅读全文
posted @ 2018-04-18 10:41 夜雨声烦丶 阅读(229) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/michael_ouyang/article/details/54700871 阅读全文
posted @ 2018-03-09 09:20 夜雨声烦丶 阅读(90) 评论(0) 推荐(0) 编辑
摘要: 基础说明: 外阴影:box-shadow: X轴 Y轴 Rpx color; 属性说明(顺序依次对应): 阴影的X轴(可以使用负值) 阴影的Y轴(可以使用负值) 阴影模糊值(大小) 阴影的颜色 内阴影:box-shadow: X轴 Y轴 Rpx color inset; 默认是外阴影 内阴影:ins 阅读全文
posted @ 2018-02-08 10:13 夜雨声烦丶 阅读(333) 评论(0) 推荐(0) 编辑
摘要: console.log 阅读全文
posted @ 2018-01-09 10:28 夜雨声烦丶 阅读(177) 评论(0) 推荐(0) 编辑
摘要: {:U('Rediangupiao/index')} 阅读全文
posted @ 2018-01-09 10:07 夜雨声烦丶 阅读(75) 评论(0) 推荐(0) 编辑
摘要: <!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta name="viewport" content="initial-scale=1.0, 阅读全文
posted @ 2017-12-22 16:39 夜雨声烦丶 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 源文件声明规则 在本节的最后部分,我们将学习源文件的声明规则。当在一个源文件中定义多个类,并且还有import语句和package语句时,要特别注意这些规则。 一个源文件中只能有一个public类 一个源文件可以有多个非public类 源文件的名称应该和public类的类名保持一致。例如:源文件中p 阅读全文
posted @ 2017-11-30 20:40 夜雨声烦丶 阅读(184) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 16 下一页