Home | Forums | Contact | Search | Syndication  
 
 [login] [create account]   Friday, May 17, 2024 
 
slxdeveloper.com Community Forums  
   
The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
 Architect Forums - ADO General
Forum to discuss ADO specific questions for use with SalesLogix. View the code of conduct for posting guidelines.
Forums RSS Feed


 Back to Forum List | Back to ADO General | New ThreadView:  Search:  
 Author  Thread: C# .NET OLEDB DataSets
RJ Samp
Posts: 973
Top 10 forum poster: 973 posts
 
C# .NET OLEDB DataSetsYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 07 Aug 07 8:50 AM
How do I convert a String to Integer......Database date to DateTime?
What's the DateTime value for a DbNull?

Not talking DataReader here, but an OLEDB DataSet.

How do you all handle a 50 column dataset with nulls and datatype conversions? Maybe I should COALESCE each field in the SELECT statement of the OLEDBCommand.TEXT?

Thanks
[Reply][Quote]
Ryan Farley
Posts: 2265
slxdeveloper.com Site Administrator
Top 10 forum poster: 2265 posts
 
Re: C# .NET OLEDB DataSetsYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 07 Aug 07 4:20 PM
To convert the datatype of a value there are several different ways to do so:

ie:

int val = Convert.ToInt32(strval);
or
int val = int.Parse(strval);
or
int val = (int)objval;

If you're working with a strongly-typed DataSet you can use the DbType types represented by the values in each DataRow.

Got a specific question?
[Reply][Quote]
RJ Samp
Posts: 973
Top 10 forum poster: 973 posts
 
Re: C# .NET OLEDB DataSetsYour last visit to this thread was on 1/1/1970 12:00:00 AM
Posted: 07 Aug 07 4:34 PM
Well I saw all of the GetInt32, GetSQLString, GetSQLMoney stuff for the data reader, and didn't see the same stuff for a DataSet.

So when I did an
Int32 Val = (Int32)ds[0] (db column was a Long integer)
int val1 = (int)ds[1] (where the db column was a String)
and it blew up I panicked....

Now I've figured out that long means Int64 so I'll play around with this and get back to you.

THANKS!

[Reply][Quote]
 Page 1 of 1 
  You can subscribe to receive a daily forum digest in your user profile. View the site code of conduct for posting guidelines.

   Forum RSS Feed - Subscribe to the forum RSS feed to keep on top of the latest forum activity!
 

 
 slxdeveloper.com is brought to you courtesy of Ryan Farley & Customer FX Corporation.
 This site, and all contents herein, are Copyright © 2024 Customer FX Corporation. The information and opinions expressed here are not endorsed by Sage Software.

code of conduct | Subscribe to the slxdeveloper.com Latest Article RSS feed
   
 
page cache (param): 5/17/2024 6:03:06 AM