Click here to Skip to main content
15,886,919 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
GeneralRe: Same win app runs differently on different processor Pin
Member 1213438830-Dec-15 8:35
Member 1213438830-Dec-15 8:35 
GeneralRe: Same win app runs differently on different processor Pin
Dave Kreskowiak30-Dec-15 8:48
mveDave Kreskowiak30-Dec-15 8:48 
GeneralRe: Same win app runs differently on different processor Pin
jschell31-Dec-15 5:37
jschell31-Dec-15 5:37 
Questionmy code project account is facebook linked . how can i convert it into based on my email id . Pin
Ashutosh shukla20728-Dec-15 3:13
Ashutosh shukla20728-Dec-15 3:13 
AnswerRe: my code project account is facebook linked . how can i convert it into based on my email id . Pin
Dave Kreskowiak28-Dec-15 4:02
mveDave Kreskowiak28-Dec-15 4:02 
GeneralRe: my code project account is facebook linked . how can i convert it into based on my email id . Pin
Ashutosh shukla20728-Dec-15 4:09
Ashutosh shukla20728-Dec-15 4:09 
QuestionSpeed of xml database with visual basic 2010 Pin
ahmed_faeq25-Dec-15 1:23
ahmed_faeq25-Dec-15 1:23 
AnswerRe: Speed of xml database with visual basic 2010 Pin
Dave Kreskowiak25-Dec-15 3:55
mveDave Kreskowiak25-Dec-15 3:55 
XML is NOT a database so your question is a moot point.

XML formatting takes time as XML has a bit of a large overhead and at 150 "samples" per second, whatever that "sample" is and how much data is in it, XML is probably not going to be able keep up.

Saving in an actual database engine, like SQL Server, may get closer to that rate but you'll still have to write-cache data and it won't be a real-time write to the database. Look into an MSMQ server to hold the messages and a second process that takes the data from the MSMQ queue and write it to the database.

The best option is to write raw, framed data to a file. This will have the best possibility of keeping up with your data rate. When sampling is complete you can then go back and read the data, and format it and store it in an actual database engine.
A guide to posting questions on CodeProject

Click this: Asking questions is a skill.
Seriously, do it.

Dave Kreskowiak

GeneralRe: Speed of xml database with visual basic 2010 Pin
ahmed_faeq25-Dec-15 4:44
ahmed_faeq25-Dec-15 4:44 
QuestionIntel DLL &N .NET Pin
Member 1222110921-Dec-15 6:23
Member 1222110921-Dec-15 6:23 
AnswerRe: Intel DLL &N .NET Pin
Gerry Schmitz21-Dec-15 9:57
mveGerry Schmitz21-Dec-15 9:57 
GeneralGet the phone number from the modem when the line is ringing .net c#? Pin
srini231218-Dec-15 22:01
srini231218-Dec-15 22:01 
GeneralRe: Get the phone number from the modem when the line is ringing .net c#? Pin
Richard Andrew x6419-Dec-15 8:25
professionalRichard Andrew x6419-Dec-15 8:25 
QuestionCrate more then table in sql server 2005, one click using c# dot net best way Pin
Yogendra Gurjar11-Dec-15 22:20
Yogendra Gurjar11-Dec-15 22:20 
AnswerRe: Crate more then table in sql server 2005, one click using c# dot net best way Pin
Dave Kreskowiak14-Dec-15 4:53
mveDave Kreskowiak14-Dec-15 4:53 
AnswerRe: Crate more then table in sql server 2005, one click using c# dot net best way Pin
CHill6014-Dec-15 7:01
mveCHill6014-Dec-15 7:01 
QuestionPrint multiple table rdlc report without view in vb.net 2010 Pin
ganesh tale4-Dec-15 16:36
ganesh tale4-Dec-15 16:36 
Question[C# 2008] How to detect any user interaction to implement a screensaver in a Compact Framework environment Pin
steve_94966133-Dec-15 4:44
professionalsteve_94966133-Dec-15 4:44 
AnswerRe: [C# 2008] How to detect any user interaction to implement a screensaver in a Compact Framework environment Pin
Eddy Vluggen3-Dec-15 4:52
professionalEddy Vluggen3-Dec-15 4:52 
GeneralRe: [C# 2008] How to detect any user interaction to implement a screensaver in a Compact Framework environment Pin
steve_94966133-Dec-15 5:27
professionalsteve_94966133-Dec-15 5:27 
AnswerRe: [C# 2008] How to detect any user interaction to implement a screensaver in a Compact Framework environment Pin
Matt T Heffron3-Dec-15 7:15
professionalMatt T Heffron3-Dec-15 7:15 
GeneralRe: [C# 2008] How to detect any user interaction to implement a screensaver in a Compact Framework environment Pin
steve_94966134-Dec-15 4:17
professionalsteve_94966134-Dec-15 4:17 
QuestionHow to calculate a geomean for a datatable column? Pin
Member 952753124-Nov-15 22:22
Member 952753124-Nov-15 22:22 
AnswerRe: How to calculate a geomean for a datatable column? Pin
Richard Deeming25-Nov-15 2:31
mveRichard Deeming25-Nov-15 2:31 
GeneralRe: How to calculate a geomean for a datatable column? Pin
Member 95275314-Jul-16 0:19
Member 95275314-Jul-16 0:19 

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.