自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Privacy NoteBook

--for Tech-details Collection

  • 博客(7)
  • 收藏
  • 关注

原创 some sql queries.

CREATE TABLE EMP(EMPNO NUMBER(10) CONSTRAINT Nnull NOT NULL CONSTRAINT PKEY1 PRIMARY KEY,ENAME VARCHAR(15) ,JOB CHAR(12),MGR NUMBER(10),HIREDATE DATE,SAL NUMBER (8),COMM NUMBER(15),DEPTNO NUMBER(5));

2006-03-07 20:13:00 2401

原创 PL-SQL Syntaxes-Examples_Part2.txt

11) Procedures  declare    procedure findarea(myrad number) is       area number;  begin       area:=3.14*myrad*myrad;       dbms_output.put_line(Area is ||area);  end;  begin     findarea(3);  en

2006-03-07 20:09:00 752

原创 javascript 关于表单的一些validation

http://blog.csdn.net/M_D_R/archive/2005/10/09/498087.aspx   the html file to use the js....   add cusotmer            Add a New Customer                                                  Name(*) 

2006-03-07 20:00:00 639

原创 com.sun.enterprise.deployment.backend.IASDeploymentException: No local string defined -- Inconsistent Module State 错误

 1.  当我不正常情况下强行关闭sun application server的时候如果再次部署出现服务器能正常启动,但是同样的项目不可以部署的时候而且报出com.sun.enterprise.deployment.backend.IASDeploymentException: No local string defined -- Inconsistent Module State 错误的时候有一

2006-03-07 19:56:00 2183

原创 mysql create and grant

I:> CD %CATALINA_HOME%/webapps/roller/WEB-INF/dbscripts/mysql    I:> mysql -u root -p    password: *****    mysql> create database roller;    mysql> grant all on roller.* to scott@% identified by t

2006-03-07 19:52:00 559

原创 connection pool and DataSource in the sun app server for mysql+java

 /* String userName = "root";            String password1 = "root";            String url = "jdbc:mysql://localhost/employees";            Class.forName("com.mysql.jdbc.Driver").newInstance();        

2006-03-07 19:48:00 857

原创 comment set character in mysql

Use these command to show  and set the character set:show variables likecollation%show variables like character_set_% change all to the utf81  set character_set_database=utf8;set character_s

2006-03-07 19:27:00 904

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除