Click here to Skip to main content
15,896,201 members
Home / Discussions / C#
   

C#

 
GeneralRe: OpenDialogFile Issue Pin
OriginalGriff5-Dec-11 20:47
mveOriginalGriff5-Dec-11 20:47 
GeneralRe: OpenDialogFile Issue Pin
BillWoodruff6-Dec-11 9:54
professionalBillWoodruff6-Dec-11 9:54 
AnswerRe: OpenDialogFile Issue Pin
SilimSayo5-Dec-11 9:14
SilimSayo5-Dec-11 9:14 
QuestionDrawing wave forms from Wave files Pin
Federico Paolillo5-Dec-11 4:45
Federico Paolillo5-Dec-11 4:45 
AnswerRe: Drawing wave forms from Wave files PinPopular
Luc Pattyn5-Dec-11 5:11
sitebuilderLuc Pattyn5-Dec-11 5:11 
GeneralRe: Drawing wave forms from Wave files Pin
Federico Paolillo5-Dec-11 5:28
Federico Paolillo5-Dec-11 5:28 
AnswerRe: Drawing wave forms from Wave files Pin
Luc Pattyn5-Dec-11 6:08
sitebuilderLuc Pattyn5-Dec-11 6:08 
QuestionHow to Import data from excel to sql server 2005 Pin
rahul honey4-Dec-11 23:48
rahul honey4-Dec-11 23:48 
I want to import data from excel to sql server 2005. I am using C# for this purpose. I successfully exported the data of general format
to varchar. But, the problem arises while exporting the data of date type.
I have used date format in excel and want to export it in sql server 2005's datetime field.
The code that I have used is:-


SqlBulkCopy sqlBulk = new SqlBulkCopy(strConnection);
sqlBulk.DestinationTableName = "Data_Master_Inventory";
sqlBulk.ColumnMappings.Add("VendorRegistrationNo", "VendorRegistrationNo");
sqlBulk.ColumnMappings.Add("ProductCode", "ProductCode");
sqlBulk.ColumnMappings.Add("SerialNo", "SerialNo");
sqlBulk.ColumnMappings.Add("VendorProvidedSerialNo", "VendorProvidedSerialNo");
sqlBulk.ColumnMappings.Add("ModelName", "ModelName");
sqlBulk.ColumnMappings.Add("ProductCategoryCode", "ProductCategoryCode");
sqlBulk.ColumnMappings.Add("InventoryDate", "InventoryDate");
sqlBulk.WriteToServer(dReader);



Please provide me necessary solution.
AnswerRe: How to Import data from excel to sql server 2005 Pin
RavinderaG5-Dec-11 1:36
RavinderaG5-Dec-11 1:36 
GeneralRe: How to Import data from excel to sql server 2005 Pin
Richard MacCutchan5-Dec-11 1:58
mveRichard MacCutchan5-Dec-11 1:58 
GeneralRe: How to Import data from excel to sql server 2005 Pin
#realJSOP5-Dec-11 2:29
professional#realJSOP5-Dec-11 2:29 
GeneralRe: How to Import data from excel to sql server 2005 Pin
Richard MacCutchan5-Dec-11 2:51
mveRichard MacCutchan5-Dec-11 2:51 
SuggestionRe: How to Import data from excel to sql server 2005 Pin
RaviRanjanKr7-Dec-11 11:51
professionalRaviRanjanKr7-Dec-11 11:51 
SuggestionRe: How to Import data from excel to sql server 2005 Pin
RaviRanjanKr7-Dec-11 11:49
professionalRaviRanjanKr7-Dec-11 11:49 
QuestionHow to take picture from camera(directx.capture)? (please help me) Pin
morteza fakoor4-Dec-11 20:37
morteza fakoor4-Dec-11 20:37 
AnswerRe: How to take picture from camera(directx.capture)? (please help me) Pin
OriginalGriff4-Dec-11 21:18
mveOriginalGriff4-Dec-11 21:18 
GeneralRe: How to take picture from camera(directx.capture)? (please help me) PinPopular
#realJSOP5-Dec-11 2:49
professional#realJSOP5-Dec-11 2:49 
GeneralRe: How to take picture from camera(directx.capture)? (please help me) Pin
#realJSOP5-Dec-11 12:11
professional#realJSOP5-Dec-11 12:11 
GeneralRe: How to take picture from camera(directx.capture)? (please help me) Pin
OriginalGriff5-Dec-11 20:48
mveOriginalGriff5-Dec-11 20:48 
GeneralRe: How to take picture from camera(directx.capture)? (please help me) Pin
BillWoodruff6-Dec-11 10:14
professionalBillWoodruff6-Dec-11 10:14 
QuestionCircumstances in which you would use Tuple in your real-world code ? Pin
BillWoodruff4-Dec-11 14:03
professionalBillWoodruff4-Dec-11 14:03 
AnswerRe: Circumstances in which you would use Tuple in your real-world code ? Pin
PIEBALDconsult5-Dec-11 1:54
mvePIEBALDconsult5-Dec-11 1:54 
AnswerRe: Circumstances in which you would use Tuple in your real-world code ? PinPopular
#realJSOP5-Dec-11 2:32
professional#realJSOP5-Dec-11 2:32 
GeneralRe: Circumstances in which you would use Tuple in your real-world code ? Pin
Not Active5-Dec-11 2:40
mentorNot Active5-Dec-11 2:40 
GeneralRe: Circumstances in which you would use Tuple in your real-world code ? Pin
#realJSOP5-Dec-11 2:48
professional#realJSOP5-Dec-11 2:48 

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.