Search found 3 matches

by lucas
Tue Sep 18, 2018 7:08 pm
Forum: RVMedia
Topic: RVcamRecorder drops connection to SQL server
Replies: 3
Views: 22856

Re: RVcamRecorder drops connection to SQL server

Executable RVcamRecorder with the insertion of a simple query on the Start Recording button.

try
ADOConnection.Connected: = false;
ADOConnection.Connected: = true;
Query.Close;
Query.CommandText: = 'select * from group';
Query.open;
Showmessage ('First run. The connection is ok and the query ...
by lucas
Tue Sep 18, 2018 6:14 pm
Forum: RVMedia
Topic: RVcamRecorder drops connection to SQL server
Replies: 3
Views: 22856

Re: RVcamRecorder drops connection to SQL server

Hi,

Use the VideoRecorder demo and insert into the OnClick of the "Start Recording" button a simple query to any SQL server database (using ADO).

example:
Query.Close;
Query.CommandText: = 'select * from test';
Query.open;


On the first run you will succeed, the next (ie after running ...
by lucas
Tue Sep 18, 2018 1:17 pm
Forum: RVMedia
Topic: RVcamRecorder drops connection to SQL server
Replies: 3
Views: 22856

RVcamRecorder drops connection to SQL server

Hello

I'm testing the RVCamRecorder component and detected a problem that appears to be a bug.

In all tests performed, after completing the recording of a video (Rvcamrecorder.Active: = true), the component disconnects the connection to the SQL server.

This was detected even in the VideoRecorder ...