Click here to Skip to main content
16,004,806 members
Home / Discussions / Database
   

Database

 
QuestionProbelm while Filtering DateTime Pin
indiaone2-Aug-06 0:37
indiaone2-Aug-06 0:37 
AnswerRe: problem in getting datetime value Pin
Colin Angus Mackay2-Aug-06 0:46
Colin Angus Mackay2-Aug-06 0:46 
Questionado.net Table Pin
srkt1-Aug-06 21:14
srkt1-Aug-06 21:14 
AnswerRe: ado.net Table Pin
Colin Angus Mackay1-Aug-06 23:02
Colin Angus Mackay1-Aug-06 23:02 
Questiondatabase question Pin
skyeddie1-Aug-06 20:26
skyeddie1-Aug-06 20:26 
AnswerRe: database question Pin
Colin Angus Mackay1-Aug-06 23:04
Colin Angus Mackay1-Aug-06 23:04 
QuestionAdding Row to Access database table Pin
dsovino1-Aug-06 6:44
dsovino1-Aug-06 6:44 
AnswerRe: Adding Row to Access database table Pin
Stephen McGuire2-Aug-06 11:11
Stephen McGuire2-Aug-06 11:11 
You will probably need to use an OleDbCommand object.
Set the Command.Text property and other properties and then execute the command.

Something like this:
You need to create your CommandObject and ConnectionObject first...

CommandObject = New OleDbCommand( _
"INSERT INTO archivo (archivo, [ruta archivo], formato, tamaño, muestreo, bitrate, canales, duracionSeg, [tipo de audio]) " & _
"VALUES (" & file &", " & path &", " & format &", " & size &", " & sampling &", " & rate &", " & channels &", " & lenght &", " & audiotype &")", ConnectionObject)
'Open connection
CommandObject.ExecuteNonQuery()
'Close connection

Example is VB.NET but it is similar in C#

Steve
GeneralRe: Adding Row to Access database table Pin
dsovino3-Aug-06 12:41
dsovino3-Aug-06 12:41 
GeneralRe: Adding Row to Access database table Pin
Stephen McGuire3-Aug-06 14:23
Stephen McGuire3-Aug-06 14:23 
QuestionRe: Adding Row to Access database table Pin
dsovino7-Aug-06 6:16
dsovino7-Aug-06 6:16 
AnswerRe: Adding Row to Access database table Pin
Stephen McGuire8-Aug-06 2:43
Stephen McGuire8-Aug-06 2:43 
JokeRe: Adding Row to Access database table Pin
dsovino8-Aug-06 4:01
dsovino8-Aug-06 4:01 
GeneralRe: Adding Row to Access database table Pin
Stephen McGuire8-Aug-06 7:19
Stephen McGuire8-Aug-06 7:19 
QuestionSychronization in C# Pin
Rabbit171-Aug-06 5:22
Rabbit171-Aug-06 5:22 
AnswerRe: Sychronization in C# Pin
Ennis Ray Lynch, Jr.1-Aug-06 10:39
Ennis Ray Lynch, Jr.1-Aug-06 10:39 
GeneralRe: Sychronization in C# Pin
Rabbit171-Aug-06 12:49
Rabbit171-Aug-06 12:49 
Generalnope Pin
Ennis Ray Lynch, Jr.1-Aug-06 18:27
Ennis Ray Lynch, Jr.1-Aug-06 18:27 
QuestionProblems updating a dataset Pin
newbjohny1-Aug-06 4:16
newbjohny1-Aug-06 4:16 
AnswerRe: Problems updating a dataset Pin
Paul Brower3-Aug-06 10:50
Paul Brower3-Aug-06 10:50 
GeneralRe: Problems updating a dataset Pin
newbjohny4-Aug-06 0:33
newbjohny4-Aug-06 0:33 
QuestionHow to restore records from table which is dropped. Pin
Abhishek Joshi1-Aug-06 2:58
Abhishek Joshi1-Aug-06 2:58 
AnswerRe: How to restore records from table which is dropped. Pin
ToddHileHoffer1-Aug-06 3:05
ToddHileHoffer1-Aug-06 3:05 
QuestionHow to retrieve records from a ADODB with c# Pin
VanEtienne1-Aug-06 2:57
VanEtienne1-Aug-06 2:57 
AnswerRe: creating special relations between datatables Pin
ToddHileHoffer1-Aug-06 2:52
ToddHileHoffer1-Aug-06 2:52 

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.