[VIEWED 6281
TIMES]
|
SAVE! for ease of future access.
|
|
|
hicky
Please log in to subscribe to hicky's postings.
Posted on 04-27-13 11:58
PM
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
Hello people,
I need help with mySQL database. I want to create tables and insert data such as person's name, education etc. I have downloaded mySQl 5.6 and was thinking if I can use java programming language to create tables or do I have to use the SQL command. Please help. THanks.
|
|
|
|
ashishme
Please log in to subscribe to ashishme's postings.
Posted on 04-28-13 12:43
AM [Snapshot: 30]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
you can use the command or you can use PhpMyAdmin
but i think PhpMyAdmin will be easier for you.
Download wamp/lamp/mamp server accordingly and work through it.
|
|
|
ustadamirkhan
Please log in to subscribe to ustadamirkhan's postings.
Posted on 04-28-13 12:47
AM [Snapshot: 30]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
U can create database first by running MYSQL command prompt
>CREATE DATABASE dbasename;
>Use dbasename;
>Create table PersonInfo(
fname varchar(10),
lname varchar(10),
add varchar(14)
);
>Insert Into PersonInfo(fname,lname,add) Values ('ram','sharma','mangalbazar');
|
|
|
tyakuman
Please log in to subscribe to tyakuman's postings.
Posted on 04-28-13 1:53
AM [Snapshot: 66]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
if you are into PHP then here is a good tutorial: http://www.w3schools.com/php/php_mysql_intro.asp
|
|
|
TheEvilTwin
Please log in to subscribe to TheEvilTwin's postings.
Posted on 04-28-13 3:00
AM [Snapshot: 85]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
you should probably try sites like stackoverflow.com instead of Sajha.com for answers to these questions..
|
|
|
mancini
Please log in to subscribe to mancini's postings.
Posted on 04-28-13 8:16
AM [Snapshot: 126]
Reply
[Subscribe]
|
Login in to Rate this Post:
0
?
|
|
|
|