What is the connection type ? ODBC ? 

> -----Ursprüngliche Nachricht-----
> Von: Shrikrishna Sathe [mailto:[EMAIL PROTECTED] 
> Gesendet: Mittwoch, 31. März 2004 12:53
> An: [EMAIL PROTECTED]
> Betreff: DB Connection
> 
> The following .asp code sinppet gives error. 
>  
>     Dim rs
>     Set rs = Server.CreateObject("ADODB.Recordset")
>     rs.Open "printjob",objConn, adOpenForwardOnly, 
> adLockOptimistic  , adCmdTable
>     rs.AddNew 
> 
>        rs("jobid") = Request.Form("jobno")
>        rs("closesize") = Request.Form("closize")
>        rs("opensize") = Request.Form("opsize")  
>          
>        rs.Update
>        rs.Close
>        Set rs = Nothing
> 
> Is this AddNew call doesn't work in mysql ?
> The Insert into statement works well but it is very 
> cumbersome while adding >25 fields. 
> 
> please guide.
> 
> Thanks & Regards
> Shrikrishna
> 



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/[EMAIL PROTECTED]

Reply via email to