Click here to Skip to main content
15,887,676 members
Home / Discussions / C#
   

C#

 
GeneralRe: Accelerate dataset in c# Pin
mhmoud rawas16-Feb-04 1:14
mhmoud rawas16-Feb-04 1:14 
GeneralRe: Accelerate dataset in c# Pin
Heath Stewart16-Feb-04 5:33
protectorHeath Stewart16-Feb-04 5:33 
QuestionHow to display Hindi text in application Pin
gr8tushar14-Feb-04 20:15
gr8tushar14-Feb-04 20:15 
AnswerRe: How to display Hindi text in application Pin
Mazdak14-Feb-04 21:32
Mazdak14-Feb-04 21:32 
GeneralRe: How to display Hindi text in application Pin
Anonymous15-Feb-04 5:14
Anonymous15-Feb-04 5:14 
GeneralRe: How to display Hindi text in application Pin
Mazdak15-Feb-04 5:28
Mazdak15-Feb-04 5:28 
AnswerRe: How to display Hindi text in application Pin
Heath Stewart16-Feb-04 5:28
protectorHeath Stewart16-Feb-04 5:28 
GeneralBIG MISUNDERSTANDING: DataSet in n-tier App. Pin
mih_flyer14-Feb-04 18:55
mih_flyer14-Feb-04 18:55 
Hello, i used to develop my Web applications using the well know way.. Data layer, dataprovider class, bussiness layer, interface layer.. the dataprovider class is like this:

public class DataProvider
{
public void AddItem(Item item)
{
// SQL COMMANDS
}
public Item GetItem(int itemID)
{
// SQL Commands
return item;
}
}

the bussiness layer would look like this:
public class Item
{
int _itemID;
int _itemName;
int _blahBlah;
// properties
}

public class Items
{
public void AddNew(Item item)
{
DataProvider.AddItem(item);
}
public Item Get(int itemID)
{
Item item = DataProvider.GetItem(itemID);
return item;
}
}

well,, that was nice and lovely.. everything was ok,, until i had to do a windows Forms application... which i am not familiar with Frown | :(
the app i'm doing is kinda complicated.. its for a school. and i have to take care of students, subjects, administrators.. and so on Frown | :( therefore, if i use the old way i used to use in my web application.. i think i will have problems,, coz i will use alot of DataGrids..
Simply, i don't know what to do at all Frown | :(
i know about DataSet, but i don't know how to use it and n-tier application,, how to design the classes to deal with DataSets. should i do the old way but return datasets instead of particular objects "like Item for example", what the #$#$ should i do.. i'm really lost... Can u please help me

i just need to know how to design the layers.. just hints.. or main concept for designing classes that deals with DataSet...

thanx


GeneralRe: BIG MISUNDERSTANDING: DataSet in n-tier App. Pin
leppie14-Feb-04 19:45
leppie14-Feb-04 19:45 
GeneralRe: BIG MISUNDERSTANDING: DataSet in n-tier App. Pin
14-Feb-04 19:53
suss14-Feb-04 19:53 
GeneralRe: BIG MISUNDERSTANDING: DataSet in n-tier App. Pin
partyganger15-Feb-04 0:06
partyganger15-Feb-04 0:06 
GeneralRe: BIG MISUNDERSTANDING: DataSet in n-tier App. Pin
Heath Stewart16-Feb-04 5:22
protectorHeath Stewart16-Feb-04 5:22 
GeneralDefault Application Icon Pin
Verdant12314-Feb-04 18:40
Verdant12314-Feb-04 18:40 
GeneralRe: Default Application Icon Pin
Michael P Butler14-Feb-04 21:26
Michael P Butler14-Feb-04 21:26 
GeneralRe: Default Application Icon Pin
Verdant12314-Feb-04 21:38
Verdant12314-Feb-04 21:38 
GeneralRe: Default Application Icon Pin
Nick Parker15-Feb-04 3:55
protectorNick Parker15-Feb-04 3:55 
GeneralRe: Default Application Icon Pin
Verdant12315-Feb-04 14:01
Verdant12315-Feb-04 14:01 
GeneralString Array in C# Pin
Eric Houser14-Feb-04 15:48
Eric Houser14-Feb-04 15:48 
GeneralRe: String Array in C# Pin
Web.Liu14-Feb-04 16:17
Web.Liu14-Feb-04 16:17 
GeneralRe: String Array in C# Pin
Eric Houser14-Feb-04 17:03
Eric Houser14-Feb-04 17:03 
GeneralRe: String Array in C# Pin
leppie14-Feb-04 19:49
leppie14-Feb-04 19:49 
GeneralRe: String Array in C# Pin
Michael P Butler14-Feb-04 21:34
Michael P Butler14-Feb-04 21:34 
QuestionUnmanaged Dlls ? Pin
veselin_iordanov14-Feb-04 15:40
veselin_iordanov14-Feb-04 15:40 
AnswerRe: Unmanaged Dlls ? Pin
leppie14-Feb-04 19:51
leppie14-Feb-04 19:51 
GeneralRe: Unmanaged Dlls ? Pin
veselin_iordanov15-Feb-04 6:57
veselin_iordanov15-Feb-04 6:57 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.