重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
hibernate.cfg.xml配置需要注意几个地方:
创新互联主营高陵网站建设的网络公司,主营网站建设方案,重庆APP开发公司,高陵h5微信平台小程序开发搭建,高陵网站营销推广欢迎高陵等地区企业咨询
property name="hibernate.dialect"org.hibernate.dialect.MySQLDialect/property
property name="hibernate.connection.driver_class"com.mysql.jdbc.Driver/property
property name="hibernate.connection.url"jdbc:mysql://localhost:3306/test/property
上述对应三个配置项,均需要配置mysql对应的值。
一、查询有如下三种方式:
1、采用createQuery()的方式,不用写sql语句,设定map对应的类名,后面可跟where条件语句:
Query query = session.createQuery("from Navigation n where n.parentid=" + parentid);
2、采用hibernate-mapping配置文件中配置sql语句的方式:
Query query = session.getNamedQuery("findUserById");
query.setString("userId", userId);
通过setString()方法设置筛选条件;
xml配置示例如下:
hibernate-mapping
query name="findUserById"
![CDATA[
from User u where u.id = :userId
]]
/query
/hibernate-mapping
3、采用createSQLQuery()的方式,直接写sql语句:
SQLQuery query = session.createSQLQuery("select * from adm_navigation where parentid=" + parentid);
query.addEntity(Navigation.class); //需要设置对应的类
二、insert插入操作:
创建新的数据对象,设置属性之后,调用:
session.save(obj);
tx.commit()方法保存到数据库;
其中session为:Session session = new Configuration().configure().buildSessionFactory();
tx为:Transaction tx = session.beginTransaction();
需要引入包:
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
import org.hibernate.Transaction;
三、update更新操作与insert插入操作类似:
首先调用select查询方法,从数据库中读取出对象或对象数组,
然后给对象设置新的属性值,
再调用session.save(obj)和tx.commit()方法保存到数据库中。
管理属性:
第一个是管理工具路径:我的是:D:\Program Files\PremiumSoft\Navicat 8.0 Lite MySQL\navicat_lite.exe
第二个是管理工具启动参数:我的不填
第三个是MySQL服务的启动程序路径(选择MySql的安装路径就可以啦):C:/Program Files/MySQL/MySQL Server 5.0/bin/mysqld-nt.exe
第四个是MySQL服务的启动参数:--console
第五个是MySQL服务的关闭程序路径:C:/Program Files/MySQL/MySQL Server 5.0/bin/mysqladmin.exe
第六个是MySQL服务的关闭参数:-u root shutdown
直接一句话搞定了
alter table_name add cloumn 字段 varchar(50)
其中字段名自己定义,varchar(50)这个也同理。
alter table 表名称 modify 字段 string
例如
use aynu;
alter table xsb modify 姓名 char(10)
在MySQL数据库中,\x0d\x0a字段或列的注释是用属性comment来添加。\x0d\x0a\x0d\x0a创建新表的脚本中,\x0d\x0a可在字段定义脚本中添加comment属性来添加注释。\x0d\x0a\x0d\x0a示例代码如下:\x0d\x0acreate table test(\x0d\x0aid int not null default 0 comment '用户id'\x0d\x0a)\x0d\x0a\x0d\x0a如果是已经建好的表,\x0d\x0a也可以用修改字段的命令,然后加上comment属性定义,就可以添加上注释了。\x0d\x0a\x0d\x0a示例代码如下:\x0d\x0aalter table test\x0d\x0achange column id id int not null default 0 comment '测试表id\x0d\x0a\x0d\x0a给表的字段或列添加注释已经知道了,\x0d\x0a那么如何来查看已有表的所有字段的注释呢?\x0d\x0a可以用命令:show full columns from table 来查看,\x0d\x0a示例如下:\x0d\x0ashow full columns from test;