我刚开始研究java, 之前是做.net开发的
因为系统是win7所以呢oracle 11支持,不得不安装它,hibernate  也是3.6以上的新新版本
但我的hibernate无法操作成功
看SQL都已经生成了starting...
drop table UserInfo cascade constraints
drop sequence student_sequence
create table UserInfo (student_id number(10,0) not null, username varchar2(255), pwd varchar2(255), primary key (student_id))
create sequence student_sequence
fihish...这是我写的方法:
,执行test.java创建表:public static void main(String[] args) {
  // TODO Auto-generated method stub
  SchemaExport export=new SchemaExport(new Configuration().configure());
  export.create(true, true);
我用mysql联接是成功生成表了。但是oracle11没有成功。不晓得啥原因
请大侠们指点一下吧