Topic: Beta version 2.6

My Visual Database 2.6 beta
https://www.dropbox.com/s/pebrvqwqcbluy … a.zip?dl=0



What's new?

- Chart on form (using script), an example: http://myvisualdatabase.com/forum/misc. … download=1


- Fast way to insert many records (using transaction), example:

procedure Form1_Button1_OnClick (Sender: string; var Cancel: boolean);
var
    SqliteTr: TDBXSqliteTransaction;
    i: integer;
begin
    SqliteTr := BeginSQLiteTransaction;
    for i:= 0 to 10000 do SQLExecute('INSERT INTO employees (lastname) VALUES(''Smith'')');
    CommitSQLiteTransaction(SqliteTr);
end;
Dmitry.

Re: Beta version 2.6

I get this error when i try to run the project

http://s32.postimg.org/y2ft0mdxd/Naamloos.jpg

Re: Beta version 2.6

dbk wrote:

I get this error when i try to run the project

http://s32.postimg.org/y2ft0mdxd/Naamloos.jpg

First you should download beta version 2.6
https://www.dropbox.com/s/pebrvqwqcbluy … a.zip?dl=0

Dmitry.

Re: Beta version 2.6

Hello Dmitry

Thanks for this 2.6 version
Really Impressive. Gives a very professional touch to MVD
Very good

JB

Re: Beta version 2.6

DriveSoft wrote:

First you should download beta version 2.6
https://www.dropbox.com/s/pebrvqwqcbluy … a.zip?dl=0

Ofcourse, i forgot to use the new version :-)


It works now, this is an excellent addition to MVD Dmitry!

Re: Beta version 2.6

Hello Dmitry

I thought that you'd like to know that with the new BETA (2.6) I'm getting the following error (attached) when I try to run my compiled project.

MAK

Post's attachments

Attachment icon MVD BETA 26 Error.png 35.98 kb, 293 downloads since 2016-05-28 

Re: Beta version 2.6

SWGAK wrote:

Hello Dmitry

I thought that you'd like to know that with the new BETA (2.6) I'm getting the following error (attached) when I try to run my compiled project.

MAK

Do you have some script to execute SQL queries in section?

begin

end.

if yes, just move this script to event OnShow of main form.

Dmitry.