
Database
mlw2000
这个作者很懒,什么都没留下…
展开
-
Mysql序列解决方案
mysql 序列 sequence原创 2022-05-24 08:30:05 · 189 阅读 · 0 评论 -
sql
public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) { // TODO Auto-generated method stub AddUserForm addUserForm = (A原创 2006-07-27 15:43:00 · 691 阅读 · 1 评论 -
mysql字符集设置
<br />1. 查看字符集<br />mysql> show variables like 'character%';<br /> +--------------------------+----------------------------+<br /> | Variable_name | Value |<br /> +--------------------------+----------------------------+<原创 2010-06-25 14:02:00 · 282 阅读 · 0 评论 -
MySQL Prepared Statements 使用示例
在MySQL shell中使用示例: mysql> PREPARE stmt1 FROM 'SELECT SQRT(POW(?,2) + POW(?,2)) AS hypotenuse'; mysql> SET @a = 3; mysql> SET @b = 4; mysql> EXECUTE stmt1 USING @a, @b; +------------+ | hypotenuse | +------------+ | 5 | +------------+ mys转载 2011-03-23 14:06:00 · 366 阅读 · 0 评论