Click here to Skip to main content
15,922,015 members
Home / Discussions / C#
   

C#

 
Questionplease help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
nidhelp16-Aug-05 6:59
nidhelp16-Aug-05 6:59 
AnswerRe: please help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
Mohamad Al Husseiny16-Aug-05 7:19
Mohamad Al Husseiny16-Aug-05 7:19 
GeneralRe: please help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
nidhelp16-Aug-05 7:41
nidhelp16-Aug-05 7:41 
GeneralRe: please help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
Mohamad Al Husseiny16-Aug-05 9:26
Mohamad Al Husseiny16-Aug-05 9:26 
GeneralRe: please help! this is urgent> how to retrieve data to my tabpage without using data form wizard? Pin
nidhelp16-Aug-05 17:43
nidhelp16-Aug-05 17:43 
GeneralDataSet Pin
samoore16-Aug-05 5:37
samoore16-Aug-05 5:37 
GeneralRe: DataSet Pin
Alomgir Miah16-Aug-05 6:11
Alomgir Miah16-Aug-05 6:11 
GeneralRe: DataSet Pin
Mohamad Al Husseiny16-Aug-05 7:06
Mohamad Al Husseiny16-Aug-05 7:06 
As Alomgir Said you can Use DataAdabter and CommandBuilder
But at first i think you need to read tutorial or book about ado.net for now you need to do somthing like this
SqlDataAdapter da = new SqlDataAdapter(selectSql, connString);
SqlCommandBuilder cb = new SqlCommandBuilder(da);
da.Fill(ds, "Customers");
da.Update(ds, "Customers");

But note that CommandBuilder not come free without price
It has limitations in areas like stored procedure,joins and concurrency handling
So it is good practice to build your Command by yourself



MCAD
GeneralSerialization Help Pin
comingsoon16-Aug-05 5:21
comingsoon16-Aug-05 5:21 
GeneralWinXP Events Pin
Member 217623716-Aug-05 5:07
Member 217623716-Aug-05 5:07 
GeneralRe: WinXP Events Pin
snouto16-Aug-05 7:58
snouto16-Aug-05 7:58 
GeneralRe: WinXP Events Pin
Mohamad Al Husseiny16-Aug-05 8:01
Mohamad Al Husseiny16-Aug-05 8:01 
GeneralPointers in C# Pin
praveenpreky16-Aug-05 4:18
praveenpreky16-Aug-05 4:18 
GeneralRe: Pointers in C# Pin
S. Senthil Kumar16-Aug-05 4:32
S. Senthil Kumar16-Aug-05 4:32 
GeneralRe: Pointers in C# Pin
praveenpreky16-Aug-05 4:38
praveenpreky16-Aug-05 4:38 
GeneralRe: Pointers in C# Pin
S. Senthil Kumar16-Aug-05 7:31
S. Senthil Kumar16-Aug-05 7:31 
GeneralRe: Pointers in C# -IntPtr Pin
praveenpreky16-Aug-05 18:39
praveenpreky16-Aug-05 18:39 
GeneralRe: Pointers in C# -IntPtr Pin
S. Senthil Kumar16-Aug-05 19:36
S. Senthil Kumar16-Aug-05 19:36 
GeneralRe: Pointers in C# -IntPtr Pin
praveenpreky16-Aug-05 20:14
praveenpreky16-Aug-05 20:14 
GeneralRe: Pointers in C# -IntPtr Pin
S. Senthil Kumar17-Aug-05 0:53
S. Senthil Kumar17-Aug-05 0:53 
GeneralRe: Pointers in C# -IntPtr Pin
praveenpreky17-Aug-05 3:53
praveenpreky17-Aug-05 3:53 
Generalserialize Value in a CData section Pin
Stefan Hornung16-Aug-05 4:10
Stefan Hornung16-Aug-05 4:10 
GeneralRe: serialize Value in a CData section Pin
Alomgir Miah16-Aug-05 6:29
Alomgir Miah16-Aug-05 6:29 
GeneralRe: serialize Value in a CData section Pin
Stefan Hornung17-Aug-05 20:47
Stefan Hornung17-Aug-05 20:47 
GeneralRe: serialize Value in a CData section Pin
Alomgir Miah18-Aug-05 3:44
Alomgir Miah18-Aug-05 3:44 

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.