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 - How to retrieve a variable from the Apache configuration inside the module? -

c# - Constructor arguments cannot be passed for interface mocks -

python - malformed header from script index.py Bad header -