`
文章列表
div+css菜单生成器 http://www.hellocto.com/bbs/tool/csstool/cn/ 在线编辑器
package test; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.Statement; /** * 三种获得自动生成主键的方法。 * * @author 赵学庆 * */ public class TestGetPK { public static void main(String[] args) throws Exception { Class.for ...
1.登陆系统用户 sqlplus 然后输入系统用户名和密码 登陆别的用户 conn 用户名/密码; 2.创建表空间 create tablespace 空间名 datafile 'c:\空间名' size 15M --表空间的存放路径,初始值为15M autoExtend on next 10M --空间的自动增长的值是10M permanent online; --永久使用 3.创建用户 create user shi --创建用户名为shi identified by scj --创建密码为scj default tablespace 表空间名 --默认表空间名 t ...
   1)创建使用参数的存储过程 Create Proc au_info @lastname varchar(40),@firstname varchar(20) As Select  au_lname,au_fname,title,pub_name From ... where au_fname=@firstname And au_lname=@lastname Go EXECUTE  au_info  ringer,anne 2)创建使用参数默认值的存储过程,该存储过程在没有输入参数的情况下将默认值得到的结果输出 Create Proc au_info @lastname ...
javax.servlet.ServletException: Cannot retrieve mapping for action /submitUpdateStuffTimeRecord Action配置有问题 java.lang.NullPointerException org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:372) mapping.get,,,,,,没有找到相应的页面 javax.servlet.ServletException: null or ...
AJAX开源 风琴效果(Accordion) http://www.hellocto.com/wz/list.aspx?cid=241 自动完成(AutoComplete) http://www.hellocto.com/wz/list.aspx?cid=242 动画(Animation) http://www.hellocto.com/wz/list.aspx?cid=243 日期(Calendar) http://www.hellocto.com/wz/list.aspx?cid=244 图表(Charts) http://www.hellocto.com/wz ...
正则表达式学习
房屋租赁系统
EJB3.0入门图文教程
JAVA分页大全
下面我们将详细讲解如何在Page_Load()中对数据库的增加、删除、修改,最后我们再来总结一下ExecuteNonQuery(),ExecuteScalar(),ExecuteReader的用法 -------------------------------------------------------------- 1、 增加新的记录 private void Page_Load(object sender, System.EventArgs e) { MyConnection.Open();’打开数据库 MyCommand1.CommandText = "insert int ...

Java编码规范

    博客分类:
  • java
1 介绍(Introduction) 为什么要有编码规范(Why Have Co ...
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Data.SqlClient; using System.Configuration; /********************************* * 类名:DBHelper * 功能描述:提供基本数据访问功能 * ******************************/ namespace HotelManager.DAL {     public static class D ...
Global site tag (gtag.js) - Google Analytics