Hi all
I am trying to send a big text file to Access table's but I got this error
message:
"java.sql.SQLException: Driver does not support this function error "
my code:
PreparedStatement prestatmt=conect.prepareStatement(querytwo);
InputStream strmn=new StringBufferInputStream(content);
prestatmt.setAsciiStream(1,strmn,(int)fl.length());
prestatmt.setString(2,(String)vector.elementAt(i));
prestatmt.executeUpdate(querytwo);


any helpthanks
Massoud

___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".

Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html

Reply via email to