nutz开源框架如何连接mysql数据库连接问题?

nutz开源框架如何连接mysql数据库连接问题?,第1张

BasicDataSource ds = new BasicDataSource()

ds.setDriverClassName("com.mysql.jdbc.Driver")

ds.setUrl("jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=utf-8")

ds.setUsername("root")

ds.setPassword("1234")

//ds.setInitialSize(3)

this.dataSource=ds

NutDao nutDao=new NutDao(ds)

其实不管是什么数据库只是该一下连接的url而已

多表关联查询语法分为 内、外连接。

外连接分为左连接(left join 或left outer join)、右连接(right join 或者 right outer join)、和完整外部连接 (full join 或者 full outer join)

左连接:select * from table1 left join table2 on table1.条件列名 = table2.条件列名

右连接:select *from table1 right join table2 on table1. 条件列= table2.条件列

完全外部连接:select *fron table1 join table2 on table1.条件列名 = table2.条件列名

交叉连接(完全):select *from table1 cross join table.

1.永远不要信任用户的输入,要对用户的输入进行校验,可以通过正则表达式,或限制长度,对单引号和双"-"进行转换等。

2.永远不要使用动态拼装SQL,可以使用参数化的SQL或者直接使用存储过程进行数据查询存取。

3.永远不要使用管理员权限的数据库连接,为每个应用使用单独的权限有限的数据库连接。

4.不要把机密信息明文存放,请加密或者hash掉密码和敏感的信息。

5.应用的异常信息应该给出尽可能少的提示,最好使用自定义的错误信息对原始错误信息进行包装,把异常信息存放在独立的表中。


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/6699615.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-03-27
下一篇 2023-03-27

发表评论

登录后才能评论

评论列表(0条)

保存