Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inserting A ROW in a SQL TABLE using JAVA

Status
Not open for further replies.

Guest_imported

New member
Joined
Jan 1, 1970
Messages
0
Hello!

I'm trying to find out how to insert a new row into a data table. I'm using cloudview. I know you can select the table, go to the data tab and hit +. But, if I want to code it in the code window, what would I write?
insert into <tablename> (value1, value2, value3)
or something like that?

I need this for a project due today! Any help would be greatly appreciated!
 
Most databases use:
INSERT INTO <tablename> VALUES (<value1>, <value2>, <etc>)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top