Click here to Skip to main content
15,915,328 members
Home / Discussions / Database
   

Database

 
GeneralRe: Difficult JOIN Pin
Mike Dimmick5-Feb-05 7:32
Mike Dimmick5-Feb-05 7:32 
GeneralRe: Difficult JOIN Pin
Luis Alonso Ramos5-Feb-05 8:13
Luis Alonso Ramos5-Feb-05 8:13 
Generali can't to insert a new row Pin
Sasuko4-Feb-05 6:38
Sasuko4-Feb-05 6:38 
GeneralRe: i can't to insert a new row Pin
tojamismis4-Feb-05 6:52
tojamismis4-Feb-05 6:52 
GeneralRe: i can't to insert a new row Pin
Sasuko4-Feb-05 11:00
Sasuko4-Feb-05 11:00 
GeneralRe: i can't to insert a new row Pin
tojamismis4-Feb-05 11:23
tojamismis4-Feb-05 11:23 
GeneralRe: i can't to insert a new row Pin
Sasuko4-Feb-05 11:30
Sasuko4-Feb-05 11:30 
GeneralRe: i can't to insert a new row Pin
tojamismis4-Feb-05 14:11
tojamismis4-Feb-05 14:11 
If you drag a data adapter to a form, then it will open a wizard for you.

No worries you can do this the manual way.

<br />
OleDbCommand cmdUpdate = new OleDbCommand(SQLCOMMAND);<br />
OleDbCommand cmdInsert = new OleDbCommand(SQLCOMMAND);<br />
<br />
myAdapter.UpdateCommand = cmdUpdate;<br />
myAdapter.InsertCommand = cmdInsert;<br />
<br />


And that's how it's done.

For a more detailed explanation you can look at the .NET sdk documentation or this example from csharpcorner.

http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=103[^]

Torin Blair

'In the immortal words of Socrates - "I drank what?".'


GeneralRe: i can't to insert a new row Pin
Sasuko4-Feb-05 22:29
Sasuko4-Feb-05 22:29 
GeneralRe: i can't to insert a new row Pin
Sasuko4-Feb-05 23:58
Sasuko4-Feb-05 23:58 
GeneralRe: i can't to insert a new row Pin
tojamismis5-Feb-05 4:49
tojamismis5-Feb-05 4:49 
GeneralRe: i can't to insert a new row Pin
Sasuko5-Feb-05 12:22
Sasuko5-Feb-05 12:22 
GeneralRe: i can't to insert a new row Pin
tojamismis5-Feb-05 4:47
tojamismis5-Feb-05 4:47 
GeneralRe: i can't to insert a new row Pin
tojamismis5-Feb-05 4:58
tojamismis5-Feb-05 4:58 
GeneralEnterprise manger Pin
Tom Wright4-Feb-05 5:50
Tom Wright4-Feb-05 5:50 
GeneralRe: Enterprise manger Pin
David Salter4-Feb-05 6:15
David Salter4-Feb-05 6:15 
GeneralRe: Enterprise manger Pin
Tom Wright4-Feb-05 6:43
Tom Wright4-Feb-05 6:43 
GeneralRe: Enterprise manger Pin
tojamismis4-Feb-05 6:43
tojamismis4-Feb-05 6:43 
GeneralRe: Enterprise manger Pin
Tom Wright4-Feb-05 6:45
Tom Wright4-Feb-05 6:45 
GeneralRe: Enterprise manger Pin
WoutL4-Feb-05 22:57
WoutL4-Feb-05 22:57 
GeneralExtended Procedures question Pin
Tom Wright4-Feb-05 5:45
Tom Wright4-Feb-05 5:45 
GeneralRe: Extended Procedures question Pin
David Salter4-Feb-05 6:13
David Salter4-Feb-05 6:13 
GeneralRe: Extended Procedures question Pin
Tom Wright4-Feb-05 6:46
Tom Wright4-Feb-05 6:46 
GeneralRe: Extended Procedures question Pin
David Salter4-Feb-05 7:03
David Salter4-Feb-05 7:03 
GeneralReally easy question! Pin
goldoche4-Feb-05 3:50
goldoche4-Feb-05 3:50 

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.