Featured post

c# - Usage of Server Side Controls in MVC Frame work -

i using asp.net 4.0 , mvc 2.0 web application. project requiremrnt have use server side control in application not possibl in noraml case. ideally want use adrotator control , datalist control. i saw few samples , references in codepleax mvc controllib howwver found less useful. can tell how utilize theese controls in asp.net application along mvc. note: please provide functionalities related adrotator , datalist controls not equivalent functionalities thanks in advace. mvc pages not use normal .net solution makes use of normal .net components impossible. a normal .net page use event driven solution call different methods service side mvc use actions , view completly different way handle things. also, mvc not use viewstate normal .net controlls require. found article discussing mixing of normal .net , mvc.

Database design to manage data from Serial Port? -


i'm writing codes capture serial port data (e.g. micrometer) , following

  1. real time display , graphing
  2. delete/modify/replace existing data focus , re-measurement,
  3. save data somewhere additional statistical analysis (e.g. in excel). out put .csv option

because each measurement may capture hundreds thousands of data (measurement points), i'm not sure how shall go design database - shall create new row each data received, or shall push data array , store super long string separated comma database? such application, need server 2008 or server 2008 express sufficient. pros/cons in terms of performance?

is possible create such application client won't need install sql server?

to answer last question first, @ sqlite because free open source, , i'm pretty sure license null. plus nothing install users. sqlite can compiled code.

to answer primary question, encourage using database if makes sense. going running queries against data, or looking store , retrieve entries sort of identifier? discourage storing super long comma separated string, instead blob type. blobs, can put datatypes database can them out, plus believe more efficient way. suggest using text type if need sort of text query on it. example fulltext searches


Comments

Popular posts from this blog

c# - Usage of Server Side Controls in MVC Frame work -

cocoa - Nesting arrays into NSDictionary object (Objective-C) -

ios - Very simple iPhone App crashes on UILabel settext -