infoSyStem
infoSyStem

Reputation: 145

MySQL database server v.s. Phpmyadmin

Can anyone "PLEASE" answer these two questions :

1- What is the difference between MySQL database server and Phpmyadmin ?

2- can I make a connection from a java software to a phpmyadmin database using JDBC-driver ? and how ?

Thank you in advance !!

Upvotes: 0

Views: 1987

Answers (1)

Pekka
Pekka

Reputation: 449525

1- What is the difference between MySQL database server and Phpmyadmin ?

mySQL is a database server. phpMyAdmin is a client tool to access a mySQL database, written in PHP and used in a browser.

2- can I make a connection from a java software to a phpmyadmin database using JDBC-driver ? and how ?

No, but you should be able to make a connection to a mySQL database. As to how... I don't know but I'm sure there is reference info for this.

Update: See here:

JDBC Driver for MySQL (Connector/J)

Upvotes: 7

Related Questions