Welcome, Guest: Register On Nairaland / LOGIN! / Trending / Recent / NewStats: 3,209,184 members, 8,005,218 topics. Date: Sunday, 17 November 2024 at 05:22 PM |
Nairaland Forum / Science/Technology / Programming / How Do I Read Integer Values From Oledb In C# (1299 Views)
Integer Types Should Inherit From ... / Integer: ICT Training And Job / Creating UWP Application In C# Or C++ (xaml) (2) (3) (4)
How Do I Read Integer Values From Oledb In C# by darealez(m): 7:17am On Dec 10, 2015 |
Using access database(Oledb) in C#, I've being able to read string values from the database using the While(Reader.read) { String name = reader.getstring(0); } but it ain't working for integer values "ID" . I tried using reader.getint16(0) all to no avail. |
Re: How Do I Read Integer Values From Oledb In C# by Nobody: 7:04pm On Dec 10, 2015 |
okay this I how to access Ms access db using System; using System.Data; using System.Data.OleDb; public class Connect { public static void Main () { String connect = "Provider=Microsoft.JET.OLEDB.4.0;data source=.\\Students .mdb" ; OleDbConnection con = new OleDbConnection(connect); con.Open(); Console.WriteLine( "List of male students database" ); con.Close(); } } The file blah.md you should copy it from your acess database . and give a the specific data you want . |
Re: How Do I Read Integer Values From Oledb In C# by Nobody: 7:14pm On Dec 10, 2015 |
see this code below it might help www.java2s.com/Code/CSharp/Database-ADO.net/Readdatafromoledbconnection.htm |
Re: How Do I Read Integer Values From Oledb In C# by darealez(m): 9:57pm On Dec 10, 2015 |
Finally got it Int32 da=reader.GetInt32(0); worked! Tnks(@all) |
Re: How Do I Read Integer Values From Oledb In C# by prof30(m): 6:30pm On Dec 11, 2015 |
Using access database(Oledb) in C#, I've being able to read string values from the database using the While(Reader.read) { String name = reader.getstring(0); } but it ain't working for integer values "ID" . I tried using reader.getint16(0) all to no avail. try while(reader.read()){ String number = reader.getint32(1).tostring(); textbox1.text = number; } if it did not work then change the string data type to int..... that is int number =....... |
(1) (Reply)
Exclusive Tips On Python Programming For Beginners / 5 Simple Way To Perform Redirection In PHP / MAC Photo Recovery
(Go Up)
Sections: politics (1) business autos (1) jobs (1) career education (1) romance computers phones travel sports fashion health religion celebs tv-movies music-radio literature webmasters programming techmarket Links: (1) (2) (3) (4) (5) (6) (7) (8) (9) (10) Nairaland - Copyright © 2005 - 2024 Oluwaseun Osewa. All rights reserved. See How To Advertise. 8 |