Option Explicit Private Declare Function GetCurrentProcess Lib "kernel32" () As Long Private Declare Function IsWow64Process Lib "kernel32" (ByVal hPr...
分类:
其他好文 时间:
2014-08-24 12:48:52
阅读次数:
188
1. 数据库导出 mysqldump --opt -u name -p dbname > backupfile.sql 2. 在Mac OS X上安装web.py环境 0)install web.py sudo pip install web.py 1) 安装mod_wsgi 下载mod_wsgi http://code.google.com/p/modws...
分类:
Web程序 时间:
2014-08-23 16:58:41
阅读次数:
250
$("#selectId option:last").prop("selected", 'selected');$("#selectId option").eq(0).attr("selected", true);
分类:
Web程序 时间:
2014-08-23 01:03:29
阅读次数:
267
unique(唯一性),primary key(not null and 唯一 unique)导出整个数据库,单个数据库,数据库下的某张表,N张表;导出数据库表结构mysqldump -u -p -d --add-drop-table>ruiy.sql;MySQL C API简单操作
分类:
数据库 时间:
2014-08-22 20:54:39
阅读次数:
271
- BIOS settings: - Thinkpadt430, BIOS settings:Config----------------------------Network:wake on LAN: AC Only,Ethernet LAN option ROM:Enable USB:usb U...
分类:
其他好文 时间:
2014-08-22 19:32:19
阅读次数:
302
首先引入js,内容如下: 1 (function($){$.fn.slides=function(option){option=$.extend({},$.fn.slides.option,option);return this.each(function(){$('.'+option.contai...
分类:
其他好文 时间:
2014-08-22 19:25:29
阅读次数:
220
转自:MYSQL常用命令1.导出整个数据库mysqldump -u 用户名 -p --default-character-set=latin1 数据库名 > 导出的文件名(数据库默认编码是latin1)mysqldump -u wcnc -p smgp_apps_wcnc > wcnc.sql2.导...
分类:
数据库 时间:
2014-08-22 19:22:29
阅读次数:
207
数据库备份类型一、热备份温备份冷备份热备份:数据读写不受影响温备份:仅可以执行读操作冷备份:离线备份、读写均终止二、物理备份逻辑备份物理备份:复制数据文件逻辑备份:将数据导出成文本文件三、完全备份增量备份差异备份完全备份:备份所有数据增量备份:仅备份上次完..
分类:
数据库 时间:
2014-08-22 11:00:16
阅读次数:
232
题目链接:http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=12&page=show_problem&problem=945Problem:In 1976 the ``Four Color Ma...
分类:
其他好文 时间:
2014-08-22 01:33:05
阅读次数:
325
//1.动态创建selectfunction createSelect(){ var mySelect = document.createElement("select"); mySelect.id = "mySelect"; document.body.appendChild(...
分类:
其他好文 时间:
2014-08-22 00:00:45
阅读次数:
239