Click here to Skip to main content
15,901,824 members
Home / Discussions / C#
   

C#

 
GeneralRe: Hide the Console in a Console Program Pin
Member 156981016-Mar-05 12:17
Member 156981016-Mar-05 12:17 
GeneralRe: Hide the Console in a Console Program Pin
Christian Graus16-Mar-05 12:23
protectorChristian Graus16-Mar-05 12:23 
GeneralRe: Hide the Console in a Console Program Pin
Colin Angus Mackay16-Mar-05 13:37
Colin Angus Mackay16-Mar-05 13:37 
GeneralRe: Hide the Console in a Console Program Pin
Member 156981017-Mar-05 8:02
Member 156981017-Mar-05 8:02 
GeneralInterfacing to camera Pin
taha mohamed16-Mar-05 4:26
taha mohamed16-Mar-05 4:26 
GeneralUpdating database Pin
16-Mar-05 4:01
suss16-Mar-05 4:01 
GeneralRe: Updating database Pin
Guinness4Strength16-Mar-05 4:39
Guinness4Strength16-Mar-05 4:39 
GeneralRe: Updating database Pin
Kodanda Pani16-Mar-05 17:31
Kodanda Pani16-Mar-05 17:31 
Hi,

Before using the data adapter for updating the data into the database we need to generate insert, update, delete commands using command builder.Use the following code for that.

SqlCommandBuilder bldr1 = new SqlCommandBuilder(adptr);
bldr1.QuotePrefix = "[";
bldr1.QuoteSuffix = "]";

after this give your update statement.

dataAdapter.Update(table);

Guess this will help you.

Thanks and Regards
SGS
GeneralSetting Environment Variables (Permanently) Pin
WiseBuddha16-Mar-05 3:26
WiseBuddha16-Mar-05 3:26 
GeneralRe: Setting Environment Variables (Permanently) Pin
Sebastian Schneider16-Mar-05 3:50
Sebastian Schneider16-Mar-05 3:50 
GeneralRe: Setting Environment Variables (Permanently) Pin
Sebastian Schneider16-Mar-05 3:56
Sebastian Schneider16-Mar-05 3:56 
GeneralRe: Setting Environment Variables (Permanently) Pin
WiseBuddha16-Mar-05 4:07
WiseBuddha16-Mar-05 4:07 
GeneralRe: Setting Environment Variables (Permanently) Pin
Christian Wikander16-Mar-05 4:21
Christian Wikander16-Mar-05 4:21 
GeneralTransparent background Pin
Christian Wikander16-Mar-05 2:54
Christian Wikander16-Mar-05 2:54 
GeneralRe: Transparent background Pin
lmuth16-Mar-05 3:01
lmuth16-Mar-05 3:01 
GeneralRe: Transparent background Pin
Christian Wikander16-Mar-05 3:02
Christian Wikander16-Mar-05 3:02 
GeneralRe: Transparent background Pin
lmuth16-Mar-05 3:13
lmuth16-Mar-05 3:13 
GeneralRe: Transparent background Pin
Christian Wikander16-Mar-05 3:18
Christian Wikander16-Mar-05 3:18 
GeneralRe: Transparent background Pin
lmuth16-Mar-05 3:32
lmuth16-Mar-05 3:32 
GeneralRe: Transparent background Pin
spif200116-Mar-05 3:35
spif200116-Mar-05 3:35 
GeneralRe: Transparent background Pin
Sebastian Schneider16-Mar-05 3:46
Sebastian Schneider16-Mar-05 3:46 
GeneralRe: Transparent background Pin
Christian Wikander16-Mar-05 4:09
Christian Wikander16-Mar-05 4:09 
GeneralRe: Transparent background Pin
mav.northwind16-Mar-05 4:56
mav.northwind16-Mar-05 4:56 
GeneralRe: Transparent background Pin
Christian Wikander16-Mar-05 20:36
Christian Wikander16-Mar-05 20:36 
GeneralRe: Transparent background Pin
Christian Wikander16-Mar-05 21:51
Christian Wikander16-Mar-05 21:51 

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.