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 SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: raj8
  • Order by date
  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...
  15. raj8

    updating existing recordset

    do u have any suggestions about this? thanks 4 ur help
  16. raj8

    updating existing recordset

    if i type in RS.Open sql ,myCon,adOpenStatic,adLockOptimistic, adCmdTable i still get same error
  17. raj8

    updating existing recordset

    hi i get this message when i made changes Error Type: ADODB.Recordset (0x800A0E79) Operation is not allowed when the object is open. /cw1/withdraw_money.asp, line 22 line 22 is: RS.Open sql , myCon, adLockOptimistic
  18. raj8

    updating existing recordset

    hi I get this error message in withdraw_money.asp, plz someone help thanks in advance here are the error details Error Type: Microsoft VBScript runtime (0x800A01B6) Object doesn't support this property or method: 'Update' withdraw_money.asp, line 30 here is my code: ================== <%...

Part and Inventory Search

Back
Top