码迷,mamicode.com
首页 >  
搜索关键字:root mysql    ( 135709个结果
c3p0连接数据库
50 4 2 2 2 3000 com.mysql.jdbc.Driver jdbc:mysql:///abc ...
分类:数据库   时间:2014-05-06 00:33:33    阅读次数:445
c3p0xml配置详解
3 30 1000 false Test false 100 null false 60 3 60 15 100 3 root password select id from test where id=1 300 false true root false con_test 30000 30 .....
分类:其他好文   时间:2014-05-06 00:31:10    阅读次数:258
mysql 存储过程实例
技术要点一个存储过程包括名字、参数列表,以及可以包括很多SQL语句的SQL语句集。下面为一个存储过程的定义过程:create procedure proc_name (in parameter integer)begindeclare variable varchar(20);if paramete...
分类:数据库   时间:2014-05-06 00:04:50    阅读次数:433
mysql触发器的实战经验-不错的文章
1 引言Mysql的触发器和存储过程一样,都是嵌入到mysql的一段程序。触发器是mysql5新增的功能,目前线上凤巢系统、北斗系统以及哥伦布系统使用的数据库均是mysql5.0.45版本,很多程序比如fc-star管理端,sfrd(das),dorado都会用到触发器程序,实现对于数据库增、删、改...
分类:数据库   时间:2014-05-05 23:57:59    阅读次数:525
Leetcode | Sum Root to Leaf Numbers
Given a binary tree containing digits from 0-9 only, each root-to-leaf path could represent a number.An example is the root-to-leaf path 1->2->3 which...
分类:其他好文   时间:2014-05-05 23:55:36    阅读次数:407
微信公众平台教程
本系列微信公众平台教程以PHP+MySQL为开发环境,介绍了微信公众平台开发模式下基础接口、自定义菜单、高级接口、微信支付接口等接口的介绍及在此基础上的功能应用开发方法及案例技巧,极具实用价值。
分类:微信   时间:2014-05-05 23:42:28    阅读次数:902
文件操作1创建文件
1.[root@rusky ]# vi list #如果testfile不存在,则vi会自动创建一个名为testfile的文件,并在Vi打开该文件等待用户输入内容。2.[root@rusky ]# ls -l >listfile #利用重定向,将ls -l 的执行结果输出到新文件listfile.....
分类:其他好文   时间:2014-05-05 23:21:35    阅读次数:381
显示目录树命令tree
-a:显示所有文件,包括隐藏文件-d:只显示目录-f:显示完整的文件名,包含路径-L:显示目录树的深度[root@rusky /]# tree -L 2 -a -f /home/home|-- /home/99user.ldif|-- /home/Legal| |-- /home/Legal/C.....
分类:其他好文   时间:2014-05-05 23:08:27    阅读次数:402
【LeetCode OJ】Sum Root to Leaf Numbers
# Definition for a binary tree node# class TreeNode:# def __init__(self, x):# self.val = x# self.left = None# self.right ...
分类:其他好文   时间:2014-05-05 22:56:23    阅读次数:419
Java连接mysql数据库
在java中连接mysql数据库,先要下载mysql驱动mysql-connector-java-5.1.30.zip,解压出.jar文件复制到项目目录中,再Build Path即可使用。 package cn.hitech.db;import java.sql.Connection;impor.....
分类:数据库   时间:2014-05-05 22:37:27    阅读次数:419
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!