美文网首页
使用hibernate-configuration配置oracl

使用hibernate-configuration配置oracl

作者: S等价交换S | 来源:发表于2020-07-20 09:30 被阅读0次

    自己遇到的问题

    很多人喜欢默认表orcl,下面这样写没问题

    <property name="connection.url">jdbc:oracle:thin:@localhost:1521:orcl</property>

    但是如果命名新表后面SID需要更改,但是如果创建表时带下划线,oracle自动生成的SID默认会把下划线去掉 例如表名demo_test、SID:demotest

    <property name="connection.url">jdbc:oracle:thin:@localhost:1521:demotest</property>

    坑我一天

    相关文章

      网友评论

          本文标题:使用hibernate-configuration配置oracl

          本文链接:https://www.haomeiwen.com/subject/ulcekktx.html