首页 软件开发 代码片段 ( Page 95 )

代码片段 8064

#SQL
MySQL (非存储过程)解决易语言难题

drop table if exists n1; create temporary table n1(num int (1)); insert into n1 values(1),…

sql
2015-11-29 427

#SQL
db2函数

DROP FUNCTION CHAR_ISO ( DATE) @ CREATE FUNCTION CHAR_ISO ( v_date DATE) RETURNS CHAR(10) …

sql
2015-11-29 479

#Shell
lpm(lighttpd,php,mysql)自动安装脚本1.01

#!/bin/bash #link:http://www.haodar.com/shell/ #极品菜鸟,人懒,半桶水 apt-get update apt-get upgrade…

2015-11-29 737

#Shell
iptables 使用教程

1.使用netstat -tu -c >dump.txt 通过分析得出主机链接的信息。 禁止主机访问外网的指定ip地址: iptables -A OUTPUT -d 178.…

2015-11-29 386

#SQL
输出字符串“SQL Server 2008”中的每一个字符及其ASCII值。

declare @len int set @len = LEN('SQL Server 2008') declare @n int set @n = 1 while @n <…

sql
2015-11-28 515

#Objective-C
iOS隐藏tableview多余的分割线

//tableview没有数据的时候不显示线 _tableView.tableFooterView = [[UIView alloc] init];

2015-11-28 534

#Python
用python从多个文件中提取有用信息到一个文件中

f0=open("STAS_FOR_mul_div.txt","r") f1=open("STAS_FOR_nqueen.txt","r") f2=open("STAS_FOR_r…

2015-11-28 907

#Ruby
Mongrel::HttpServer.new 指定处理请求的线程数

require 'rubygems' require 'mongrel' class BasicServer < Mongrel::HttpHandler def proce…

2015-11-28 519

#Objective-C
textField弹起键盘时,背景视图调整避免键盘遮挡

- (void)viewDidLoad{ ... // 1.通知中心添加观察者,监听键盘是否弹出 [[NSNotificationCenter defaultCenter]addO…

2015-11-28 701

#Python
简单的多任务mysql转xml

# -*- coding: utf-8 -*- ''' Created on 2014/12/27 @author: Yoki ''' import gevent import p…

2015-11-28 622

#Objective-C
侧滑手势ios 关于interactivePopGestureRecognizer

self.navigationController.interactivePopGestureRecognizer.enabled = YES; 这个api功能就是在Navigat…

2015-11-28 615
1 93 94 95 96 97 672