+ 3
JAVA JDBC question what Languages do i need to learn in order to make a embeded java database ?
What languages should i learn 1st in order to make a simple database or what should i learn 1st ?
7 Antworten
+ 32
MySQL
1) java ... frontend , MySQL ... backend
2) retrieve,add ,delete and modify records from java (netbeans) &show changes done in table in database in MySQL
3) show changes by "select * from <table name>;" in MySQL
//☺
+ 31
yes MySQL is not a language its a RDBMS
//since its popular so most ppl know it ☺
//u used java comments ☺ @ luka
+ 30
MySQL , after it u can do java
+ 14
Both Java and SQL are suffcient. You'll use Java to connect to the database via JDBC while retrieving/manipulating the dataset with SQL. 😉
+ 8
here is a good start: https://docs.oracle.com/javase/tutorial/jdbc/basics/index.html
+ 5
For database management MySQL or Oracle... it depends on you.... what you like the most.
+ 2
if i want to make a standalone app with database inside ? what should i learn 1st thank you :)