Forum: Java Jan 6th, 2009 |
| Replies: 2 Views: 989 BufferedReader br1 = new BufferedReader(new InputStreamReader(System.in));
System.out.println("Enter the binary value:");
String s = br1.readLine();
System.out.println("Decimal value is :... |
Forum: Java Nov 20th, 2008 |
| Replies: 4 Views: 903 You need a update statement to update your table in oracle. See below for "Update" syntax:
UPDATE table
SET column = expression
WHERE predicates;
Also you google to find "update", you will find... |