Menu

SVN-Code Commit Log


Commit Date  
[r12470] by mikeaubury

Add initial Session support for mysql

Allows execution of code like :

main
define lv_c1, lv_c2 integer
define lv_a integer
CONNECT TO test AS con1 USER "aubit4gl" USING "somepassword"
delete from testtab
insert into testtab values("1234")

CONNECT TO test1 AS con2 USER "aubit4gl" USING "somepassword"

delete from testtab

use session con1 for select count(*) into lv_c1 from testtab;
use session con2 for select count(*) into lv_c2 from testtab;

display lv_c1
display lv_c2

use session con1 for declare c1 cursor for select * into lv_a from testtab

use session con1 for foreach c1
display "INSERTING : ", lv_a
use session con2 for insert into testtab values (lv_a)
end foreach

use session con1 for select count(*) into lv_c1 from testtab;
use session con2 for select count(*) into lv_c2 from testtab;

display lv_c1
display lv_c2

end main

2015-01-09 19:38:53 Tree
[r12469] by mikeaubury

.

2015-01-05 20:05:12 Tree
[r12468] by siverly

Increase XML Version bebause protocol changes in getclientfile()

2015-01-05 13:58:53 Tree
[r12467] by mikeaubury

.

2014-12-30 13:32:56 Tree
[r12466] by mikeaubury

Allow sending of files from the client in "parts"

2014-12-30 13:30:31 Tree
[r12465] by mikeaubury

.

2014-12-15 13:29:04 Tree
[r12464] by pauldgardiner

Added pdf_function set_page_defaults. Handy in FOR EVERY PAGE INTO ...

2014-11-12 17:36:14 Tree
[r12463] by pauldgardiner

Added error messages for haru error codes. More font compatibility with haru < 2.3

2014-11-10 15:09:03 Tree
[r12462] by pauldgardiner

Added error messages for haru error codes. More font compatibility with haru < 2.3

2014-11-10 15:07:25 Tree
[r12461] by mikeaubury

Bison3 fixups

2014-10-15 16:20:35 Tree
Older >