Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by raj8

  1. raj8

    displaying auto number from database

    hi, is possible 2 display auto number just after the record is added and updated. I mean for example, it display recorded is added and auto number for this field is "auto number"
  2. raj8

    updating existing recordset

    hi everyone thanks for help, my prog is working. I has spaces in front of records in the database, which i was trying to get, cause i had (' "&clName& " ')spaces between the colons & speech marks instead of ('"&clName& "')in my INSERT method. thanks
  3. raj8

    problem with data update

    hi i have problem with updating an existing record, i get the folloing error mess. My database has 6-7 records. Its working with other functionality Error Type: ADODB.Field (0x800A0BCD) Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current...
  4. raj8

    updating existing recordset

    still the same problem
  5. raj8

    updating existing recordset

    still the same error mess,
  6. raj8

    updating existing recordset

    no there about 6-7 records in my_table
  7. raj8

    updating existing recordset

    i tried response.write(userName) cause in varible i have N cap
  8. raj8

    updating existing recordset

    i have records in the database & i tried what u told me but dint work Error Type: ADODB.Field (0x800A0BCD) Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record. /cw1/withdraw_money2222.asp, line 18 Browser Type: Mozilla/4.0...
  9. raj8

    updating existing recordset

    ADODB.Field (0x800A0BCD) Either BOF or EOF is True, or the current record has been deleted. Requested operation requires a current record. /cw1/withdraw_money2222.asp, line 18 line 18 is balance = RS("cl_balance")
  10. raj8

    updating existing recordset

    <% userName =Request(&quot;name&quot;) dim sql set myCon =Server.CreateObject(&quot;ADODB.Connection&quot;) myCon.open &quot;Provider=Microsoft.Jet.OLEDB.4.0;Data Source=&quot; & server.mappath(&quot;client_details.mdb&quot;) Set RS = Server.CreateObject(&quot;ADODB.RecordSet&quot;)...
  11. raj8

    updating existing recordset

    i posted my code again if u like 2 look at it again thanks
  12. raj8

    updating existing recordset

    next error Error Type: ADODB.Recordset (0x800A0E79) Operation is not allowed when the object is open. /cw1/withdraw_money2222.asp, line 18 RS.Open ,myCon,adOpenStatic,adLockOptimistic, adCmdTable
  13. raj8

    updating existing recordset

    I am sorry new error mess Microsoft VBScript compilation (0x800A0409) Unterminated string constant /cw1/withdraw_money2222.asp, line 16, column 84 rs.open &quot;SELECT cl_balance FROM my_table WHERE cl_name =' &quot;&userName &&quot; ',myCon,1,3...
  14. raj8

    updating existing recordset

    hi i get this error mess this time Microsoft VBScript compilation (0x800A0401) Expected end of statement /cw1/withdraw_money2222.asp, line 16, column 75 rs.open =&quot;SELECT cl_balance FROM my_table WHERE cl_name =' &quot;&userName &&quot;'&quot;,myCon,1,3...

Part and Inventory Search

Back
Top