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

代码片段 8064

#SQL
用于校验 SQL Server 数据库备份的脚本

USE MASTER -- Add a new backup device -- Ensure that the SQL Server can read from the phys…

sql
2015-12-13 485

#Python
查询oralce数据库返回数据字典

def sqlDiy(self, sql): db = Oradao().connect() cursor = db.cursor() cursor.execute(sql) re…

2015-12-13 707

#HTML
CSS+HTML+JQuery简单菜单

<style type="text/css"> body,ul,li,a{ margin:0; padding:0 } ul,li{ list-style-type:n…

2015-12-13 565

#HTML
网站前台商品展示HTML实现

</div> <getproductclass pid="0" classid="1643"> <div class="mboxs"> <…

2015-12-13 958

#Ruby
Ruby 连接并登录到 FTP 服务器

require 'net/ftp' require 'uri' uri = URI.parse('ftp://ftp.ruby-lang.org/') Net::FTP.open(…

2015-12-13 480

#HTML
在网页中制作动画

<!DOCTYPE html> <html> <head> <title></title> <style type…

2015-12-13 190

#APS/Basic
实现电费缴纳

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/x…

2015-12-13 1,016

#Objective-C
iOS数据类型转换 NSData转NSString,Byte,UIImage

1,NSData 与 NSString   NSData --> NSString   NSString *aString = [[NSString alloc] initW…

2015-12-13 526

#Objective-C
生成plist

<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIS…

2015-12-13 957

#Shell
命令行十六进制编辑器HexTool修改bcwav

@echo off ::Usage: hextool InputFile.bin Address Length HexNumber ::用UltraEdit之类16进制编辑打开,在…

2015-12-12 1,010

#Shell
安装brew

ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"

2015-12-12 500
1 80 81 82 83 84 672