473,796 Members | 2,676 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

specified cast is invalid

109 New Member
Hi

I am new to programming. learning c# , asp.net.

write a simple program: to get the id from database and save it to arraylist to find the max(id).

and getting exception: Specified cast is invalid.

at line: int low = (int)arrm[i];

Appreciate any help.

Thanks
Sep 12 '07 #1
27 2926
Shashi Sadasivan
1,435 Recognized Expert Top Contributor
Hi

I am new to programming. learning c# , asp.net.

write a simple program: to get the id from database and save it to arraylist to find the max(id).

and getting exception: Specified cast is invalid.

at line: int low = (int)arrm[i];

Appreciate any help.

Thanks
is arrm your table or the row?
if it is the table then arrm[i] is a row,
maybe what you want is
Expand|Select|Wrap|Line Numbers
  1. int i = (int)arrm[i][j];
Sep 12 '07 #2
arial
109 New Member
arram is a object of my array list.

Arraylist arrm = new Arraylist();

and here is part of my script:

cmd4.CommandTex t = "select id from dpt" ;
cmd4.ExecuteNon Query();
SqlDataReader reader = cmd4.ExecuteRea der();
while(reader.Re ad())
{
values = new object[reader.FieldCou nt];
reader.GetValue s(values);
arrm.Add(values );
}
arrm.Sort();
reader.Close();
cmd4.Connection .Close();

int max = 0;
for (int i = 0; i < arrm.Count; i++)
{
int min = (int)arrm[i];
if (max < min)
max = min;
}

}

Thanks,
Sep 13 '07 #3
Plater
7,872 Recognized Expert Expert
You could use the .GetType().Name on the arrm[i] to see what type the value is actually being returned as.

I would guess that if ID is defined as say "bigint" in the database, you would need to cast it to "Int64" and not just "int"
Sep 13 '07 #4
r035198x
13,262 MVP
arram is a object of my array list.

Arraylist arrm = new Arraylist();

and here is part of my script:

cmd4.CommandTex t = "select id from dpt" ;
cmd4.ExecuteNon Query();
SqlDataReader reader = cmd4.ExecuteRea der();
while(reader.Re ad())
{
values = new object[reader.FieldCou nt];
reader.GetValue s(values);
arrm.Add(values );
}
arrm.Sort();
reader.Close();
cmd4.Connection .Close();

int max = 0;
for (int i = 0; i < arrm.Count; i++)
{
int min = (int)arrm[i];
if (max < min)
max = min;
}

}

Thanks,
1.) Please use code tags when posting code.
2.) You have
Expand|Select|Wrap|Line Numbers
  1. arrm.Add(values);
which adds an array of objects into an arraylist. Then you have
Expand|Select|Wrap|Line Numbers
  1.              int min = (int)arrm[i];
which won't work because you're now trying to cast an object array to an int.
Sep 13 '07 #5
arial
109 New Member
ID is varchar field in sql database.

and .Getvalue().Nam e returns arraylist.

What I want to do is, find a max ID from table. I also tried Convert.ToInt32 (arrm[i]), but still no luck on getting what I want.

Thanks,
Sep 13 '07 #6
Plater
7,872 Recognized Expert Expert
There are SQL statements that will return to you the largest one. Google some SQL examples about it.

What r0 said was right (I missed it, good catch on his part) you are trying to cast an array of objects to an intiger.

And it's GetType().Name, which is available for everything and will identify what the object type is.
You don't need it now that it's been identified as an object[].
Sep 13 '07 #7
arial
109 New Member
Yes, I know sql statement will give me largest value but I need to use simple
select id from dpt and store this query result into array and find a max because I am going to use this array to do some other stuff.

If I can successfully get my first part right get max value and then it would be easy do the other parts.

so, is there a way to convert object type to int?

Thanks
Sep 13 '07 #8
Plater
7,872 Recognized Expert Expert
Since you are only returning a single value, using getValues() is a waste.

Expand|Select|Wrap|Line Numbers
  1. cmd4.CommandText = "select id from dpt" ; 
  2. cmd4.ExecuteNonQuery();
  3. SqlDataReader reader = cmd4.ExecuteReader();
  4. while(reader.Read())
  5. {
  6. int temp=reader.GetInt32(1);
  7. arrm.Add(temp);
  8. }
  9. arrm.Sort();
  10. reader.Close();
  11. cmd4.Connection.Close();
  12.  
  13. int max = 0;
  14. for (int i = 0; i < arrm.Count; i++)
  15. {
  16. int min = (int)arrm[i];
  17. if (max < min)
  18. max = min;
  19. }
  20.  
  21. }
  22.  
This might not be exactly right as I can't currently check it in a project, but hopefully it will make more sense as now your (int)arrm[i] shouldn't throw an exception.
Sep 14 '07 #9
arial
109 New Member
Thanks Plater for all your help.

By after making a changes you suggested Now I am getting new error:

Index was outside the bounds of the array.

at line: int temp=reader.Get Int32(1);
Sep 14 '07 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

4
1313
by: .Net Sports | last post by:
I'm getting a "Specified cast is not valid" error that does not point to the line with the code in error, but instead :An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below. The stack trace is just a lot of system class stuff with no real explanation of where the error is. Wondering the...
10
1794
by: Arjen | last post by:
Hello, Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.InvalidCastException: Specified cast is not valid. Line 176. Source Error:
5
3439
by: Nick Flandry | last post by:
I'm running into an Invalid Cast Exception on an ASP.NET application that runs fine in my development environment (Win2K server running IIS 5) and a test environment (also Win2K server running IIS 5), but fails on IIS 6 running on a Win2003 server. The web uses Pages derived from a custom class I wrote (which itself derives from Page) to provide some common functionality. The Page_Load handler the failing webpage starts out like this: ...
3
10519
by: PK9 | last post by:
I am looking for assistance in pinpointing the cause of the following exception. I am getting a "Specified Cast is not valid" exception on my page. I am trying to populate a datagrid. One of my columns is a template column where I'd like to evaluate the data brought back from the db and populate the column with a "Y" or "N" depending on the value in the db. Here is the code that is causing it as well as the error (below). ERROR...
6
6424
by: Biva | last post by:
Hello All, Please help. I get the following error from my webpage: System.InvalidCastException: Specified cast is not valid. at Time.MaintAtRiskProjects.UpdateProject(String Project, String AtRiskCode, String Comment) Code for UpdateProject(String Project, String AtRiskCode, String Comment) is:
2
1627
by: James | last post by:
I'm a newbie to vb.net, and classes were something I never played with in "standard" vb, but... Basically,part of my program comprises of some tcp/ip stuff, and I used the following code to start off the connection: Public Sub Main() Const PortNumber As Integer = 8022 Dim tcpListener As New TcpListener(PortNumber) tcpListener.Start()
0
1392
by: df | last post by:
I'm seeing a strange problem in the Web App config tool: After creating a role and a user, going back to the Security tab home page, I get a "Specified cast is not valid" error. I've set up my web application to use SQL Server to store the Membership database using aspnet_regsql.exe and have successfully opened the Web Config Tool. Then, I create a role, and go look in the SQL Server aspnet_roles table, and there is the role. All...
2
3532
by: Kashiefah | last post by:
Hi, I keep on receiving this error when I click on the edit email link from the datagrid:Specified cast is not valid. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.InvalidCastException: Specified cast is not valid. Source Error: Line 44: while...
1
1397
by: one320b | last post by:
I've read through numerous postings by other users here but was not able to find the solution to my issue. It's probably a simple one, but it's racking me at this point. I have two databases in MS Access with a table "Affiliation". Both contain four columns/fields. I am writing an application to pull some data from Table1's affiliation table and inserting it into Table2's affiliation table. The datatypes are all the same for all four fields...
0
9525
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10221
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...
0
10003
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9050
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
7546
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
6785
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
5440
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5569
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4115
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.