Yvette Gonzalez

Greenhorn
+ Follow
since Jun 27, 2002
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 Yvette Gonzalez

I am getting the following error when attempting to upload a file:
java.io.FileNotFoundException: .\percent.txt (Access is denied)
Any suggestions?
21 years ago
Try using PrintWriter, as in:
PrintWriter writer = new PrintWriter(new FileOutputStream(filename, true));
Yvette
21 years ago
Thanks Jaime, That's exactly what I was looking for!
I am reading a series of strings from a file and then inserting them into an MS Access table. Occasionally when the string is too large I get a java.sql.SQLException: [Microsoft][ODBC Microsoft Access Driver]String data, right truncated (null).
The field in the table is of type memo and should be large enough to accomodate the size of the strings.
Any suggestions?
Thanks!
Thanks for the info! Congratulations Alan!!
Yvette
SCJP2
21 years ago
YIPPPEEE!!
Does anyone know when we will get the certificate and other materials?
Yvette
21 years ago
Thanks Rene - I used the -classpath option and it worked!!
From a standalone program. Thanks in advance for any assistance!
Yes, I have put this c:\mySQLDriver\mm.mysql-2.0.14\mm.mysql-2.0.14-bin.jar; in my classpath. I don't know what else to do!
I put my mm.mysql-2.0.14-bin.jar file into my JavaHome\jre\lib\ext directory and I am still getting: java.lang.ClassNotFoundException: org.gjt.mm.mysql.Driver. Any suggestions? Is there anything else that I need to do?