上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页
摘要: 1 程序的入口 进入main函数, 设置AppDelegate称为函数的代理 2 程序完成加载 -[AppDelegate application:didFinishLaunchingWithOptions:] 3 创建window窗口 4 程序被激活 -[AppDelegate applicati 阅读全文
posted @ 2018-09-06 16:41 cicero 阅读(540) 评论(0) 推荐(0) 编辑
摘要: asp.net 连接数据库,操作数据库主要需要两个类,一个是SqlConnection,一个是SqlCommand SqlConnection用于连接数据库,打开数据库,关闭数据库。 连接数据库需要特定格式,特定参数的字符串,如代码中写的,服务器地址,数据库名称,用户名密码,以及其他参数 SqlCo 阅读全文
posted @ 2018-09-06 10:07 cicero 阅读(10292) 评论(0) 推荐(0) 编辑
摘要: 请看 https://blog.csdn.net/monkeybrothers/article/details/78021848 阅读全文
posted @ 2018-09-06 09:47 cicero 阅读(135) 评论(0) 推荐(0) 编辑
摘要: aspx文件有如下一行代码: ASP.NET 页面中的前几行,一般是%@...%这样的代码,这叫做页面指令。用来定义ASP.NET页分析器和编译器使用的特定于该页得一些定义。在.aspx文件中使用的页面指令一般有以下几种: (1)Language: 指定页中的所有内联呈现(<%%>和<%=%>)和代 阅读全文
posted @ 2018-09-06 09:39 cicero 阅读(1762) 评论(0) 推荐(0) 编辑
摘要: 原来没有的创建的表select * into 表A form 表B where条件 原来存在的表insert into 表A select * from 表B where 条件 INSERT INTO 表A (表A中字段1,表A中字段2...)SELECT (表B中对应字段1,表B中对应字段2... 阅读全文
posted @ 2018-08-08 17:35 cicero 阅读(2597) 评论(0) 推荐(0) 编辑
摘要: set nocompatible source $VIMRUNTIME/vimrc_example.vim source $VIMRUNTIME/mswin.vim behave mswin set nobackup set noundofile set noswapfile set encoding=utf-8 set fileencodings=utf-8,chinese,latin-1 ... 阅读全文
posted @ 2018-07-30 09:29 cicero 阅读(3184) 评论(0) 推荐(1) 编辑
摘要: 本文转载,原文地址在末尾 首先了解Activity的四种状态 Running状态:一个新的Activity启动入栈后,它在屏幕最前端,处于栈的最顶端,此时它处于可见并可和用户交互的激活状态。Paused状态:当Activity被另一个透明或者Dialog样式的Activity覆盖时的状态。此时它依然 阅读全文
posted @ 2018-07-25 18:59 cicero 阅读(164) 评论(0) 推荐(0) 编辑
摘要: git 版本直接在官网下载即可:https://git-scm.com/downloads 安装后有git bash与git gui可以用。 1.在远程服务器上新建裸仓库 git init --bare newgit.git 或者利用已有git代码创建仓库 git clone --bare 已有代码 阅读全文
posted @ 2018-06-22 09:21 cicero 阅读(1151) 评论(0) 推荐(0) 编辑
摘要: 新建数据库test ,然后新增表users ,向表中插入数据 1,增加列 2,修改列类型 alter table tableName alter column columnName varchar(4000) 3,修改列名称 EXEC sp_rename 'tableName.column1' , 阅读全文
posted @ 2018-06-20 09:42 cicero 阅读(557) 评论(0) 推荐(0) 编辑
摘要: 请看https://segmentfault.com/a/1190000005795580 阅读全文
posted @ 2018-06-07 17:38 cicero 阅读(153) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 29 下一页