user,password);// 第三步:建立statement对象Stringsql="update employee set password='hello' where sex='女'";ps=conn.prepareStatement(sql);// 第四步:修改数据ps.execute();// 第五步:关闭statement对象和连接对象}catch(SQLExceptione){// TODO 自动生成的 catch 块e.print...