1.安装mysql
sudo apt-get install mysql-server mysql-client
2.使用root账户登录mysql数据库,新建存放hive元数据的数据库,假设叫hiveDB.
a) mysql -uroot -proot
b) create database hiveDB;
3.使用root账户登录mysql,新建hive连接mysql的账号并授予权限...
分类:
其他好文 时间:
2014-12-18 22:18:45
阅读次数:
233
实例1、取得MYSQL的版本在windows环境下安装mysql模块用于python开发MySQL-python
Windows下EXE安装文件下载代码如下:#-*-coding:UTF-8-*-#安装MYSQLDBforpythonimportMySQLdbasmdbcon=Nonetry:#连接mysql的方法:connect(‘ip‘,‘user‘,‘password‘,‘dbname‘)con=
mdb.connect(‘l..
分类:
数据库 时间:
2014-12-18 19:07:13
阅读次数:
278
OracleSQLDeveloper是非常强悍的开源的SQL开发工具,安装好的OracleSQLDeveloper是不支持连接MySQL的,需要从MySQL官网下载JDBC驱动forMySQL.OracleSQLDeveloper官网下载地址:http://www.oracle.com/technetwork/cn/developer-tools/sql-developer/downloads/index.htmlJDBCforMy..
分类:
数据库 时间:
2014-12-18 15:35:15
阅读次数:
269
简介MyEclipse自带很多非常实用的工具,本次将介绍Hibernate工具的使用。1.首先打开MyEclipse的Hibernate视图2.然后在左上角的DB Browser视图中,右键,新建数据库连接驱动,如:下图是连接MySQL数据库的示例3.为Java Web项目添加MyEclipse的H...
分类:
Web程序 时间:
2014-12-17 22:25:19
阅读次数:
211
//文件名:hello.javaimport java.sql.*;public class hello { public static void main(String[] args) { // 驱动程序名 String driver = "com.mysql.jdbc.Driver"; // U...
分类:
数据库 时间:
2014-12-17 14:17:00
阅读次数:
278
mybatis generator生成连接mysql与sqlserver所在的区别在于驱动和数据库URL不同mybatis generator连接mysql的配置文件是: ...
分类:
数据库 时间:
2014-12-16 10:01:22
阅读次数:
188
python3.4连接mysql数据库的方法发布时间:2014-08-04编辑:www.jbxue.com本文介绍了python3.4连接mysql数据库的方法,在python3.4中不能用mysqldb连接mysql,可以使用pymysql完成连接mysql数据库,需要的朋友参考下。在python...
分类:
数据库 时间:
2014-12-15 18:52:01
阅读次数:
245
这两天用java分别连接mysql和sql server2008代码,刚开始都是有错,现在找到了在 自己机器上成功连接的代码:
1. mysql
Class.forName("com.mysql.jdbc.Driver").newInstance();
String url="jdbc:mysql://localhost:3306/website?characterEncoding=...
分类:
数据库 时间:
2014-12-15 12:10:52
阅读次数:
199
ubuntu server下安装了MySQL 5.5数据库,然后在windows下通过Navicat for MySQL连接时,出现 Can‘t connect to mysql server on xxx.xxx.xxx.xxx(10038) 的问题。 解决方案如下: 1、授权 mysql>grant all privil...
分类:
数据库 时间:
2014-12-14 17:20:48
阅读次数:
190
MySQL:String Driver="com.mysql.jdbc.Driver";//驱动程序String URL="jdbc:mysql://localhost:3306/db_name";//连接的URL,db_name为数据库名String Username="username";//用...
分类:
数据库 时间:
2014-12-13 12:03:40
阅读次数:
237