Click here to Skip to main content
16,005,467 members
Home / Discussions / ASP.NET
   

ASP.NET

 
AnswerRe: i can't connect in the connection wizard! Pin
Sathesh Sakthivel1-Sep-07 0:58
Sathesh Sakthivel1-Sep-07 0:58 
GeneralRe: i can't connect in the connection wizard! Pin
Rharzkie1-Sep-07 1:06
Rharzkie1-Sep-07 1:06 
GeneralRe: i can't connect in the connection wizard! Pin
Rharzkie1-Sep-07 1:13
Rharzkie1-Sep-07 1:13 
AnswerRe: i can't connect in the connection wizard! Pin
Vasudevan Deepak Kumar1-Sep-07 2:12
Vasudevan Deepak Kumar1-Sep-07 2:12 
Questionsqlbulkcopy Pin
rajmani31-Aug-07 23:46
rajmani31-Aug-07 23:46 
AnswerRe: sqlbulkcopy Pin
Sathesh Sakthivel1-Sep-07 0:36
Sathesh Sakthivel1-Sep-07 0:36 
AnswerRe: sqlbulkcopy Pin
Vasudevan Deepak Kumar1-Sep-07 2:11
Vasudevan Deepak Kumar1-Sep-07 2:11 
GeneralRe: sqlbulkcopy Pin
rajmani1-Sep-07 3:14
rajmani1-Sep-07 3:14 
Dim cb As New OleDbConnectionStringBuilder
cb.Provider = "microsoft.jet.oledb.4.0"
cb.DataSource = "c:/sample.mdb"

Dim cnn As New OleDbConnection(cb.ConnectionString)
Dim cmd As New OleDbCommand("select * from tablename", cnn)
cnn.Open()
Dim rdr As OleDbDataReader = cmd.ExecuteReader


Dim sbc As New SqlBulkCopy("server=localhost;database=sample;" + "integrated security=sspi")

sbc.DestinationTableName = "tablename"
sbc.WriteToServer(rdr)

sbc.Close()
rdr.Close()
cnn.Close

this my code,what is the problem in this code,check out

thanks
QuestionImplementing NTLM Authentication Pin
Prajin31-Aug-07 23:36
Prajin31-Aug-07 23:36 
AnswerRe: Implementing NTLM Authentication Pin
Sathesh Sakthivel1-Sep-07 0:38
Sathesh Sakthivel1-Sep-07 0:38 
AnswerRe: Implementing NTLM Authentication Pin
Vasudevan Deepak Kumar1-Sep-07 2:11
Vasudevan Deepak Kumar1-Sep-07 2:11 
Questionmouse events Pin
waheed awan31-Aug-07 22:57
waheed awan31-Aug-07 22:57 
AnswerRe: mouse events Pin
Fred_Smith31-Aug-07 23:08
Fred_Smith31-Aug-07 23:08 
AnswerRe: mouse events Pin
Vasudevan Deepak Kumar1-Sep-07 2:14
Vasudevan Deepak Kumar1-Sep-07 2:14 
Questionabout ajax control tool kit Pin
tauras8131-Aug-07 22:51
tauras8131-Aug-07 22:51 
AnswerRe: about ajax control tool kit Pin
Imran Khan Pathan31-Aug-07 23:35
Imran Khan Pathan31-Aug-07 23:35 
GeneralRe: about ajax control tool kit Pin
tauras811-Sep-07 0:31
tauras811-Sep-07 0:31 
AnswerRe: about ajax control tool kit Pin
divyesh143231-Aug-07 23:51
divyesh143231-Aug-07 23:51 
AnswerRe: about ajax control tool kit Pin
Vasudevan Deepak Kumar1-Sep-07 2:15
Vasudevan Deepak Kumar1-Sep-07 2:15 
QuestionRich Text Box Pin
.NET- India 31-Aug-07 21:47
.NET- India 31-Aug-07 21:47 
AnswerRe: Rich Text Box Pin
Fred_Smith31-Aug-07 23:44
Fred_Smith31-Aug-07 23:44 
AnswerRe: Rich Text Box Pin
Vasudevan Deepak Kumar1-Sep-07 2:16
Vasudevan Deepak Kumar1-Sep-07 2:16 
Questiongridview -script ? Pin
sanjay_tutu31-Aug-07 21:44
sanjay_tutu31-Aug-07 21:44 
Questiontool tip window Pin
waheed awan31-Aug-07 21:39
waheed awan31-Aug-07 21:39 
AnswerRe: tool tip window Pin
divyesh143231-Aug-07 23:53
divyesh143231-Aug-07 23:53 

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.