- 浏览: 4741 次
- 性别:
- 来自: 成都
最新评论
-
yulongxiang:
duoxie
JDBC连接数据库例子
文章列表
什么是对象?在面向对象编程中,对象就是指由当作完整实体的操作和数据组成的变量。
对象是基于特定模型的,在对象中客户使用对象的服务通过由一组方法或相关函数的接口访问对象的数据,然后客户端可以调用这些方法执行某中操作。
JSP的内建对象有以下几种:request、response、 out、 session、 pagecontext、 application、 config、 page。
◆ Request[请求]对象
Request对象用于接受所有从浏览器发往你的服务器的请求内的所有信息。
与request 相联系的是HttpServletRequest类。通过getParameter方 ...
- 2009-08-25 16:25
- 浏览 768
- 评论(0)
(一)
1、查找表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断
select * from people
where peopleId in (select peopleId from people group by peopleId having count(peopleId) > 1)
2、删除表中多余的重复记录,重复记录是根据单个字段(peopleId)来判断,只留有rowid最小的记录
delete from people
where peopleId in (select peopleId from people g ...
- 2009-08-24 20:33
- 浏览 673
- 评论(0)
import java.sql.*;
public class jdbc {
/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
try {
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url = "jdbc:mysql://localhost:3306/temp";
Str ...
- 2009-08-24 20:29
- 浏览 1185
- 评论(1)
public class maopao {
public static int[] getMaoPao(int[] a){
int[] s = new int[a.length];
s=a;
for(int i = 0; i<a.length; i++){
for(int j = 0; j<a.length-1; j++){
if(s[j]>s[j+1]){
int k;
k=s[j];
s[j]=s[j+1];
s[j+1]=k;
}
}
}
return ...
- 2009-08-24 20:28
- 浏览 664
- 评论(0)
SQL如何删除重复的数据行- -
delete from table where id in (
select max(id) from table group by name having count(*)>1
)--删除重复记录中ID最大的一条(如果有2条以上的重复记录则需多次执行)
如果table数据完全一样,可以先将数据导入到一个临时表内
或
delete from table where id not in (
select min(id) from table group by name
)--只保留重复记录的第一条(id最小的一条)
使用临时表:
insert int ...
- 2009-08-24 16:24
- 浏览 1451
- 评论(0)