Forum: JavaScript / DHTML / AJAX Jun 12th, 2009 |
| Replies: 12 Views: 2,486 ok I saw this on another page. so I am not sure how it will work. but as a data when you send
arrayElement=1&arrayElement=2&arrayElement=3
you can send all the elements to server. and you can... |
Forum: Oracle Feb 16th, 2009 |
| Replies: 2 Views: 663 here is some pl/sql code that gives you an idea I hope that would help
declare
a1 varchar2(255);
b1 varchar2(255);
a2 varchar2(255);
b2 varchar2(255);
qry varchar2(4000);
cursor cr_a is... |
Forum: Java Jun 27th, 2008 |
| Replies: 6 Views: 612 package dw_synch;
import java.io.*;
public class Synch {
private static String strSource = "C:\\source";
private static String strTarget = "D:\\target";
public static void main(... |
Forum: Java Jun 26th, 2008 |
| Replies: 5 Views: 28,754 I have more than onw suggestions for you.
1) instead of checking if it is a letter or a special character. you could check if it is a number between 0 to 9 so if all the characters are numbers you... |
Forum: Java Jun 20th, 2008 |
| Replies: 10 Views: 8,533 OK First of all you have to find out what scanner class does. I suggest you check java specifications. best place you check is java specifications (http://java.sun.com/javase/6/docs/api/index.html).... |