Click here to Skip to main content
15,913,722 members
Home / Discussions / C#
   

C#

 
AnswerRe: windows azure Pin
Abhijit Jana11-Dec-09 1:50
professionalAbhijit Jana11-Dec-09 1:50 
GeneralRe: windows azure Pin
santhosh-padamatinti11-Dec-09 1:59
santhosh-padamatinti11-Dec-09 1:59 
Questiondatabase Pin
farokhian10-Dec-09 23:12
farokhian10-Dec-09 23:12 
AnswerRe: database Pin
Covean10-Dec-09 23:25
Covean10-Dec-09 23:25 
AnswerRe: database Pin
PIEBALDconsult11-Dec-09 3:44
mvePIEBALDconsult11-Dec-09 3:44 
GeneralRe: database Pin
farokhian11-Dec-09 3:50
farokhian11-Dec-09 3:50 
GeneralRe: database Pin
Saksida Bojan11-Dec-09 7:21
Saksida Bojan11-Dec-09 7:21 
GeneralRe: database Pin
Hawks Talon11-Dec-09 7:23
Hawks Talon11-Dec-09 7:23 
GUIDs a string values used for uniqueness (example: 33b61dbd-2640-4153-8556-9cb9ad3e4a71). They are great for ensuring a unique identifier but not so great for indexing as they are string and thus cause the DB to have to do a table scan in order sort the records properly. Indentity or auto-increment field types may be old-school but they have the advantage of not needing to scan the table for ordering and thus provide much better performance for indexing. This is important because the Primary Key is an Index, the primary index in fact. The main advantage a GUID provides is with database farms. A record with a GUID will always have the same GUID but the Indentity could get reset across servers if precausons are not taken.

All that being said, I feel your original question was not answered. In order to answer your question though I would need a little bit more info as the answer could differ. How are you connecting to the DB? ADO.Net? Linq? What kind of database are you connecting to? Aceess? SQL? MySQL?

Thank you,
Eric Ritzie
QuestionReflection Parameter Problem object[] Pin
dataminers10-Dec-09 22:00
dataminers10-Dec-09 22:00 
AnswerRe: Reflection Parameter Problem object[] Pin
Abhinav S10-Dec-09 22:16
Abhinav S10-Dec-09 22:16 
GeneralRe: Reflection Parameter Problem object[] Pin
dataminers10-Dec-09 22:27
dataminers10-Dec-09 22:27 
GeneralRe: Reflection Parameter Problem object[] [modified] Pin
Abhinav S10-Dec-09 22:32
Abhinav S10-Dec-09 22:32 
GeneralRe: Reflection Parameter Problem object[] Pin
dataminers10-Dec-09 23:00
dataminers10-Dec-09 23:00 
GeneralRe: Reflection Parameter Problem object[] Pin
Abhinav S10-Dec-09 23:58
Abhinav S10-Dec-09 23:58 
GeneralRe: Reflection Parameter Problem object[] Pin
Gideon Engelberth11-Dec-09 4:23
Gideon Engelberth11-Dec-09 4:23 
QuestionSendTcpSynExample.cs Pin
3bood.ghzawi10-Dec-09 21:27
3bood.ghzawi10-Dec-09 21:27 
AnswerRe: SendTcpSynExample.cs Pin
Covean10-Dec-09 23:03
Covean10-Dec-09 23:03 
QuestionSendTcpSynExample.cs Pin
3bood.ghzawi10-Dec-09 21:24
3bood.ghzawi10-Dec-09 21:24 
AnswerRe: SendTcpSynExample.cs Pin
dan!sh 10-Dec-09 22:24
professional dan!sh 10-Dec-09 22:24 
QuestionHow can I embedd MsWord in Iframe on my aspx page using C#.Net Pin
jalajbakshi10-Dec-09 18:15
jalajbakshi10-Dec-09 18:15 
AnswerRe: How can I embedd MsWord in Iframe on my aspx page using C#.Net Pin
ravinder4u10-Dec-09 18:19
ravinder4u10-Dec-09 18:19 
QuestionControl.Invoke must be used to interact with controls created on a seperate thread Pin
benjamin yap10-Dec-09 18:02
benjamin yap10-Dec-09 18:02 
AnswerRe: Control.Invoke must be used to interact with controls created on a seperate thread Pin
vivasaayi10-Dec-09 20:58
vivasaayi10-Dec-09 20:58 
GeneralRe: Control.Invoke must be used to interact with controls created on a seperate thread Pin
benjamin yap10-Dec-09 21:34
benjamin yap10-Dec-09 21:34 
GeneralRe: Control.Invoke must be used to interact with controls created on a seperate thread Pin
vivasaayi11-Dec-09 1:32
vivasaayi11-Dec-09 1:32 

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.