Percona XTRADB Cluster 5.6在Ubuntu Server 14.04上的安装文档,参考了官方安装文档和国外网友的安装记录才安装成功。确保可以安装成功。...
分类:
数据库 时间:
2014-05-10 04:32:46
阅读次数:
448
下面就是满足你设想的几个主程序,你还可以在实际应用中不断完善和扩充:
login.asp
' 考生验证
name=trim(request("name"))
passwd=trim(request("passwd"))
if name"" then
' 检查考生是否输入用户名和密码
Set conn = Server.CreateObject("ADODB.Co...
分类:
其他好文 时间:
2014-05-10 04:25:30
阅读次数:
276
将IP表存入SQL里的程序
写得比较粗糙,还有一点错误,不过能达到效果,请大家测试
create.asp
-----------------------------------------------------------------------
'Option Explicit
Server.Scripttimeout = 1000
On Error Resume N...
分类:
数据库 时间:
2014-05-10 04:22:32
阅读次数:
563
//////////////////////////////////////////////////////////////////////////////////////
//
file_server.c 文件传输顺序服务器示例
//////////////////////////////////////////////////////////////////////...
分类:
系统相关 时间:
2014-05-10 03:51:59
阅读次数:
358
import time
import SimpleHTTPServer
import SocketServer
BYTES_PER_SECOND=160*1024
class MyHTTPRequestHandler(SimpleHTTPServer.SimpleHTTPRequestHandler):
def do_GET(self):
"""Serve a GET re...
分类:
其他好文 时间:
2014-05-10 03:36:34
阅读次数:
276
首先需要保证PC与手机在同一局域网内或有独立公网IP, 以下以在同一局域网为例(保证手机能访问到这台PC机器):
1. PC端配置
1). 安装Fiddler
2). 开启Fiddler以下功能:
1).allow romote computer to connect.
2).decrypt https traffic
3).ignore server...
分类:
其他好文 时间:
2014-05-10 03:25:39
阅读次数:
380
Merge关键字是一个神奇的DML关键字。它在SQL Server
2008被引入,它能将Insert,Update,Delete简单的并为一句。MSDN对于Merge的解释非常的短小精悍:”根据与源表联接的结果,对目标表执行插入、更新或删除操作。例如,根据在另一个表中找到的差异在一个表中插入、更新...
分类:
数据库 时间:
2014-05-10 03:16:30
阅读次数:
363
AJAX的知识: 1:mysql_fetch_row与mysql_fetch_array的区别
mysql_fetch_row:从结果集中取得一行作为关联数组(转换成0,1,2,3小标就是数组有下标)
mysql_fetch_array:从结果集中取得一行作为关联数组,或数字数组,或二者兼...
分类:
其他好文 时间:
2014-05-10 03:15:14
阅读次数:
299
Jump Game Given an array of non-negative
integers, you are initially positioned at the first index of the array. Each
element in the array represents ...
分类:
其他好文 时间:
2014-05-10 03:13:50
阅读次数:
481
原题地址:http://oj.leetcode.com/problems/single-number-ii/题意:Given
an array of integers, every element appearsthreetimes except for one. Find that
single ...
分类:
编程语言 时间:
2014-05-10 03:01:41
阅读次数:
413