Peng Cedar

Greenhorn
+ Follow
since Jul 25, 2001
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
0
In last 30 days
0
Total given
0
Likes
Total received
0
Received in last 30 days
0
Total given
0
Given in last 30 days
0
Forums and Threads
Scavenger Hunt
expand Ranch Hand Scavenger Hunt
expand Greenhorn Scavenger Hunt

Recent posts by Peng Cedar

I have tried. But when I use the Component on DataExpress->Database, and open its connection property setting window.
On the connection window->General tab, on the drop-down driver list, I still only seen the default two JDBC driver.
I think although I have added the MySQL JDBC driver into the JBuilder libraries, JBuilder do not know it's a JDBC driver!
I have install JBuilder5 in my computer/win2000.
I found there are only two JDBC, one for JDataStore and other for JDBC-ODBC bridge.
I have downloaded MySQL JDBC, and have test it working well;
But how can I make JBuilder5 know the MySQL JDBC driver?
I have install JBuilder5 in my computer/win2000.
I found there are only two JDBC, one for JDataStore and other for JDBC-ODBC bridge.
I have downloaded MySQL JDBC, and have test it working well;
But how can I make JBuilder5 know the MySQL JDBC driver?
How can I joint Apache and Tomcat working together?
(On windows2000 professional)
Installed:
jdk1.3
Apache 1.3.14
Tomcat
Everything above run very well.
I have add a line in Apache's httpd.conf---

include c:/jakarta-tomcat/conf/tomcat.conf
then I start Apache and see:
Apache/1.3.14 (Win32) tomcat/1.0 running...
But when I want to visit http://127.0.0.1:8080,
I failed, Why?

22 years ago
Although my score was not very good as many other people here,
I am very happy today.
Thanks every help me person.
22 years ago
Thanks for everyone reply my question.
To my surprise, there are so many different opions on
this topic.
But, just for the SCJP EXAM, who can give me a
complete and exact anwser?
On Complete Java2 Study Guide said "null" is keyword.
But on http://java.sun.com/docs/books/tutorial/java/nutsandbolts/_keywords.html
say it's not. Who knows?
Code 1:

I got : 1
Code 2:

I got : 0
Code 1:
public class Inc{
public static void main(String argv[]){
Inc inc = new Inc();
int i =0;
int j;
inc.fermin(i);
i = i;
i++;
System.out.println(i);
}
void fermin(int i){
i++;
}
}
I got outprint: 1
Code 2:
public class Inc{
public static void main(String argv[]){
Inc inc = new Inc();
int i =0;
int j;
inc.fermin(i);
i = i++;
System.out.println(i);
}
void fermin(int i){
i++;
}
}
I got outprint: 0
Why?Who knows?
There was a little bug in Java Rule Round-up.
If answer all question right(36 of 36, 100%), and you want to
play next time. You will see this bug, the words jointed.
22 years ago