- 浏览: 112414 次
- 性别:
- 来自: 上海
最新评论
文章列表
1, DELETE (删除数据表里记录的语句)
DELETE FROM表名 WHERE 条件;
注意:删除记录并不能释放ORACLE里被占用的数据块表空间. 它只把那些被删除的数据块标成unused.
如果确实要删除一个大表里的全部记录, 可以用 TRUNCATE 命令, 它可以释放占用的数据块表空间
TRUNCATE TABLE 表名;
此操作不可回退.
http://www.chinaunix.net 作者:oraix 发表于:2004-11-28 23:02:53
注意:这里说的delete是指不带where子句的delete语句
相同点
...
- 2007-08-24 11:09
- 浏览 20387
- 评论(0)
System.getProperty("user.dir")
public class GetPath {
public static void main(String[] args) {
GetPath test = new GetPath();
System.out.println(test.getPath());
}
public String getPath(){
return this.getClass().getResource("/").getPath ...
- 2007-08-23 16:42
- 浏览 1797
- 评论(0)
<script>
function xd(oForm)
{
var ext = "*.jpg,*.gif";
s = oForm.f.value;
s = s.substr(s.lastIndexOf("."));
if(ext.indexOf("*"+s)==-1)
{
alert("不允许"+s)
return false
...
- 2007-07-04 14:56
- 浏览 2168
- 评论(0)
首先把文件上传至服务器,可以直接获得输入流。
1、需要在配置文件里加入:
<bean id="multipartResolver" class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
<property name="maxUploadSize">
<value>204800000</value>
</property>
</bean ...
- 2007-07-04 11:39
- 浏览 3093
- 评论(0)