473,785 Members | 2,830 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Please help with an overflow error with database

Dan
Hi. I'm having a problem with searching a databse entry. I'm new to dotnet
and still trying to figure some things out.

In order to locate a row in an access databse file .mdb, i am using this
call

Dim dr As DataRow
dr = Me.DsMaster.Tab les("MasterList ").Rows.Find(Me .txtScan.Text)

where me.txtscan.text is a value from 2 to 9323493000236.
when searching for smaller values i have nu problem. but when i search for
the larger values i get an error.

An unhandled exception of type 'System.Overflo wException' occurred in
mscorlib.dll
Additional information: Value was either too large or too small for an
Int32.

I have tried converting but i still get the same error. I need to be able to
search for these values as they are unit ID numbers. Is there a way to do
this?
Perhaps there is a better way to search the database for the row containing
the data? Any help would be great.

Thanks alot

Dan Butler
ba********@hotm ail.com
Nov 20 '05 #1
7 2207
The maximum number of rows that a DataTable can store is 16,777,216. Data
sets contain data tables.
For more info:
http://tinyurl.com/37sxa
"Dan" <ba********@hot mail.com> wrote in message
news:pRsJb.3724 6$gN.8936@fed1r ead05...
Hi. I'm having a problem with searching a databse entry. I'm new to dotnet
and still trying to figure some things out.

In order to locate a row in an access databse file .mdb, i am using this
call

Dim dr As DataRow
dr = Me.DsMaster.Tab les("MasterList ").Rows.Find(Me .txtScan.Text)

where me.txtscan.text is a value from 2 to 9323493000236.
when searching for smaller values i have nu problem. but when i search for
the larger values i get an error.

An unhandled exception of type 'System.Overflo wException' occurred in
mscorlib.dll
Additional information: Value was either too large or too small for an
Int32.

I have tried converting but i still get the same error. I need to be able to search for these values as they are unit ID numbers. Is there a way to do
this?
Perhaps there is a better way to search the database for the row containing the data? Any help would be great.

Thanks alot

Dan Butler
ba********@hotm ail.com

Nov 20 '05 #2
Well, look at the size of the number

9,323,493,000,2 36

Int32:=

2,147,483,647

There is your problem.

Regards - OHM

Dan wrote:
Hi. I'm having a problem with searching a databse entry. I'm new to
dotnet and still trying to figure some things out.

In order to locate a row in an access databse file .mdb, i am using
this call

Dim dr As DataRow
dr = Me.DsMaster.Tab les("MasterList ").Rows.Find(Me .txtScan.Text)

where me.txtscan.text is a value from 2 to 9323493000236.
when searching for smaller values i have nu problem. but when i
search for the larger values i get an error.

An unhandled exception of type 'System.Overflo wException' occurred in
mscorlib.dll
Additional information: Value was either too large or too small for an
Int32.

I have tried converting but i still get the same error. I need to be
able to search for these values as they are unit ID numbers. Is there
a way to do this?
Perhaps there is a better way to search the database for the row
containing the data? Any help would be great.

Thanks alot

Dan Butler
ba********@hotm ail.com


--
Best Regards - OHM

O_H_M{at}BTInte rnet{dot}com
Nov 20 '05 #3
Dan
Thanks for the responses!
Maybe if i explain what i am working with, perhaps someone could help me
out.
I have a database with 15,150 rows. The numbers in column one, representing
an ID range from 2 to 9323493000236. All uniquie entries, no duplicates.
Since there are only 15,000 rows (or so) you can tell that alot of number
skipping is going on.
The way it wors is the user enters in a barcode number via hand or scanner.
The program then is supposed to search for the value. However, when i use
the find i spoke of in my earlier post, i was getting the overflow error. I
figured since the data was within the acceptable amount of rows, I would be
able to search for it? I think i am probably going about searching for the
corresponding row (or index) the wrong way.

Thanks again
Dan Butler
Ba********@hotm ail.com
"Dan" <ba********@hot mail.com> wrote in message
news:pRsJb.3724 6$gN.8936@fed1r ead05...
Hi. I'm having a problem with searching a databse entry. I'm new to dotnet
and still trying to figure some things out.

In order to locate a row in an access databse file .mdb, i am using this
call

Dim dr As DataRow
dr = Me.DsMaster.Tab les("MasterList ").Rows.Find(Me .txtScan.Text)

where me.txtscan.text is a value from 2 to 9323493000236.
when searching for smaller values i have nu problem. but when i search for
the larger values i get an error.

An unhandled exception of type 'System.Overflo wException' occurred in
mscorlib.dll
Additional information: Value was either too large or too small for an
Int32.

I have tried converting but i still get the same error. I need to be able to search for these values as they are unit ID numbers. Is there a way to do
this?
Perhaps there is a better way to search the database for the row containing the data? Any help would be great.

Thanks alot

Dan Butler
ba********@hotm ail.com

Nov 20 '05 #4
You might try searching using a String instead of and Int32.

"Dan" <ba********@hot mail.com> wrote in message
news:ORGJb.3732 0$gN.32105@fed1 read05...
Thanks for the responses!
Maybe if i explain what i am working with, perhaps someone could help me
out.
I have a database with 15,150 rows. The numbers in column one, representing an ID range from 2 to 9323493000236. All uniquie entries, no duplicates.
Since there are only 15,000 rows (or so) you can tell that alot of number
skipping is going on.
The way it wors is the user enters in a barcode number via hand or scanner. The program then is supposed to search for the value. However, when i use
the find i spoke of in my earlier post, i was getting the overflow error. I figured since the data was within the acceptable amount of rows, I would be able to search for it? I think i am probably going about searching for the
corresponding row (or index) the wrong way.

Thanks again
Dan Butler
Ba********@hotm ail.com
"Dan" <ba********@hot mail.com> wrote in message
news:pRsJb.3724 6$gN.8936@fed1r ead05...
Hi. I'm having a problem with searching a databse entry. I'm new to dotnet and still trying to figure some things out.

In order to locate a row in an access databse file .mdb, i am using this
call

Dim dr As DataRow
dr = Me.DsMaster.Tab les("MasterList ").Rows.Find(Me .txtScan.Text)

where me.txtscan.text is a value from 2 to 9323493000236.
when searching for smaller values i have nu problem. but when i search for the larger values i get an error.

An unhandled exception of type 'System.Overflo wException' occurred in
mscorlib.dll
Additional information: Value was either too large or too small for an
Int32.

I have tried converting but i still get the same error. I need to be able
to
search for these values as they are unit ID numbers. Is there a way to

do this?
Perhaps there is a better way to search the database for the row

containing
the data? Any help would be great.

Thanks alot

Dan Butler
ba********@hotm ail.com


Nov 20 '05 #5
Cor
Hi Dan,

Why not first fill a little dataset with a "where" clause or use a
datareader with that?

Would give you a lot of more performance I think

Cor
Thanks for the responses!
Maybe if i explain what i am working with, perhaps someone could help me
out.
I have a database with 15,150 rows. The numbers in column one, representing an ID range from 2 to 9323493000236. All uniquie entries, no duplicates.
Since there are only 15,000 rows (or so) you can tell that alot of number
skipping is going on.
The way it wors is the user enters in a barcode number via hand or scanner. The program then is supposed to search for the value. However, when i use
the find i spoke of in my earlier post, i was getting the overflow error. I figured since the data was within the acceptable amount of rows, I would be able to search for it? I think i am probably going about searching for the
corresponding row (or index) the wrong way.

Nov 20 '05 #6
That would be a good idea unless you where searching through the data with a
lot.
Another option would be to use a DataView.

"Cor" <no*@non.com> wrote in message
news:Op******** ******@TK2MSFTN GP09.phx.gbl...
Hi Dan,

Why not first fill a little dataset with a "where" clause or use a
datareader with that?

Would give you a lot of more performance I think

Cor
Thanks for the responses!
Maybe if i explain what i am working with, perhaps someone could help me
out.
I have a database with 15,150 rows. The numbers in column one, representing
an ID range from 2 to 9323493000236. All uniquie entries, no duplicates.
Since there are only 15,000 rows (or so) you can tell that alot of number skipping is going on.
The way it wors is the user enters in a barcode number via hand or

scanner.
The program then is supposed to search for the value. However, when i use the find i spoke of in my earlier post, i was getting the overflow error. I
figured since the data was within the acceptable amount of rows, I would

be
able to search for it? I think i am probably going about searching for

the corresponding row (or index) the wrong way.


Nov 20 '05 #7
Dan,
What is the type of your primary key column? You are passing a string
to search with boxed as an object which may be causing some of the problems.
Try calling Convert.Toxxx(M e.txtScan.Text) where xxx is the type of the
column.
If the column is of type char instead of varchar you may have to pad the
string appropriately first.

Ron Allen
"Dan" <ba********@hot mail.com> wrote in message
news:ORGJb.3732 0$gN.32105@fed1 read05...
Thanks for the responses!
Maybe if i explain what i am working with, perhaps someone could help me
out.
I have a database with 15,150 rows. The numbers in column one, representing an ID range from 2 to 9323493000236. All uniquie entries, no duplicates.
Since there are only 15,000 rows (or so) you can tell that alot of number
skipping is going on.
The way it wors is the user enters in a barcode number via hand or scanner. The program then is supposed to search for the value. However, when i use
the find i spoke of in my earlier post, i was getting the overflow error. I figured since the data was within the acceptable amount of rows, I would be able to search for it? I think i am probably going about searching for the
corresponding row (or index) the wrong way.

Thanks again
Dan Butler
Ba********@hotm ail.com
"Dan" <ba********@hot mail.com> wrote in message
news:pRsJb.3724 6$gN.8936@fed1r ead05...
Hi. I'm having a problem with searching a databse entry. I'm new to dotnet and still trying to figure some things out.

In order to locate a row in an access databse file .mdb, i am using this
call

Dim dr As DataRow
dr = Me.DsMaster.Tab les("MasterList ").Rows.Find(Me .txtScan.Text)

where me.txtscan.text is a value from 2 to 9323493000236.
when searching for smaller values i have nu problem. but when i search for the larger values i get an error.

An unhandled exception of type 'System.Overflo wException' occurred in
mscorlib.dll
Additional information: Value was either too large or too small for an
Int32.

I have tried converting but i still get the same error. I need to be able
to
search for these values as they are unit ID numbers. Is there a way to

do this?
Perhaps there is a better way to search the database for the row

containing
the data? Any help would be great.

Thanks alot

Dan Butler
ba********@hotm ail.com


Nov 20 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
5606
by: xixi | last post by:
i am using db2 udb v8.1 on win 64 bit, i found this on my db2diag.log 2003-11-12-13.20.05.550001 Instance:DB2 Node:000 PID:1840(db2syscs.exe) TID:3068 Appid:AC100453.G761.00F8D15749BE access plan manager sqlra_cache_mem_please Probe:21 Database:NJIPD Package Cache Number Overflows 0x000006FAFFBF141C : 0x00000001 .... 2003-11-12-13.20.05.780000 Instance:DB2 Node:000
6
6497
by: Not Me | last post by:
Hi, I'm getting the datetime field overflow error using odbc to connect to an sql database from access. This happens when I try to enter the date 13/01/1899. It did happen when using smalldatetime, which apparently does have that problem of only going as far back as 1900, but since changing to datetime the error still pops up. Is there anything I can do?
15
2759
by: Buck Rogers | last post by:
Hi guys! Task 1: Write a program which presents a menu with 5 options. The 5th option quits the program. Each option should execute a system command using system(). Below is my humble offering. =================================================== #include <stdio.h> #include <stdlib.h>
4
12898
by: Chua Wen Ching | last post by:
Thanks Derek... Okay i had another question.. my program runs smoothly for the first minute, after 1 minute... suddenly it breaks and display this error: do you know what is the cause of this problem...
0
938
by: paragdere | last post by:
Hi all, I am using a recursive function to create a tree. The function works fine when the tree being created has few nodes, but if this count is increased above 90, I get a stack overflow error. Please note that : 1) Error occurs on windows 2003 server, not on 2000 server. In 2000, it works all fine
1
563
by: Steve Fraser | last post by:
I am wondering if anyone can help me out. I have an Access Database that has been running since forever. Now when I try to open a form I get the "Run-time error '6' Overflow message and a window asking me to debug or end. Here is what i see on debug: Private Sub CmdPeopleAdd_Click() Dim db As Database Dim Rs As Recordset Set db = CurrentDb Dim SQL As String
4
548
by: vir | last post by:
we use an E-office application where server is SQL server 7.0 and client side its MS access In our VB program we use ASP to synchronization and update client database from server and each table is updated afresh . This program was running fine and all tables were being Updated until number of records in 1 table went above 3000 . Now this table gives overflow error while others are being updated correctly . the error is 'Error in...
1
3114
by: innivive | last post by:
I am having a problem with having margins display correctly in IE7, Firefox and Safari. I am not sure if it is the "double margin error" or something else. Any help would be appreciated. The file tabs at the top content area should be flush left and the light blue frame should line up under the logo graphic. Looks great in Safari and Firefox but I can't get it to line up in IE7. http://www.thinairdigital.com/tdi Any help would be...
0
1505
by: bradman1861 | last post by:
hello i am getting a overflow error when I try to run this: here is the error: System.Data.OleDb.OleDbException was unhandled Message="Overflow" Source="Microsoft JET Database Engine" ErrorCode=-2147217833 StackTrace: at System.Data.OleDb.OleDbCommand.ExecuteCommandTextErrorHandling(OleDbHResult hr)
0
9645
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10330
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10153
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10093
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8976
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
7500
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6740
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5511
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4053
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.