- 浏览: 64670 次
- 性别:
- 来自: 北京
最新评论
-
vanillalyx:
http://www.zxbc.cn/html/2008011 ...
sql游标和动态游标 -
vanillalyx:
2009年7月14日21:06:07非材质说明非标准说明非材质 ...
catalog 工作日志 -
vanillalyx:
2009年7月14日20:19:14input text框按回 ...
catalog 工作日志 -
vanillalyx:
2009年7月14日16:27:57搜索:材质 or 标准1. ...
catalog 工作日志 -
vanillalyx:
//right 没有加对象名,直接用数据库库字段名称
que ...
Hibernate 工作学习笔记
文章列表
$dbca //启动安装图形界面
1.选General Purpose
2.Name oradb
password aaa
3
storage mechanism:filesystem
file location variables:
ORACLE_BASE1 /u01
ORACLE_BASE2 /u02
在这两个目录下分别建 /u01/arch /u02/arch
4 specify 不选
选 enable
5 Menory
选custom
选Manual
share pool:
全部改为M单位
256 48 150 150 20
6 character sets
choo ...
- 2009-04-08 16:01
- 浏览 855
- 评论(0)
//功能:复制一行,这一行具有class='tr_data' 并且隐藏起来
function addTr(){
var o = $(".tr_data").eq($('.tr_data').length - 1)
.clone() // 复制第一行
.insertBefore($('.tr_data').eq($('.tr_data').length - 1));
o.show();
o.find('.year').each(function(){
addYearList(this);
...
- 2009-04-04 10:07
- 浏览 934
- 评论(2)
经验,我学东西还停留在单纯的积累经验之中,貌似有些工作就是需要经验积累。。。
因为有多些经历,经验,我可以在我和partner的工作中,我找到问题,然后教他,让他去修改,少少满足感吧。。希望他不要看到我这句话,呵呵,或者不要在意。
——————————————
<input type="submit" onclick="checkForm();">
在这里写检验函数,如果检验失败,会把原来的数据失去。。。。。
应该改成在form的属性里调用
<form onsubmit="return checkForm();" ...
- 2009-04-03 11:25
- 浏览 950
- 评论(0)
错误
Linking...
client.obj : error LNK2001: unresolved external symbol _send@16
client.obj : error LNK2001: unresolved external symbol _connect@12
client.obj : error LNK2001: unresolved external symbol _htons@4
client.obj : error LNK2001: unresolved external symbol _closesocket@4
client.obj : error LNK ...
- 2009-04-01 15:50
- 浏览 1442
- 评论(0)
1 新建虚拟机,选custom,其他默认
2 网卡,bridge 可以听到外面的广播
host-only 本机与虚拟机间通信
没有说到的,next 就ok了
1.
手动分区:主要注意分区的大小,因为安装一些软件会有所要求,如Oracle
/ 1024
/boot 1024
file system type :swap 16384
/home 8192
/tmp 8192
/usr 8192
/var 8192
/opt the rest
2. no firewall
enable selinux :disabled
3 language :choose all Chinese
...
- 2009-04-01 11:04
- 浏览 785
- 评论(0)
安装
顺序
1. JDK
2. Tomcat (先决条件JDK)
3. eclipse (先决条件JDK)(svn如果在window-)show view –》other没有看到,则需要安装一个svn插件,subeclipse-site-1.2.4.zip 直接解压覆盖到eclipse安装文件夹,重启即可)
还没有装svn之前,用原来的资源库,会出现not support java 5.0……的错,无法把项目和server关联起来。
4. sqlserver 和补丁(解压后安装,不删除解压文件)
(然后新建sql注册)
- 2009-03-31 14:52
- 浏览 1138
- 评论(1)
6. 编程输出如下图形:
*
*****
*********
*************
*****************
*********************
/*
title:3-6
input: n lines
output: 金字塔*
*/
#include <iostream>
using namespace std;
void main()
{
int n;//n lines
int mid,count;
int i,j;
cout<<"please input ...
- 2009-03-27 14:59
- 浏览 1026
- 评论(4)
apache的安装,配置和启动
下载:www.apache.com
上传到,/usr/local/
tar -zxvf 文件名
./configure --prefix=/usr/local/apache
make
make install
(linux下的解压过后的安装包如果有configure这个可执行文件,都这样安装)
配置
vi /etc/httpd/conf/httpd.conf
Timeout:#最大超时时间
MaxKeepAliveRequests:#一个客户端连接同时能发出的最大请求
MaxClients#允许同时连接客户的数量,如果使用期间出现大量拒绝客户请求,则增大,如果 ...
- 2009-03-19 09:27
- 浏览 958
- 评论(1)
1.未连接外部网络——host-only方式
vmware :edit-》virtual network setting
automatic bridging : 不选中
虚拟机的网卡选择host-only
宿主机查询ipconfig vmnet1 的ip
虚拟机中设置ip网段和vmnet1相同,可以用netconfig命令
2.连接外部网络的情况——bridged方式
vmware :edit-》virtual network setting
automatic bridging : 选中
虚拟机的网卡选择bridged
虚拟机中设置ip网段和宿主机相同,可以用netco ...
- 2009-03-16 11:11
- 浏览 1388
- 评论(0)
第一部分:操作系统安装、阵列分区和服务配置
一、操作系统安装
(1) 分区:
[root@rac1 ~]# df -h
Filesystem Size Used Avail Use% Mounted on
/dev/sda8 1012M 230M 731M 24% /
/dev/sdb1 269G 92M 256G 1% /bak
/dev/sda1 1012M 41M 920M 5% /boot
none 3.0G 0 3.0 ...
- 2009-03-16 10:35
- 浏览 2233
- 评论(5)
\
class Point
{
public:
Point(int x=0,int y=0 );
Point(Point&);
virtual ~Point();
int x,y;
};
// Point.cpp: implementation of the Point class.
//
//////////////////////////////////////////////////////////////////////
#include "Point.h"
#include <stdio.h>
...
- 2009-03-11 17:21
- 浏览 2960
- 评论(1)
rpm -ivh 软件包 // 安装
rpm -e 软件名 // 卸载
rpm -q [选项-a|……] [软件名] // 查询
- 2009-03-09 17:00
- 浏览 863
- 评论(8)
http://research.history.org/pf/
http://www.csszengarden.com/
http://cssmania.com/
- 2009-03-04 17:02
- 浏览 871
- 评论(0)
CSS十大密技(转)
Afly | 2006-2-27 | From
1. css 字体简写规则
当使用css定义字体时你可能会这样做:
font-size: 1em;
line-height: 1.5em;
font-weight: bold;
font-style: italic;
font-variant: small-caps;
font-family: verdana,serif;
事实上你可以简写这些属性:
font: 1em/1.5em bold italic small-caps verdana,serif
现在好多了吧,不过有一点要注意:使用这一简写方式 ...
- 2009-03-04 15:41
- 浏览 692
- 评论(0)
eval()的用法
var a1= 2;
var b = eval("a" + i);
alert(b);//b = 2;
- 2009-03-04 15:14
- 浏览 701
- 评论(0)