`
nanshannan0106
  • 浏览: 11679 次
  • 性别: Icon_minigender_1
  • 来自: 武汉
最近访客 更多访客>>
社区版块
存档分类
最新评论
文章列表
Db2 例子 create table mynumber(id int,name varchar(10)) insert into mynumber values(1,'no1') insert into mynumber values(2,'no2') insert into mynumber values(3,'no3') insert into mynumber values(4,'no4') insert into mynumber values(5,'no5') insert into mynumber values(5,'no6') insert into mynumb ...
数据库建表如下: drop database choose ;create database choose ;use choose;--studentcreate table student(    sId char(10) not null primary key, sName char(20) not null, sPwd char(20) not null); create unique index PK_student on student(sId);--coursecreate table course(    coId char(10) not null primary key, c ...
最近做的一个项目中运用到了连接池技术,可能我们大家比较熟悉的开源连接池有dbcp,c3p0,proxool。对这三种连接池来说,从性能和出错率来说,proxool稍微比前两种好些。今天我主要简单的讲述一下,我在项目中成功的配置和源码。        第一步:首先去http://proxool.sourceforge.net/下载一个proxool.jar文件了,我用的是proxool-0.8.3.jar,现在最新版本是proxool-0.9.3.jar.除了他们的查看监控台的页面有变化,其他的变化不是太大。        第二步:就是写一个单独的proxool.xml文件放到WEB-INF文件夹 ...
学生选课系统 问题:在查询了数据库时,将对象记录到List里面时,发现应该返回的是两个对象一个是Course和Choice,这样该怎么办呢?  --表1---选课关系表-----------对应Choice对象create table choice(choiceID int auto_increment PRIMARY KEY, 选课IDstuID nvarchar (50),    学生学号cno nvarchar (50),    课程号chgrade nvarchar (50)    成绩);--表2---课程信息表-----------对应Course对象create table cou ...
在面试中,大家都希望能够运用自己的三寸不烂之舌对招聘方“甜言蜜语”,以便能够得偿所愿。今天我们就为大家准备一些此类的话题,仅供大家学习。     1. What is important to you in a job?(工作中对你最重要的是什么?)     Challenge, the feeling of accomplishment, and knowing that I have made a contribution.(挑战,成就感以及明白自己对公司有所贡献)        2. Why do you want to work for this organization?(为什么你 ...
Q: Can you sell yourself in two minutes? Go for it. (你能在两分钟內自我推荐吗?大胆试试吧!) A: With my qualifications and experience, I feel I am hardworking, responsible and diligent in any project I undertake. Your organization could benefit from my analytical and interpersonal skills.(依我的资格和经验,我觉得我对所从事的每一个项目都很努力、负 ...
   Q: Can you sell yourself in two minutes? Go for it. (你能在两分钟內自我推荐吗?大胆试试吧!)   A: With my qualifications and experience, I feel I am hardworking, responsible and diligent in any project I undertake. Your organization could benefit from my analytical and interpersonal skills.(依我的资格和经验,我觉 得我对所从事的每一个项目 ...
Global site tag (gtag.js) - Google Analytics