Small Projects

  • Thread starter Thread starter A.J
  • Start date Start date
A

A.J

Could you please suggest me some small projects that i can make using
ADO.NET. I want to use msaccess as the database. Currently i want to
work on datareader. Thanks in advance
 
Are you just looking for projects to play around with in order to try and
learn the technology?
If so, how about an application to allow you to catalogue your CD/Music
collection, then search for songs by artist/album/type of music etc...
 
Well, off the top of my head, you would need to set up a small database, and
create a Windows Forms application with a bunch of buttons, dropdown lists,
datagrids, textboxes etc. and some adonet code including Connection objects,
DataReader objects, Command objects DataTable objects...

It doesn't have to be about your music collection, but IMO that is a good
example.

Think about how such an application might work, and it should be fairly
clear what 'bits' you need to know to make it happen...
 
A.J said:
Could you please suggest me some small projects that i can make using
ADO.NET. I want to use msaccess as the database. Currently i want to
work on datareader. Thanks in advance

Also, along with the other example (music collection), try examining the
Northwind database that comes with Microsoft Access. Import the access
database into SQL Server (there is some SQL files that will actually create
and insert the data into the database instead of importing). Then write an
application that mimics the Microsoft Access Database application created by
Microsoft ...

HTH,

Mythran
 
Back
Top