Skipping Read URL data of IP Camera in MS Access Which is not Active C# -


i have problem. have database contains urls of ip cameras. program read of urls database. additionally, exclude urls of cameras inactive. if program connects url of inactive camera, hangs. use emgu cv image processing. these have done.

string koneksi = @"provider=microsoft.ace.oledb.12.0; data source=d:\dokumen\alfon\ta alfon\cobafitur\sistemparkir.accdb;                                       persist security info=false";  private void prosessemuakamera() {   oledbconnection kon = new oledbconnection(koneksi);   oledbcommand commandurl = kon.createcommand();   kon.open();   string selectsemuaurl = "select * datakamera";   commandurl.commandtext = selectsemuaurl;   oledbdatareader prosessemuaurl = commandurl.executereader();    while (prosessemuaurl.read())   {     capturesemuakamera = new capture(prosessemuaurl["urlkamera"].tostring()); //(352x288)     application.idle += processframesemuakamera;     prosescapture = !prosescapture;   }   kon.close(); } 


Comments

Popular posts from this blog

c++ - llvm function pass ReplaceInstWithInst malloc -

java.lang.NoClassDefFoundError When Creating New Android Project -

Decoding a Python 2 `tempfile` with python-future -