Forum: Java Jul 24th, 2003 |
| Replies: 3 Views: 3,606 There should be some kind of JVM or JDK included on the Codewarrior CD; at least there was with the older versions I have. I would suggest you find that one and install it, so that all the... |
Forum: Java Jul 16th, 2003 |
| Replies: 10 Views: 53,614 This code will work if you use !args[i].equals("the") instead of args[i] != "the". The latter doesn't work because you end up comparing the location in memory rather than the contents of the memory,... |
Forum: Java Jul 16th, 2003 |
| Replies: 4 Views: 3,974 Last I heard, Codewarrior is available for Linux (Redhat), but it's not free. Sun provides NetBeans packaged with their latest JDK. I've downloaded/installed the Windows version, and haven't been... |
Forum: Java Jul 16th, 2003 |
| Replies: 2 Views: 14,765 For most database systems, you can simply download a JDBC driver to connect to the Db with Java, but there aren't any free ones for Access. What I ended up having to do was create an ODBC datasource... |