create user frame identified by tiger;grant create
session to frame;grant create table to frame;grant create tablespace to
frame;grant create view to ...
分类:
数据库 时间:
2014-06-11 13:00:15
阅读次数:
283
继续上一节初始ASP.NET MVC4,继续深入学习,感受了一下微软的MVC4+EF5(EntityFramework5)框架的强大,能够高效的开发出网站应用开发系统,下面就看一下如何用MVC4+EF5来实现数据的读取。实现效果操作步骤1.创建数据库--创建表格--
Create table News
(
id int identity(1,1) primary key,
NewsTitle...
分类:
Web程序 时间:
2014-06-11 00:53:12
阅读次数:
286
场景:修改已有数据的列宽时,提示“阻止保存要求重新创建表的更改”。解决:工具-〉选项-〉左侧有个 设计器-〉表设计器和数据库设计器 ->
阻止保存要求重新创建表的更改(右侧) 把钩去掉即可。参考:http://www.jb51.net/article/30416.htm
分类:
数据库 时间:
2014-06-10 13:17:20
阅读次数:
212
CREATE [UNDO] TABLESPACE tablespace_name
[DATAFILE datefile_spec1 [,datefile_spec2] ......
[{MININUM EXTENT integer [k|m]
|BLOCKSIZE integer [k]
|logging clause | FORCE LOGGING...
分类:
数据库 时间:
2014-06-10 06:13:58
阅读次数:
282
Person.java 1 package
cn.itcast.hiberate.sh.domain.onetoone; 2 3 import java.io.Serializable; 4 import
java.util.Set; 5 6 public class Person implem.....
分类:
系统相关 时间:
2014-06-09 19:26:44
阅读次数:
341
Student.java 1 package
cn.itcast.hiberate.sh.domain; 2 3 import java.util.Set; 4 5 public class Student
{ 6 private Long sid; 7 private Stri...
分类:
系统相关 时间:
2014-06-09 15:58:47
阅读次数:
421
一对多 单向通过calss操作student
外键在student表中,所以外键由student维护通过student操作class 外键在student中,所以自动维护student的外键
没有inverse属性建议用多对一这个方向的操作效率比较高Student.java 1 package .....
分类:
系统相关 时间:
2014-06-08 19:14:51
阅读次数:
339
建表前如何判断表是否存在呢,因为table是不支持replace的。下面的sql能帮到你。create前先判断表是否存在。例如,如果存在则drop掉那个表。当然你也可以定义自己的操作。 declare
v_cnt Number;
begin
select count(*) into v_cnt from user_tables where upper(table_name) ...
分类:
数据库 时间:
2014-06-08 15:42:00
阅读次数:
329
-- 建表CREATE TABLE sale_report ( sale_date DATE NOT
NULL , sale_item VARCHAR(2) NOT NULL , sale_money DECIMAL(10,2) NOT NULL,
PRIMARY KEY(sale_date, sa...
分类:
数据库 时间:
2014-06-07 23:29:17
阅读次数:
502
级联操作,操作class对象的时候 级联操作 studentClasses.java文件 1
package cn.itcast.hiberate.sh.domain; 2 3 import java.util.Set; 4 5 public class
Classes { 6 priv...
分类:
系统相关 时间:
2014-06-07 21:08:27
阅读次数:
450