码迷,mamicode.com
首页 >  
搜索关键字:con    ( 2749个结果
ADO.NET增删改查
今天学习基本的ADO,就是通过C#程序代码来操控数据库,其实说白了还是一堆函数,程序可越来越有英语课的感觉了。为了省事,不写try什么的了。首先是最基本的登录和断开连接: 1 #region 登陆数据库 2 //创建一个连接对象 3 SqlConnection con = new SqlConne....
分类:Web程序   时间:2014-08-01 10:30:31    阅读次数:553
tab切换
(function(){ var tit = $("#tab a"), con = $("#tcontent>div"), cur = 'cur'; tit.mousemove(function(){ var index = tit.index(th...
分类:其他好文   时间:2014-07-31 19:57:47    阅读次数:184
连接数据库
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data; using System.Data.SqlClient; using System.Con...
分类:数据库   时间:2014-07-31 12:07:56    阅读次数:240
CII-原子
#ifndef ATOM_INCLUDED #define ATOM_INCLUDED extern int Atom_length(const char *str); extern const char *Atom_new(const char *str, int len); extern const char *Atom_string(const char *str); extern con...
分类:其他好文   时间:2014-07-31 00:04:09    阅读次数:289
【HackerRank】 Find Digits
Find DigitsProblem StatementGiven a number you have to print how many digits in that number exactly divides that number.Input formatThe first line con...
分类:其他好文   时间:2014-07-30 11:55:13    阅读次数:250
php操作mysql小结
<?php//连接数据库//设置文档显示编码header(‘Content-type:text/html;charset=utf-8‘);if($con=mysql_connect(‘localhost‘,‘root‘,‘1234‘)){//返回连接标识符 echo‘连接成功<br>‘;}else{ echo‘连接失败<br>‘;}//选择数据库if(mysql_select_db(‘mydbtest‘)){ ec..
分类:数据库   时间:2014-07-29 15:46:29    阅读次数:234
转 C# const readonly static 比较
[csharp]view plaincopyC#中有两种常量类型,分别为readonly(运行时常量)与const(编译时常量),本文将就这两种类型的不同特性进行比较并说明各自的适用场景。工作原理readonly为运行时常量,程序运行时进行赋值,赋值完成后便无法更改,因此也有人称其为只读变量。con...
分类:其他好文   时间:2014-07-29 12:19:26    阅读次数:205
ADO.net 添加事务
protected void Button2_Click(object sender, EventArgs e) { SqlConnection con = new SqlConnection(@"Data Source=.SQLEXPRESS;database=aaaa;uid=sa;pwd=jc...
分类:Web程序   时间:2014-07-28 14:46:23    阅读次数:291
uva 10458 - Cricket Ranking(容斥+高精度)
题目连接:uva 10458 - Cricket Ranking 题目大意:给定k和n,表示有k个比赛,总共要的n分,每个比赛可以得l~r的分数,问说可以有多少种得分方式。 解题思路:容斥,可以参考Codeforces 451E. #include #include #include using namespace std; typedef long long ll; con...
分类:其他好文   时间:2014-07-28 00:06:29    阅读次数:476
去除express.js 3.5中报connect.multipart() will be removed in connect 3.0的警告
1 $ node app.js2 connect.multipart() will be removed in connect 3.03 visithttps://github.com/senchalabs/connect/wiki/Connect-3.0 for alternatives4 con...
分类:Web程序   时间:2014-07-27 10:16:22    阅读次数:246
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!