Mac JDBC Connection MySQL

Source: Internet
Author: User

1. Download the JDBC Driver:

http://dev.mysql.com/downloads/connector/j/

2. Add the JDBC jar package to the project's Libs folder and build path

2. Change environment variables: Export Path=/usr/local/mysql/bin/:${path}

3. Default [email protected] no password

4. Change Password:

Command line: mysqladmin-u root-p password root

Commands in the MySQL environment:

mysql> UPDATE mysql.user SET password=password (' New password ') WHERE user= ' root ';

mysql> FLUSH privileges;

5. Restart MySQL

/library/startupitems/mysqlcom/mysqlcom restart

Stop MySQL

/library/startupitems/mysqlcom/mysqlcom stop

6. Enter Test

Mysql-u Root-proot

Use test

7. Create a new frequently

CREATE TABLE table1 (username varchar (primary) Key,password integer);

8 Inserting test data

INSERT INTO table1 values (' YYZ ', 123456);

INSERT INTO table1 values (' pengkv ', 123456);

INSERT INTO table1 values (' YJJ ', 123456);

INSERT INTO table1 values (' PJ ', 123456);

INSERT INTO table1 values (' cl ', 123456);

9. Writing code


Mac JDBC Connection MySQL

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.