上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 29 下一页
摘要: sql 树 递归with SubQuery(No,Name,ParentNo) as ( select No,[Name],ParentNo from [Port_Dept] where No = '3' union all select A.No,A.Name,A.ParentNo... 阅读全文
posted @ 2014-04-23 21:20 shiningrise 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2014-04-11 14:58 shiningrise 阅读(477) 评论(0) 推荐(0) 编辑
摘要: https方式每次都要输入密码,按照如下设置即可输入一次就不用再手输入密码的困扰而且又享受https带来的极速设置记住密码(默认15分钟):git config --global credential.helper cache如果想自己设置时间,可以这样做:git config credential.helper 'cache --timeout=3600'这样就设置一个小时之后失效长期存储密码:git config --global credential.helper store补充:使用客户端也可以存储密码的。如果你正在使用ssh而且想体验https带来的高速,那么你可以这 阅读全文
posted @ 2014-04-04 21:09 shiningrise 阅读(1692) 评论(1) 推荐(0) 编辑
摘要: SELECT(case when a.colorder=1 then d.name else '' end) N'表名',a.colorder N'字段序号',a.name N'字段名',(case when COLUMNPROPERTY( a.id,a.name,'IsIdentity')=1 then '√'else '' end) N'标识',(case when (SELECT count(*)FROM sysobjectsWHERE (name in(SEL 阅读全文
posted @ 2014-02-20 20:47 shiningrise 阅读(656) 评论(0) 推荐(0) 编辑
摘要: 进入mysql命令行connect wordpressdb;update wp_options set option_value='http://newip:newport/wordpress'where option_name='siteurl';update wp_options set option_value='http://newip:newport/wordpress'where option_name='home'; 阅读全文
posted @ 2013-05-23 20:20 shiningrise 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 2. 为网卡配置静态IP地址编辑文件/etc/network/interfaces:sudo vi /etc/network/interfaces并用下面的行来替换有关eth0的行:# The primary network interfaceauto eth0iface eth0 inet staticaddress 192.168.2.1gateway 192.168.2.254netmask 255.255.255.0#network 192.168.2.0#broadcast 192.168.2.255 阅读全文
posted @ 2013-05-23 20:02 shiningrise 阅读(149) 评论(0) 推荐(0) 编辑
摘要: Cacls D:\cygwin /t /e /c /g "Administrator":fcd D:\cygwin del *.* /s/f/q 阅读全文
posted @ 2013-05-22 09:29 shiningrise 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 亲们,中国移动跨平台开发组件(英文简称UDE)有新动态咯咩\(^o^)/~本次最新版更新内容:进一步完善了可视化编辑器、GPS、陀螺仪等功能。增加了手机终端信息库、本地能力管理等新功能。最新整体安装:http://dev.10086.cn/appdown/cmcc_ude/final/CMCC_UDE_1.3.02.1618.exe说明:已安装过UDE的用户,如需升级到最新版本,请下载“插件更新包”(本次更新主要修改了本地能力管理功能、Android打包时SDK版本选择功能、以及可视化编辑器的部分控件删除时报错现象)。插件更新包下载:http://dev.10086.cn/appdown/cm 阅读全文
posted @ 2013-05-20 16:05 shiningrise 阅读(571) 评论(0) 推荐(0) 编辑
摘要: SQL数据库备份恢复助手-免安装、全兼容、多任务 http://t.cn/zYXxDXl @markhttp://sql.inethink.com/ 阅读全文
posted @ 2013-05-20 15:40 shiningrise 阅读(233) 评论(0) 推荐(0) 编辑
摘要: http://msdn.microsoft.com/zh-tw/ee818993.aspxhttps://npoi.codeplex.com/ 阅读全文
posted @ 2013-05-18 20:04 shiningrise 阅读(208) 评论(0) 推荐(0) 编辑
摘要: http://tiyu.qd15.net/ 阅读全文
posted @ 2013-05-17 16:00 shiningrise 阅读(440) 评论(0) 推荐(0) 编辑
摘要: cd C:\Program Files\Firebird\Firebird_2_5\bingbak.exe -USER "sysdba" -PAS "masterkey" -B C:\BM.FDB C:\dbbak\BM%date:~0,4%%date:~5,2%%date:~8,2%-%time:~0,2%%time:~3,2%%time:~6,2%.fbkcd C:\dbbak 阅读全文
posted @ 2013-05-17 15:51 shiningrise 阅读(431) 评论(0) 推荐(0) 编辑
摘要: ubuntukylin-themeubuntukylin-default-settingschinese-calendarindicator-china-weatherunity-china-music-scopeUbuntuKylin卸载掉ubuntukylin-theme和ubuntukylin-default-settings,就变成了Ubuntu,并且没有什么能证明它存在过。 阅读全文
posted @ 2013-05-16 20:31 shiningrise 阅读(259) 评论(0) 推荐(0) 编辑
摘要: http://www.microsoft.com/zh-cn/download/confirmation.aspx?id=22973管理工具http://www.microsoft.com/zh-cn/download/details.aspx?id=7593 阅读全文
posted @ 2013-05-14 20:25 shiningrise 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 列出所有用户表Select Name From SysObjects Where XType='U' order By NameXType='U':表示所有用户表;XType='S':表示所有系统表;3.获取所有字段名 Select Name From SysColumns Where id=Object_Id('TableName')A. 重命名表 下例将表 customers 重命名为 custs。 EXEC sp_rename 'customers', 'custs' B. 重命名列 下例将表 阅读全文
posted @ 2013-05-14 13:09 shiningrise 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 对**** 说:要求取消订单4264160的交易,并且,将我账户中的所有钱退回到我的支付宝。原因:我账户中明明有钱却完全使用我的支付宝中的钱支付,我觉得互动没有权利将交易不成功的钱扣留在互动账户里,否则,我将以任何能力所及的手段捍卫自已作为一个消费者的权益与尊严。 阅读全文
posted @ 2013-05-14 09:24 shiningrise 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 由于 Ubuntu 是基于 Debian 的 linux 操作系统,在默认的情况下,是没有超级用户(superuser, root)的,但有些系统操作必须有超级用户的权限才能进行,如手动释放内存等。在其他 linux 操作系统 (如 fedora) 下,可以使用 su 切换到超级用户。当输入 su 命令后, 系统会要求输入 root 的密码。可是,在 Ubuntu 下我们根本不知道 root 的密码是什么。这样,在 Ubuntu 下切换到超级用户需要使用其他方法,主要有两种:1) sudo -isudo 是 su 的加强版,意思是 do something as the supervisor。 阅读全文
posted @ 2013-05-13 22:26 shiningrise 阅读(799) 评论(0) 推荐(0) 编辑
摘要: Jexus Series: How to Install Jexus Web Server 5.3 on Ubuntu 13.04 This is a series of posts regarding the free Linux web server called Jexus. What is Jexus?Jexus Web Server is a free web server for Linux (it is free, but not open source). It is powered by Mono and aims to provide best support for AS 阅读全文
posted @ 2013-05-12 15:37 shiningrise 阅读(487) 评论(0) 推荐(0) 编辑
摘要: http://download.csdn.net/download/hiwcn/3665808 阅读全文
posted @ 2013-05-10 11:52 shiningrise 阅读(152) 评论(0) 推荐(0) 编辑
摘要: C:\Program Files\Microsoft SDKs\Windows\v7.0A\Bootstrapper\Packages 阅读全文
posted @ 2013-05-10 11:48 shiningrise 阅读(213) 评论(0) 推荐(0) 编辑
摘要: 更新历史:--------------------# - 更改 * - 修正 + - 新增 - - 移除 阅读全文
posted @ 2013-05-10 11:31 shiningrise 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 安装Framework3.5系统必备选择3.5的包3.5是包含2.03.0和3.5的 阅读全文
posted @ 2013-05-10 10:46 shiningrise 阅读(179) 评论(0) 推荐(0) 编辑
摘要: public class P_type { public int p_type_id { get; set; } public int parent_id { get; set; } } public class Products { public int pid { get; set; } public int p_type_id { get; set; } } static void Main(string[] args... 阅读全文
posted @ 2013-05-08 10:32 shiningrise 阅读(533) 评论(0) 推荐(0) 编辑
摘要: <!--~ 通知公告 begin~--> <div class="rightbox3 mt5"> <div class="bar1" id="CTab_6"> <a href="#CShow_6" class="s">通知公告</a> </div> <div> <div id="CShow_6" class="body"> ... 阅读全文
posted @ 2013-05-02 09:36 shiningrise 阅读(187) 评论(0) 推荐(0) 编辑
摘要: System.Data.Odbc.OdbcConnectionconn=newSystem.Data.Odbc.OdbcConnection(); stringconnStr=@"Driver={MicrosoftdBASEDriver(*.dbf)};DriverID=277;Dbq="+path+";"; 阅读全文
posted @ 2013-04-30 15:45 shiningrise 阅读(541) 评论(0) 推荐(0) 编辑
摘要: sudo -s 阅读全文
posted @ 2013-04-30 13:01 shiningrise 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 运行F-Secure SSH File Transfer 输入完IP与用户名时提示"too many authentication failures for root"错误信息.解决方法:修改了客户端的设置Edit->Setting->rofile->Connection->Authentication ,把认证方法的顺序调整成Password位于最上方即可. 阅读全文
posted @ 2013-04-30 11:30 shiningrise 阅读(368) 评论(0) 推荐(0) 编辑
摘要: WithCnn.Provider="Microsoft.Jet.OLEDB.4.0".ConnectionString="DataSource=E:\自己做的小工具\游泳录分\Release20130420\Data\Bmk.mdb".OpenEndWithsql="deletefrom[Youyong]"Cnn.Execute(sql)sql="INSERTINTO[Youyong]SELECT*FROM[Excel8.0;DATABASE="&_ThisWorkbook.FullName&&qu 阅读全文
posted @ 2013-04-26 21:08 shiningrise 阅读(222) 评论(0) 推荐(0) 编辑
摘要: [楼主] Jexus web server运行于多进程模式时需要注意的事项默认情况下,Jexuswebserver是以单进程模式运行的,当修改jws.config配置文件,把工作进程数量设置为大于1的数字时,JWS就会按指定的数量以多进程的方式并发工作。这时,需要特别注意如下两个方面:1、不要将Session保存在进程内,即web.config中的sessionState不能配置为Inproc,应该使用第三方的同一台Sessionstate服务器对session信息进行保存。如:可以配置为“<sessionStatemode="StateServer"stateCon 阅读全文
posted @ 2013-04-19 23:11 shiningrise 阅读(396) 评论(0) 推荐(0) 编辑
摘要: http://www.cnweike.cn/ 阅读全文
posted @ 2013-04-19 10:49 shiningrise 阅读(217) 评论(0) 推荐(0) 编辑
摘要: Markdown 的语法的权威介绍是 Daring Fireball 的 Markdown Syntax Documentation,不过有一些 Markdown 的实现对原本的 Markdown 语法作了扩展。本页面仅作为简单的参考,并不是对这个文档的翻译,因此懂英文的都应该去读 Markdown Syntax Documentation.最常用格式空一行(两个回车)分段行末加两个或多个空格才是真正的换行,否则正常的一个回车就像在 HTML 代码中一样,被当作空格处理插入链接: [链接文字](url)图片跟链接很像,在前面加个叹号:![alt 文字](图片 URL)段落和换行有什么区别?段落 阅读全文
posted @ 2013-04-17 18:42 shiningrise 阅读(218) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/mslove/archive/2009/07/18/1526041.htmlhttp://www.cnblogs.com/newtekboy/archive/2011/08/30/2159329.html2. 修改目录和ACL 设置用户访问权限:我们经常要修改目录和文件的访问权限,使用Cacls命令就很容易做到。下面要赋予本机用户Chenfeng对E盘下CCE目录及其所有子目录中的文件有完全控制权限。在命令提示符对话框中输入“Cacls CCE /t /e /c /g Chenfeng:f ”命令即可。 替换用户访问权限:将本机用户Chenfeng 阅读全文
posted @ 2013-04-17 13:42 shiningrise 阅读(262) 评论(0) 推荐(0) 编辑
摘要: http://ultidev.com/Forums/yaf_postst757_Creating-Visual-Studio-setup-project-bundling-UWS.aspxInstalling UltiDev Web Server Pro. 阅读全文
posted @ 2013-04-17 12:50 shiningrise 阅读(769) 评论(0) 推荐(0) 编辑
摘要: http://www.oschina.net/news/39437/kangle-3-2-0http://www.kanglesoft.com/thread-16528-1-1.html 阅读全文
posted @ 2013-04-17 09:24 shiningrise 阅读(233) 评论(0) 推荐(0) 编辑
摘要: http://system.data.sqlite.org/index.html/doc/trunk/www/downloads.wiki 阅读全文
posted @ 2013-04-15 21:42 shiningrise 阅读(788) 评论(0) 推荐(0) 编辑
摘要: protected void btnRestart_Click(object sender, EventArgs e) { HttpRuntime.UnloadAppDomain(); Alert.ShowInTop("网站已经重启"); } 阅读全文
posted @ 2013-04-15 21:41 shiningrise 阅读(234) 评论(0) 推荐(0) 编辑
摘要: 组内正在做一个项目,用的是ASP.NET的那一套。项目需要将MP3音频文件解压缩,提取其系数,这时我们用的是一个外部的EXE可执行文件。最令人头 痛的是,每当页面执行到一半的时候就会抛出一个“线程中止异常”(System.Threading.ThreadAbortException)。页面 提示如下:“/”应用程序中的服务器错误。正在中止线程。说明:执行当前Web请求期间,出现未处理的异常。请检查堆栈跟踪信息,以了解有关该错误以及代码中导致错误的出处的详细信息。异常详细信息:System.Threading.ThreadAbortException:正在中止线程。源错误:执行当前Web请求.. 阅读全文
posted @ 2013-04-15 21:30 shiningrise 阅读(485) 评论(0) 推荐(0) 编辑
摘要: http://www.chodounsky.net/bonobo-git-server/ 阅读全文
posted @ 2013-04-15 18:20 shiningrise 阅读(245) 评论(0) 推荐(0) 编辑
摘要: http://down.ictedu.net.cn/list/3_1.html教育软件 滨海魔灯1.3中文增强集成安装包[课程管理系统]2011-05-11滨海魔灯是基于Moodle1.9.X基础制作的Moodle程序,在官方Moodle上对外围的theme文件、语言包文件、editor文件夹进行了添加和修改 语言:简体中文 类型:汉化补丁 授权:免费软件 等级: php成绩分析系统[成绩管理]2011-04-14主要功能:1、查询学生的历次考试成绩,并显示名次变化曲线图;2、自动统计平均分、及格率、优秀率、最高分、最低分、最优生 ... 阅读全文
posted @ 2013-04-15 11:31 shiningrise 阅读(259) 评论(0) 推荐(0) 编辑
摘要: Spring中常用的hql查询方法(getHibernateTemplate()) 阅读全文
posted @ 2013-04-11 15:27 shiningrise 阅读(127) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 29 下一页
// 侧边栏目录 // https://blog-static.cnblogs.com/files/douzujun/marvin.nav.my1502.css