Click here to Skip to main content
15,922,650 members
Home / Discussions / Database
   

Database

 
AnswerRe: what is wrong with the code Pin
Blue_Boy3-Sep-07 4:19
Blue_Boy3-Sep-07 4:19 
AnswerRe: what is wrong with the code Pin
Paddy Boyd3-Sep-07 4:26
Paddy Boyd3-Sep-07 4:26 
AnswerRe: what is wrong with the code Pin
Pete O'Hanlon3-Sep-07 5:06
mvePete O'Hanlon3-Sep-07 5:06 
AnswerRe: what is wrong with the code Pin
Colin Angus Mackay4-Sep-07 0:52
Colin Angus Mackay4-Sep-07 0:52 
QuestionXml BulkLoad Pin
Panchal Hardik3-Sep-07 0:54
Panchal Hardik3-Sep-07 0:54 
AnswerRe: Xml BulkLoad Pin
Panchal Hardik3-Sep-07 2:39
Panchal Hardik3-Sep-07 2:39 
GeneralRe: Xml BulkLoad Pin
Pete O'Hanlon3-Sep-07 2:51
mvePete O'Hanlon3-Sep-07 2:51 
GeneralRe: Xml BulkLoad Pin
Panchal Hardik3-Sep-07 2:58
Panchal Hardik3-Sep-07 2:58 
I create the one thread and call my bulk upload method from that thread.
which is work for me. before i not use the thread which is not working in my new application but working in other application.

Here is the code.
Public objBulkthread As System.Threading.Thread
If Not IsNothing(objBulkthread) Then
If Not objBulkthread.IsAlive Then
objBulkthread = New System.Threading.Thread(AddressOf objGeneral.UploadXmlBulk)
objBulkthread.ApartmentState = Threading.ApartmentState.STA
objBulkthread.Start()
End If
Else
objBulkthread = New System.Threading.Thread(AddressOf objGeneral.UploadXmlBulk)
objBulkthread.ApartmentState = Threading.ApartmentState.STA
objBulkthread.Start()
End If

Thanks

Hardik Panchal

QuestionCombine result Pin
RichardBlare3-Sep-07 0:39
RichardBlare3-Sep-07 0:39 
AnswerRe: Combine result Pin
Pete O'Hanlon3-Sep-07 0:56
mvePete O'Hanlon3-Sep-07 0:56 
GeneralRe: Combine result Pin
RichardBlare3-Sep-07 23:19
RichardBlare3-Sep-07 23:19 
QuestionHelp me! Pin
chanzeb2-Sep-07 21:01
chanzeb2-Sep-07 21:01 
AnswerRe: Help me! Pin
Pete O'Hanlon2-Sep-07 21:44
mvePete O'Hanlon2-Sep-07 21:44 
GeneralRe: Help me! Pin
chanzeb3-Sep-07 0:15
chanzeb3-Sep-07 0:15 
QuestionGet databases Pin
Syed Mujtaba Hassan2-Sep-07 20:15
Syed Mujtaba Hassan2-Sep-07 20:15 
AnswerRe: Get databases Pin
John-ph2-Sep-07 20:43
John-ph2-Sep-07 20:43 
AnswerRe: Get databases Pin
shivvish2-Sep-07 21:12
shivvish2-Sep-07 21:12 
GeneralRe: Get databases Pin
Syed Mujtaba Hassan2-Sep-07 22:42
Syed Mujtaba Hassan2-Sep-07 22:42 
Questionlogin problem in sql server express Pin
prasadbuddhika2-Sep-07 17:50
prasadbuddhika2-Sep-07 17:50 
AnswerRe: login problem in sql server express Pin
M LN Rao2-Sep-07 21:32
M LN Rao2-Sep-07 21:32 
AnswerRe: login problem in sql server express Pin
John Gathogo3-Sep-07 20:28
John Gathogo3-Sep-07 20:28 
QuestionSQL Order By in paging algorithim Pin
Polymorpher2-Sep-07 11:50
Polymorpher2-Sep-07 11:50 
AnswerRe: SQL Order By in paging algorithim Pin
Colin Angus Mackay2-Sep-07 12:04
Colin Angus Mackay2-Sep-07 12:04 
GeneralRe: SQL Order By in paging algorithim Pin
Polymorpher2-Sep-07 15:50
Polymorpher2-Sep-07 15:50 
GeneralRe: SQL Order By in paging algorithim Pin
Colin Angus Mackay2-Sep-07 22:54
Colin Angus Mackay2-Sep-07 22:54 

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.