How to rectify overflow error occured?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • sreegans
    New Member
    • Apr 2008
    • 9

    How to rectify overflow error occured?

    Hi..

    i appended 4 to 5 records, after that overflow error had occured while executing the sql query in vb....
    Pl guide me how to solve this?

    Sree...
  • CyberSoftHari
    Recognized Expert Contributor
    • Sep 2007
    • 488

    #2
    Originally posted by sreegans
    Hi..
    i appended 4 to 5 records, after that overflow error had occured while executing the sql query in vb.
    Check the datatype in the fields, or if you use any for loop then check the loop flow.

    Comment

    • VijaySofist
      New Member
      • Jun 2007
      • 107

      #3
      Originally posted by sreegans
      Hi..

      i appended 4 to 5 records, after that overflow error had occured while executing the sql query in vb....
      Pl guide me how to solve this?

      Sree...
      Hi!

      Can you plz post your code here. So that we can quickly respond to your problem. As said by CyberSoftHari plz check whether you used any loop overflow.

      For Example Use
      ---------------------------
      For i=0 to rs.RecordCount - 1

      Instead of
      ---------------
      For i=0 to rs.RecordCount - 1


      All the Best
      With Regards
      Vijay. R

      Comment

      • sreegans
        New Member
        • Apr 2008
        • 9

        #4
        Hi...


        Got the output...
        Thks.

        Sree.

        Comment

        Working...