From b71e54e40dda6cf47b4f5e31058c02491bffe5cc Mon Sep 17 00:00:00 2001 From: Kilian Saffran Date: Tue, 28 Sep 2021 08:26:34 +0200 Subject: [PATCH] v20210928 layout optimization --- public_html/shop/css/icons.css | 1 - public_html/shop/lib/lang/de.php | 3 +- public_html/shop/lib/lang/fr.php | 3 +- public_html/shop/lib/modules/Articles.php | 2 +- public_html/shop/lib/modules/Orders.php | 2 +- public_html/shop/log/sql.log | 14055 ++++++++++++++++ .../shop/tmpl/elements/shopbottombar.html | 4 +- public_html/shop/tmpl/js/orders.js | 25 +- public_html/shop/tmpl/js/shop.js | 214 +- public_html/shop/tmpl/module/login/login.html | 2 +- .../shop/tmpl/panels/pnl_askprice.html | 18 +- public_html/shop/tmpl/panels/pnl_basket.html | 26 +- public_html/shop/tmpl/panels/pnl_shop.html | 84 +- 13 files changed, 14218 insertions(+), 221 deletions(-) diff --git a/public_html/shop/css/icons.css b/public_html/shop/css/icons.css index e78bb03..e2ae63a 100644 --- a/public_html/shop/css/icons.css +++ b/public_html/shop/css/icons.css @@ -12,7 +12,6 @@ [class^="icon-"], [class*=" icon-"] { /* use !important to prevent issues with browser extensions that change fonts */ font-family: 'appicons' !important; - speak: never; font-style: normal; font-weight: normal; font-variant: normal; diff --git a/public_html/shop/lib/lang/de.php b/public_html/shop/lib/lang/de.php index 35d46d3..05d3b09 100644 --- a/public_html/shop/lib/lang/de.php +++ b/public_html/shop/lib/lang/de.php @@ -113,6 +113,7 @@ "mnubasket" => "W.Korb", "mnufav" => "Fav.", "order" => "Bestellung", - "askprice" => "Preisanfrage" + "askprice" => "Preisanfrage", + "connect" => "Einloggen", ); ?> \ No newline at end of file diff --git a/public_html/shop/lib/lang/fr.php b/public_html/shop/lib/lang/fr.php index 7a0e81a..455c402 100644 --- a/public_html/shop/lib/lang/fr.php +++ b/public_html/shop/lib/lang/fr.php @@ -113,6 +113,7 @@ "mnubasket" => "Panier", "mnufav" => "Fav.", "order" => "Commande", - "askprice" => "Demande de Prix" + "askprice" => "Demande de Prix", + "connect" => "Connecter", ); ?> \ No newline at end of file diff --git a/public_html/shop/lib/modules/Articles.php b/public_html/shop/lib/modules/Articles.php index 2a4f7f9..4aa1ea0 100644 --- a/public_html/shop/lib/modules/Articles.php +++ b/public_html/shop/lib/modules/Articles.php @@ -41,7 +41,7 @@ class Articles{ if (!$lang){ $lang=$this->cfg["lang"];} //all articles returned grouped by article_group; $sql ="select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) - where ar.article in ( select article from userfavorites where id_user = '".$iduser."') order by ar.article_group,ar.article;"; + where ar.article in ( select article from userfavorites where id_user = '".$iduser."') group by ar.article_group,ar.article order by ar.article_group,ar.article;"; return $this->dbh->querybykey('article_group',$sql); } diff --git a/public_html/shop/lib/modules/Orders.php b/public_html/shop/lib/modules/Orders.php index 4b35b4e..0d28a54 100644 --- a/public_html/shop/lib/modules/Orders.php +++ b/public_html/shop/lib/modules/Orders.php @@ -16,7 +16,7 @@ class Orders { $cprod = $this->dbh->query("select * from order_articles where id_user='".$id_user."' and article='".$article."' and id_order is null and code_document='".$type."';"); $sql =""; if (isset($cprod["id"])){ - $cprod["quantity"] = $cprod["quantity"] + $qantity; + $cprod["quantity"] = $cprod["quantity"] + $quantity; $sql = $this->dbh->createUpdateDDL("order_articles",array($cprod["id"]),$cprod); } else { $cprod = array("id" => $this->dbh->newuuid() , "article" =>$article , "quantity" => $quantity,"id_user" => $id_user,"code_document" => $type); diff --git a/public_html/shop/log/sql.log b/public_html/shop/log/sql.log index 192d5be..6a9ca99 100644 --- a/public_html/shop/log/sql.log +++ b/public_html/shop/log/sql.log @@ -79497,3 +79497,14058 @@ QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.art from articles ar left join article_prices ap on (ar.article = ap.article) join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +p by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-MVS' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: INSERT INTO userfavorites (id,id_user,article) VALUES ('a9cc8eda-cfcb-4de3-bd6a-b9c18a70fc1f','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','CLO-MVS2'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: INSERT INTO userfavorites (id,id_user,article) VALUES ('3a485628-5b66-4810-a1aa-d22dd1c7dcb3','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','SGW-0610-0040'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: INSERT INTO userfavorites (id,id_user,article) VALUES ('85dccbc1-a278-49bd-961b-999bed201507','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','SGW-0870-0005M'); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage from article_groups where article in (select article_group from articles where article in (select article from clients_contratcadre cc where client='10823') group by article_group); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from clients_contratcadre ap join articles ar on (ar.article=ap.article) where ap.client='10823' group by ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0602-0025' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('a0053828-6037-4547-b574-251a02fc1fc0','SGW-0602-0025','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A400' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&NOF-D20V' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='SGW-0602-0025' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0752','&SGW-0753','&SGW-0785','&SGW-0801','&SGW-0828','&SGW-0875','&SGW-0901','&SGW-0902','&SGW-NOMIX8','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0610','&SGW-0762','&SGW-0767','&SGW-0768','&SGW-0870','&SGW-0881','&SGW-0904','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0610','&SGW-0762','&SGW-0767','&SGW-0768','&SGW-0870','&SGW-0881','&SGW-0904','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0610','&SGW-0762','&SGW-0767','&SGW-0768','&SGW-0870','&SGW-0881','&SGW-0904','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0610','&SGW-0762','&SGW-0767','&SGW-0768','&SGW-0870','&SGW-0881','&SGW-0904','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A405' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A405' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0610','&SGW-0762','&SGW-0767','&SGW-0768','&SGW-0870','&SGW-0881','&SGW-0904','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A102' and famille_art='A1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A104' and famille_art='A1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '79218cc6-547f-445a-80e2-002703450fe4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('48683c9e-55de-4b3a-be40-f77bd3d03ca1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48683c9e-55de-4b3a-be40-f77bd3d03ca1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0610','&SGW-0762','&SGW-0767','&SGW-0768','&SGW-0870','&SGW-0881','&SGW-0904','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('9572900b-0fe1-4016-bc94-9f41eca5c179','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0610','&SGW-0762','&SGW-0767','&SGW-0768','&SGW-0870','&SGW-0881','&SGW-0904','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-G' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-G' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-DT' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-SH' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CON-LC-M' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CNT-S...I2.01' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9572900b-0fe1-4016-bc94-9f41eca5c179' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('687c0060-c867-4c38-8b5e-e8e8335345e9','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0610','&SGW-0762','&SGW-0767','&SGW-0768','&SGW-0870','&SGW-0881','&SGW-0904','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-M' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-M-CO' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-M±' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-M KURZ' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-M±' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-S' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-V' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-V-K' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-VK±' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-V±' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&KBA-W' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QDB' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-I-H17' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-AS' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&BWA-IS' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-M' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C111' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&QKD-DND' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C110' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage from article_groups where article in (select article_group from articles where article in (select article from clients_contratcadre cc where client='10823') group by article_group); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from clients_contratcadre ap join articles ar on (ar.article=ap.article) where ap.client='10823' group by ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '687c0060-c867-4c38-8b5e-e8e8335345e9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('7345b77d-3ba3-4013-ab99-03b85faed33e','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7345b77d-3ba3-4013-ab99-03b85faed33e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('b077c6bb-d044-47f1-926d-bd2440ec0d2d','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b077c6bb-d044-47f1-926d-bd2440ec0d2d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('0e9172d1-1265-4906-80ad-0385da6b398b','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +p by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C100' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='KBA-M ECK' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('9b6ae0a1-6754-4764-8d96-e0c902446b9b','KBA-M ECK','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='KBA-M ECK' and id_order is null and code_document='RSS'; +EXEC: UPDATE order_articles SET id='9b6ae0a1-6754-4764-8d96-e0c902446b9b',id_order=null,article='KBA-M ECK',quantity='1',wiges_no_document=null,wiges_no_position=null,created='2021-09-27 17:56:55',modified='2021-09-27 17:56:55',id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c',code_document='RSS' WHERE 0='9b6ae0a1-6754-4764-8d96-e0c902446b9b'; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='KBA-M' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('109af202-fb26-4792-8a71-9a72805c1c1f','KBA-M','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='KBA-M ECK' and id_order is null and code_document='RSS'; +EXEC: UPDATE order_articles SET id='9b6ae0a1-6754-4764-8d96-e0c902446b9b',id_order=null,article='KBA-M ECK',quantity='1',wiges_no_document=null,wiges_no_position=null,created='2021-09-27 17:56:55',modified='2021-09-27 17:56:55',id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c',code_document='RSS' WHERE 0='9b6ae0a1-6754-4764-8d96-e0c902446b9b'; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e9172d1-1265-4906-80ad-0385da6b398b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='KBA-M' and id_order is null and code_document='RSS'; +EXEC: UPDATE order_articles SET id='109af202-fb26-4792-8a71-9a72805c1c1f',id_order=null,article='KBA-M',quantity='1',wiges_no_document=null,wiges_no_position=null,created='2021-09-27 17:57:45',modified='2021-09-27 17:57:45',id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c',code_document='RSS' WHERE 0='109af202-fb26-4792-8a71-9a72805c1c1f'; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('534d2ec0-efd6-4237-bc91-22f5df43f375','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0602-0025' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('fc8c4962-663f-4694-836e-7e5b9d00cac4','SGW-0602-0025','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0610-0040' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('fef329b7-2f0b-4443-b217-28b3f946f9e0','SGW-0610-0040','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A501' and famille_art='A5' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A5' and gp_art='A501' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '534d2ec0-efd6-4237-bc91-22f5df43f375' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='PDS-U01/A-G' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('4f34ff9c-8269-40a6-adde-528357302ee7','PDS-U01/A-G','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('ddee8a73-1a73-41f9-9e5b-e4e529231eff','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0752','&SGW-0753','&SGW-0785','&SGW-0801','&SGW-0828','&SGW-0875','&SGW-0901','&SGW-0902','&SGW-NOMIX8','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A203' and famille_art='A2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A203' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASS-AG/A-250/33-18' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('3e69bdbc-1ac2-46a7-a44d-2ed39ffccced','ASS-AG/A-250/33-18','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ddee8a73-1a73-41f9-9e5b-e4e529231eff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASS-AG/A-250/38-19' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('04099fa2-99cc-4cf0-b687-2a5b925573b6','ASS-AG/A-250/38-19','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('5e681a28-678d-4537-ae4f-b74d5dddaf69','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +g join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0760-0001' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('c34242c3-0161-405a-9743-91d4c89bffb7','SGW-0760-0001','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5e681a28-678d-4537-ae4f-b74d5dddaf69' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0760-0005' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('030603e0-6a48-4e8b-8322-0d8e66eb7b4e','SGW-0760-0005','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('be39c55f-a034-438c-9642-d0e833ee90eb','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='ASS-AG/A-250/33-18' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='ASS-AG/A-250/38-19' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'be39c55f-a034-438c-9642-d0e833ee90eb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('acec3a2a-1c0e-4110-83db-ddc500b66a3d','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='SGW-0760-0001' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'acec3a2a-1c0e-4110-83db-ddc500b66a3d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('5b500d02-2f18-4c36-9f02-c47549041fb2','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='KBA-M ECK' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b500d02-2f18-4c36-9f02-c47549041fb2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='KBA-M' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('3466124e-be53-4b30-bbd4-80b848a2e8ff','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +p by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3466124e-be53-4b30-bbd4-80b848a2e8ff' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('7bb93abf-b290-4e17-89c9-cc93e7301e39','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bb93abf-b290-4e17-89c9-cc93e7301e39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0760-0005' and id_order is null and code_document='RSS'; +EXEC: UPDATE order_articles SET id='030603e0-6a48-4e8b-8322-0d8e66eb7b4e',id_order=null,article='SGW-0760-0005',quantity='2',wiges_no_document=null,wiges_no_position=null,created='2021-09-27 18:03:25',modified='2021-09-27 18:03:25',id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c',code_document='RSS' WHERE 0='030603e0-6a48-4e8b-8322-0d8e66eb7b4e'; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('37131efd-f5ba-4175-b04e-6fad4d3432fe','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '37131efd-f5ba-4175-b04e-6fad4d3432fe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0760-0005' and id_order is null and code_document='RSS'; +EXEC: UPDATE order_articles SET id='030603e0-6a48-4e8b-8322-0d8e66eb7b4e',id_order=null,article='SGW-0760-0005',quantity='2',wiges_no_document=null,wiges_no_position=null,created='2021-09-27 18:03:25',modified='2021-09-27 18:03:25',id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c',code_document='RSS' WHERE 0='030603e0-6a48-4e8b-8322-0d8e66eb7b4e'; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('946b8fb7-1153-4ae2-9513-a777115f6076','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '946b8fb7-1153-4ae2-9513-a777115f6076' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0760-0005' and id_order is null and code_document='RSS'; +EXEC: UPDATE order_articles SET id='030603e0-6a48-4e8b-8322-0d8e66eb7b4e',id_order=null,article='SGW-0760-0005',quantity='2',wiges_no_document=null,wiges_no_position=null,created='2021-09-27 18:03:25',modified='2021-09-27 18:03:25',id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c',code_document='RSS' WHERE 0='030603e0-6a48-4e8b-8322-0d8e66eb7b4e'; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('f15fc2b0-f953-4980-b1da-969004d75484','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0760-0005' and id_order is null and code_document='RSS'; +EXEC: UPDATE order_articles SET id='030603e0-6a48-4e8b-8322-0d8e66eb7b4e',id_order=null,article='SGW-0760-0005',quantity='2',wiges_no_document=null,wiges_no_position=null,created='2021-09-27 18:03:25',modified='2021-09-27 18:03:25',id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c',code_document='RSS' WHERE 0='030603e0-6a48-4e8b-8322-0d8e66eb7b4e'; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0760-0015' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('5a608076-e050-4820-88dc-601f41ff5fef','SGW-0760-0015','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0760-0001' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('5465b531-e4ef-4561-ada7-a918955ddb53','SGW-0760-0001','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0763-0020' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('b463d9c3-538c-4881-b2d7-aaf3a9746a28','SGW-0763-0020','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='SGW-0760-0001' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='SGW-0760-0015' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='SGW-0763-0020' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0760','&SGW-0763','&SGW-0766','&SGW-0780','&SGW-0822','&SGW-0877','&SGW-0904','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C105' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C100' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C102' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C101' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C100' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A102' and famille_art='A1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A104' and famille_art='A1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A102' and famille_art='A1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A104' and famille_art='A1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A104' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A102' and famille_art='A1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A1' and gp_art='A102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C9' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'f15fc2b0-f953-4980-b1da-969004d75484' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('bdc781d0-4fbe-4e0f-87bc-09433f171fa9','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +g join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bdc781d0-4fbe-4e0f-87bc-09433f171fa9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Linux; Android 6.0; Nexus 5 Build/MRA58N) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Mobile Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('edc47f41-b2fa-445f-adf1-011fecab9bfe','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'edc47f41-b2fa-445f-adf1-011fecab9bfe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('8d9593ed-3ae4-466c-b174-6aab64acb75d','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8d9593ed-3ae4-466c-b174-6aab64acb75d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('69494869-2e31-4303-a09a-0dbcba1a794f','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '69494869-2e31-4303-a09a-0dbcba1a794f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('968029d0-0d90-41e9-bd4e-c65fb73140d6','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '968029d0-0d90-41e9-bd4e-c65fb73140d6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('87d94a4e-dbf9-4b98-8d12-6cf78ce979a7','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '87d94a4e-dbf9-4b98-8d12-6cf78ce979a7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('7a09e788-1792-4e42-9cf0-bf3d757d0dbe','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7a09e788-1792-4e42-9cf0-bf3d757d0dbe' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('a40e1dca-a8c7-47dc-a817-f289c25bf42d','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a40e1dca-a8c7-47dc-a817-f289c25bf42d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('e542fb48-38a4-4bee-8e04-295c24e13c51','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +lient is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e542fb48-38a4-4bee-8e04-295c24e13c51' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('5255f929-e6d1-4619-a1cf-969a3c936b0f','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5255f929-e6d1-4619-a1cf-969a3c936b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('0fdbed92-744b-4514-b5dc-7cc412f1e86b','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0fdbed92-744b-4514-b5dc-7cc412f1e86b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('5c145448-912b-41a0-8191-d8ff89802482','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5c145448-912b-41a0-8191-d8ff89802482' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('b505fb8c-cab0-4c8c-bc9c-02ceadf25d54','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b505fb8c-cab0-4c8c-bc9c-02ceadf25d54' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('5f03909e-b610-4df5-a072-dc742c1a4722','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5f03909e-b610-4df5-a072-dc742c1a4722' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('7212692b-b7a3-44f3-94f2-5ab09e860891','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7212692b-b7a3-44f3-94f2-5ab09e860891' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('080b7722-3b8d-4832-9807-c45a231d6281','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +g join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '080b7722-3b8d-4832-9807-c45a231d6281' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('d8c1c369-46ca-48c6-8b85-17b6a22fe3cb','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd8c1c369-46ca-48c6-8b85-17b6a22fe3cb' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a9ee0f04-4d4b-4c5f-9d53-556dc33ecff3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('208d7489-e508-42e1-8bb0-1b8fdab3f2d5','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C100' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C106' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C106' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C108' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C110' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C110' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C111' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C111' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C107' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C107' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C108' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C107' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C107' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C109' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C109' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C108' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C116' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C116' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C114' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C135' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C135' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C131' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C135' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C135' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C137' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C137' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C138' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C138' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C131' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C131' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C116' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C116' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C114' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '208d7489-e508-42e1-8bb0-1b8fdab3f2d5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('9065aea0-b7f6-47ff-b4dd-8bee93c53f0f','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C106' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C106' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C105' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C108' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C109' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C109' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C112' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C112' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C110' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C110' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C109' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C109' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C112' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C112' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C114' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C116' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C116' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C137' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C137' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C149' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C149' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C106' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C106' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C105' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C102' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9065aea0-b7f6-47ff-b4dd-8bee93c53f0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('8cfb8bac-136e-48bb-8009-be207c59335d','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +g join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C200' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C201' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C203' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C203' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C207' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8cfb8bac-136e-48bb-8009-be207c59335d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C207' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('c3e6d589-dffd-4219-9dbd-df55bcb5118b','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c3e6d589-dffd-4219-9dbd-df55bcb5118b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('6a9c8977-6f81-41c1-a551-91218723f04b','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A400' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A402' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A405' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A405' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A400' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A402' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A415' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A415' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A402' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6a9c8977-6f81-41c1-a551-91218723f04b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('272db341-0ac2-49f1-b059-1c036bc9c6e5','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C102' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C101' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C108' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C105' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C111' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C111' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C114' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C110' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C110' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C107' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C107' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C105' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C111' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C111' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C306' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C306' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C304' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C304' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C304' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C304' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '272db341-0ac2-49f1-b059-1c036bc9c6e5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('c034f1d1-787f-44c3-9fc1-85052f9d5f04','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C8' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C804' and famille_art='C8' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C8' and gp_art='C804' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C806' and famille_art='C8' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C8' and gp_art='C806' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C809' and famille_art='C8' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C8' and gp_art='C809' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C600' and famille_art='C6' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C600' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C603' and famille_art='C6' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c034f1d1-787f-44c3-9fc1-85052f9d5f04' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C603' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('296f57f0-3b62-4f92-bf14-2119f3595d75','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C100' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C101' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C106' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C106' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C108' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C110' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C110' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C114' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C114' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C135' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C135' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C105' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C102' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C110' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C110' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A200' and famille_art='A2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A202' and famille_art='A2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A202' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A205' and famille_art='A2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A205' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A209' and famille_art='A2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A209' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '296f57f0-3b62-4f92-bf14-2119f3595d75' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('d1518a91-40e1-4644-b560-a4b274da5a2c','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd1518a91-40e1-4644-b560-a4b274da5a2c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('8e71c1f1-1e64-4a45-9f77-52203f7746f3','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='SGW-0760-0005' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='SGW-0610-0040' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='SGW-0602-0025' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM order_articles WHERE article='PDS-U01/A-G' and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and code_document='RSS' and id_order is null; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C500' and famille_art='C5' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C500' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage from article_groups where article in (select article_group from articles where article in (select article from clients_contratcadre cc where client='10801') group by article_group); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05, null as prix_net,ar.unite_quantite,ar.qte_stock,ar.qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs from clients_contratcadre ap join articles ar on (ar.article=ap.article) where ap.client='10801' group by ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C303' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C303' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SDR-ACC-C1' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('785e1cd2-4482-4897-aa8e-5dfa50d8cf40','SDR-ACC-C1','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SDR-ACC-C1-T' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('61ad1a2a-0b7a-47ab-aa94-8f0a7d37fb56','SDR-ACC-C1-T','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='EAH-F-X20/25/30' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('9725ac79-9ce3-4b61-a0f0-ea5f0246de99','EAH-F-X20/25/30','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='EAH-F-X20/25/30-F' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('9f068a67-09f9-4413-a6e3-693b740c2313','EAH-F-X20/25/30-F','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='EAH-F-X35/40/50-F' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('97983333-3db6-403f-bcf5-ff062f8bb01b','EAH-F-X35/40/50-F','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='EAH-F-X45/55/60' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('6f1252f2-f083-4539-b2f3-342537252891','EAH-F-X45/55/60','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8e71c1f1-1e64-4a45-9f77-52203f7746f3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '125b7ef8-43c7-4ef6-94ee-d5fc629a6b0f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('8511a92e-beb5-4575-8331-be0079e12767','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +lient is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '8511a92e-beb5-4575-8331-be0079e12767' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('89b87e46-da37-40e0-8da8-c8415aa16c61','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '89b87e46-da37-40e0-8da8-c8415aa16c61' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('d59ad02d-9018-473c-beda-5ff02f67cd33','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'd59ad02d-9018-473c-beda-5ff02f67cd33' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('68e9a810-0d9a-4a0a-b083-4bd05244b7e4','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '68e9a810-0d9a-4a0a-b083-4bd05244b7e4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('ac021f69-9907-4855-a1a9-9eeb4f81b0c7','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ac021f69-9907-4855-a1a9-9eeb4f81b0c7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('6f69dddd-071a-4583-90e8-89e79c376f60','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6f69dddd-071a-4583-90e8-89e79c376f60' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('3996fdb4-47c4-4374-9632-6db94d533976','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '3996fdb4-47c4-4374-9632-6db94d533976' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('7bfae3de-ff6b-463a-b031-517d992e0971','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '7bfae3de-ff6b-463a-b031-517d992e0971' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('367cd361-7d75-41d9-9a19-f92765680f90','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '367cd361-7d75-41d9-9a19-f92765680f90' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('596288a2-9f05-4f39-9242-8135a8fdc951','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0780-0014' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('10ae407a-0129-4813-a07d-6bb041f2d390','SGW-0780-0014','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0780-0030' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('7094a918-9f15-4ef4-8ede-0087d7b0060e','SGW-0780-0030','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0801-0030' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('698bf9ed-d9d2-4112-8c5c-1f6fa2e662dd','SGW-0801-0030','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0801-0010' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('b2678fed-e00f-4bca-85ac-33211eea6a9f','SGW-0801-0010','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0801-0005' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('04f5dd51-5c21-4072-848f-d8ebb0bc2a7f','SGW-0801-0005','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0801-0001' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('ca7b7db8-1bf6-4810-8e4b-66de7beb7fe6','SGW-0801-0001','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0801-0205' and id_order is null and code_document='RSS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('e4682260-293b-4d4b-a662-c5d8ad769b01','SGW-0801-0205','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','RSS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0801-0010' and id_order is null and code_document='RSS'; +EXEC: UPDATE order_articles SET id='b2678fed-e00f-4bca-85ac-33211eea6a9f',id_order=null,article='SGW-0801-0010',quantity='2',wiges_no_document=null,wiges_no_position=null,created='2021-09-27 19:27:28',modified='2021-09-27 19:27:28',id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c',code_document='RSS' WHERE 0='b2678fed-e00f-4bca-85ac-33211eea6a9f'; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0801-0005' and id_order is null and code_document='RSS'; +EXEC: UPDATE order_articles SET id='04f5dd51-5c21-4072-848f-d8ebb0bc2a7f',id_order=null,article='SGW-0801-0005',quantity='2',wiges_no_document=null,wiges_no_position=null,created='2021-09-27 19:27:28',modified='2021-09-27 19:27:28',id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c',code_document='RSS' WHERE 0='04f5dd51-5c21-4072-848f-d8ebb0bc2a7f'; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '596288a2-9f05-4f39-9242-8135a8fdc951' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('60b10f74-2b2e-4c91-bae0-a98bce320a59','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C3' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C300' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C300' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C310' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C310' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C309' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C309' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C306' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C306' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C303' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C303' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C304' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C304' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C307' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C307' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C326' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C326' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C322' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C322' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C319' and famille_art='C3' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C3' and gp_art='C319' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.aticle_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.aticle_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.aticle_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.aticle_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.aticle_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.aticle_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +lient is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.aticle_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.aticle_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.aticle_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +lient is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +EXEC: DELETE FROM userfavorites WHERE id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='CLO-MVS2'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('15f96258-a9d0-4d27-824f-2a0cd4c7a9c5','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '15f96258-a9d0-4d27-824f-2a0cd4c7a9c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('85360321-8001-4062-81aa-76a2d12ab1ee','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +g join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '85360321-8001-4062-81aa-76a2d12ab1ee' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('b40e3776-f924-44ce-8428-37542938281e','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +escription_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C402' and famille_art='C4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C403' and famille_art='C4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C403' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C407' and famille_art='C4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C407' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C409' and famille_art='C4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C409' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C402' and famille_art='C4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C101' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C106' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C106' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C105' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b40e3776-f924-44ce-8428-37542938281e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('faf21261-6b0d-4926-bc32-e01f1f78fcf7','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C105' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C105' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C101' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C102' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C106' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C106' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C108' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C108' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C109' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C109' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C107' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C107' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C102' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C101' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C101' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'faf21261-6b0d-4926-bc32-e01f1f78fcf7' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('4e50a999-650f-4a57-b8e4-fc7fbf50c715','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4e50a999-650f-4a57-b8e4-fc7fbf50c715' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('9ee8ac53-80e8-41b3-9317-7f92fb1f68ec','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9ee8ac53-80e8-41b3-9317-7f92fb1f68ec' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('0e0a986c-d000-4a0a-96e1-46bff1b8e45f','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0e0a986c-d000-4a0a-96e1-46bff1b8e45f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('2dd9dfd3-d595-40e9-aeba-8c743d858e3b','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2dd9dfd3-d595-40e9-aeba-8c743d858e3b' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('55636fdc-2f25-4cb0-b987-9c277f56a837','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '55636fdc-2f25-4cb0-b987-9c277f56a837' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('c44e8c64-710c-4510-99cf-90107d2ec1b6','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c44e8c64-710c-4510-99cf-90107d2ec1b6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('1dc7575d-5b7c-4e77-87e3-c357be416d41','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-RO/A' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-RO/A' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-RO/C' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-RO/C' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-MVS' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-MVS' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-RO/GC' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&CLO-MVS' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A204' and famille_art='A2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '1dc7575d-5b7c-4e77-87e3-c357be416d41' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A2' and gp_art='A204' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('6e5525e5-7279-4b36-9c36-caad9dfbb5e0','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6e5525e5-7279-4b36-9c36-caad9dfbb5e0' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('134caec6-2ffd-4183-8d92-e39ce21bbfb5','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '134caec6-2ffd-4183-8d92-e39ce21bbfb5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('bae6e34d-3fcf-4e57-88bf-95252a4e1416','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'bae6e34d-3fcf-4e57-88bf-95252a4e1416' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('ff8416e0-73d0-490b-a3ad-fe719cca149f','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +g join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ff8416e0-73d0-490b-a3ad-fe719cca149f' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('c7ffc5a6-8446-4495-85e6-446ac9402105','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c7ffc5a6-8446-4495-85e6-446ac9402105' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('e33edeb5-afd0-4f42-996a-d2f20f4bd39e','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +rt,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'e33edeb5-afd0-4f42-996a-d2f20f4bd39e' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('c6cf55ef-593d-4e74-a776-bc63a23cf602','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c6cf55ef-593d-4e74-a776-bc63a23cf602' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('4a16cbb3-1c40-45c1-b683-2a277e05f7a2','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4a16cbb3-1c40-45c1-b683-2a277e05f7a2' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('4f9baf18-7cac-441b-bc8b-621674681fc9','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '4f9baf18-7cac-441b-bc8b-621674681fc9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('eedc04d4-4b8c-4533-94a3-6b4135a3ca6c','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +escription_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eedc04d4-4b8c-4533-94a3-6b4135a3ca6c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('6fa2273c-7547-4b04-8118-d4adc79067cc','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '6fa2273c-7547-4b04-8118-d4adc79067cc' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('b4f9420f-2b5f-4c02-a8dc-12aedb491069','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'b4f9420f-2b5f-4c02-a8dc-12aedb491069' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0610','&SGW-0769','&SGW-0772','&SGW-0813','&SGW-0880','&SGW-0883','&SGW-0884','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('ba5070ad-0470-4a5d-94cf-c427c77698db','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ba5070ad-0470-4a5d-94cf-c427c77698db' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('5dd98288-731f-49b2-b501-b8023eb21174','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5dd98288-731f-49b2-b501-b8023eb21174' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('59fdd746-266e-4bbb-9bc9-3a51b04bc286','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '59fdd746-266e-4bbb-9bc9-3a51b04bc286' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('49a835d3-302a-4068-89de-4f56fc34ff06','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '49a835d3-302a-4068-89de-4f56fc34ff06' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('eeec0847-5c9d-4c0d-80c1-b63f79633c35','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'eeec0847-5c9d-4c0d-80c1-b63f79633c35' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('ffdeb7bc-9715-4d42-8ca0-cc3437c9b250','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'ffdeb7bc-9715-4d42-8ca0-cc3437c9b250' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('14fb136c-222a-4f67-b1db-708fcc50abe6','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '14fb136c-222a-4f67-b1db-708fcc50abe6' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('5a3d5084-83dd-4096-a2bd-a1c59d452d0d','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5a3d5084-83dd-4096-a2bd-a1c59d452d0d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('0b83a499-147a-477c-bda7-78941d7a29a4','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '0b83a499-147a-477c-bda7-78941d7a29a4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('990f075f-59ab-40e9-89dd-aa3d4631603c','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '990f075f-59ab-40e9-89dd-aa3d4631603c' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('c2b8602b-98ae-4dfc-b3c1-dae97c86dde1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'c2b8602b-98ae-4dfc-b3c1-dae97c86dde1' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('9620b656-cd4e-4044-aadf-df84f5ae2ddd','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A400' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9620b656-cd4e-4044-aadf-df84f5ae2ddd' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 11_0 like Mac OS X) AppleWebKit/604.1.38 (KHTML, like Gecko) Version/11.0 Mobile/15A372 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('9444d711-768b-4f63-8014-cb8495f48b39','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '9444d711-768b-4f63-8014-cb8495f48b39' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('48642bf6-02a4-4466-95df-894fa6a3a543','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '48642bf6-02a4-4466-95df-894fa6a3a543' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('dbb75ac8-32c0-4044-befb-ed670aca6db9','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'dbb75ac8-32c0-4044-befb-ed670aca6db9' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('84e38d9b-3560-4a0a-851e-620e4a294ca3','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '84e38d9b-3560-4a0a-851e-620e4a294ca3' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('211267dc-a418-48a6-920c-fce3042c1e31','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '211267dc-a418-48a6-920c-fce3042c1e31' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('5d08effd-98df-40fd-a7f1-2c65135adb94','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C402' and famille_art='C4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C4' and gp_art='C402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-V' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C217' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RZB-DV-C' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C216' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/PF' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/T1D' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/T1D' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/PF' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-G/A' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C219' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups where article='&RES-KS/PF' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5d08effd-98df-40fd-a7f1-2c65135adb94' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C220' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A400' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='NOF-ACC-M/N' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('71bcb5c8-e48d-4464-82a3-ab43e6f8762c','NOF-ACC-M/N','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='NOF-ACC-R2000' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('97b5bfc7-eba3-4799-a04e-271c6de57c95','NOF-ACC-R2000','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='NOF-D08-050/20' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('117a0d90-143b-402b-8a06-6c1fbb33b1cd','NOF-D08-050/20','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C201' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C200' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C201' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C201' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C200' and famille_art='C2' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C2' and gp_art='C200' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +lient is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0753','&SGW-0760','&SGW-0780','&SGW-0801','&SGW-0822','&SGW-0901','&SGW-0902','&SGW-0933','&SGW-0935','&SGW-SF2K') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0752','&SGW-0772','&SGW-0785','&SGW-0813','&SGW-0828','&SGW-0875','&SGW-0883','&SGW-0901','&SGW-0915','&SGW-NOMIX8') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW-0602','&SGW-0603','&SGW-0610','&SGW-0768','&SGW-0769','&SGW-0870','&SGW-0880','&SGW-0881','&SGW-0884','&SGW-0911') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0602-0025' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('6653223c-9584-414a-9421-d79679db01c9','SGW-0602-0025','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0603-0025' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('399667c3-19ba-426b-8e28-93a946c5fffb','SGW-0603-0025','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0768-0025' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('e9a8c128-2cba-452f-9693-0d8e646571f6','SGW-0768-0025','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='SGW-0769-0025' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('1d0e2677-e42b-4da1-b252-0f38ffadf5f1','SGW-0769-0025','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C6' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C602' and famille_art='C6' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C6' and gp_art='C602' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/100-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('335a84d4-a990-4ccb-b34f-00aeb13cf2c5','ASE-BFP-1515/100-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/120-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('b5d3b7f5-2da3-4ec2-bc91-7b8fe07b7120','ASE-BFP-1515/120-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/200-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('c0c61231-2837-4033-b48d-7f60174610e2','ASE-BFP-1515/200-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/220-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('d4618df8-68eb-4882-a73a-c2e94e4f7570','ASE-BFP-1515/220-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/250-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('2a12dfdd-6f9f-4b32-8492-3522008c0646','ASE-BFP-1515/250-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/300-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('f3a961fb-59fa-42df-ba72-63d9f3bef603','ASE-BFP-1515/300-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/350-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('da74a4ad-ae33-4b10-8563-cca7475e4180','ASE-BFP-1515/350-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/380-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('e45f0bf4-52fd-46d5-b941-375a3963b6f0','ASE-BFP-1515/380-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/500-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('6efe49ed-634f-49d8-a917-63ed4a0a9716','ASE-BFP-1515/500-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFP-1515/600-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('778dda0b-4d40-4dc9-9e7b-bf2490de4d80','ASE-BFP-1515/600-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERY: select * from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and article='ASE-BFS-1515/100-240' and id_order is null and code_document='DPS'; +EXEC: INSERT INTO order_articles (id,article,quantity,id_user,code_document) VALUES ('090baec3-78df-405c-8da0-4e5dc557caae','ASE-BFS-1515/100-240','1','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','DPS'); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/94.0.4606.61 Safari/537.36' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('52deb531-9160-48a5-8624-b74be05a3be4','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '52deb531-9160-48a5-8624-b74be05a3be4' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('2c43dd0e-cc82-4a2c-97bd-675f9f56e691','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +lient is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='A4' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A405' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A405' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A402' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A400' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A405' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A405' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A415' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A415' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A400' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A400' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A401' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A401' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A402' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A402' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='A405' and famille_art='A4' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '2c43dd0e-cc82-4a2c-97bd-675f9f56e691' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:89.0) Gecko/20100101 Firefox/89.0' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='A4' and gp_art='A405' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '60b10f74-2b2e-4c91-bae0-a98bce320a59' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('5b3798ae-e9c2-47e7-91ad-c6c3248b626d','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = '5b3798ae-e9c2-47e7-91ad-c6c3248b626d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('cd95ce5b-9f08-4599-977d-b01a936ad0c5','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +g join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C100' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'cd95ce5b-9f08-4599-977d-b01a936ad0c5' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C100' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select id,usertype from users where lower(useremail)=lower('ksaffran@dks.lu') and userpassword = '0ecf731e2426a8a469f06e9f4a3bcbed6f8071d9d3e3ef7ef5fd9165021e27ec' and userpassword is not null and userpassword != '' and isenabled='1'; +QUERY: select uuid_v4() as sessid; +EXEC: delete from sessions where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and remote_addr='fe80::e486:3386:564:7b78' and user_agent='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1'; +QUERY: INSERT INTO sessions (id, id_user, remoteaddr, useragent, created) VALUES ('a014cd1f-2162-4f8e-9d3e-3f89d98b811d','ef3b63ab-24a5-4972-86fb-8c3a4f36e75c','fe80::e486:3386:564:7b78','Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1',CURRENT_TIMESTAMP); +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ar.gp_art as id,ar.famille_art,coalesce(fm.titre_fr,fm.titre_fr) as famille,ar.gp_art,coalesce(gr.titre_fr,gr.titre_fr) as groupe + from article_groups ar + left join groupes gr on (ar.gp_art=gr.gp_art ) + left join familles fm on (ar.famille_art=fm.famille_art) + where ar.isactive=1 + group by ar.famille_art,ar.gp_art + order by ar.famille_art,ar.gp_art ASC; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='DPS' +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select count(*) as cnt from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS' +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select client,CONCAT(client,' | ', nom_1) as dspname,adresse_client from clients where client in (select id_client from clients_contacts cc where useremail in (select useremail from users where id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c')); +QUERY: select us.nom,us.useremail,us.usertype, us.userlanguage, us.isenabled + from users us where us.id='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c'; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select cladr.client,cladr.adresse_client,concat('(',cladr.client,') ',cladr.nom_1) as name_display from ( + select client,nom_1,nom_2,adresse_client from clients where client in ( + select id_client from clients_contacts cc group by id_client)) cladr + left join (select client from clients_contratcadre group by client) ccc on (cladr.client=ccc.client) where ccc.client is not null order by cladr.nom_1; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article_group,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from order_articles where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') group by article_group) order by titre,article; +QUERYARRAY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article,oa.quantity, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink + from articles ar left join article_prices ap on (ar.article = ap.article) + join order_articles oa on (ar.article = oa.article and id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c' and id_order is null and code_document='RSS') + where ar.isactive=1 group by ar.article order by ar.article_group,ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id, UPPER(ag.article) as article, ag.gp_art, ag.famille_art, + coalesce(ag.titre_fr, ag.titre_fr) as titre, + coalesce(ag.description_fr, ag.description_fr) as description, + ag.c01_label, ag.c02_label, ag.c03_label, ag.c03_label, ag.c04_label, ag.c05_label, replace(ag.image, ' ', '%20') as image, + ag.fichetechnique, ag.brochure, ag.noticemontage, ag.videolink, ad.creationdate + from article_groups ag join ( select article as article_group,creationdate from ( select ag2.article,ar2.creationdate as creationdate from articles ar2 join article_groups ag2 on (ar2.article_group=ag2.article) where ag2.isactive= 1 order by ar2.creationdate DESC) ar3 group by article,creationdate order by creationdate DESC LIMIT 10 ) ad on (UPPER(ag.article) = UPPER(ad.article_group)) where ag.isactive = 1 group by ag.id order by ad.creationdate DESC, ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, ar.qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, ar.videolink,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew from articles ar left join article_prices ap on (ar.article = ap.article) where UPPER(article_group) in ('&SGW','&SGW-0603','&SGW-0762','&SGW-0763','&SGW-0766','&SGW-0767','&SGW-0877','&SGW-0904','&SGW-0911','&SGW-0935') and ar.isactive = 1 group by ar.id, ar.article_group, ar.article order by ar.article_group, ar.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C5' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C505' and famille_art='C5' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C5' and gp_art='C505' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C2' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select ag.id,UPPER(ag.article) as article,ag.gp_art,ag.famille_art,coalesce(ag.titre_fr,ag.titre_fr) as titre,replace(ag.image,' ','%20') as image,SUBSTRING(ag.titre_fr, position(' | ' in ag.titre_fr)+3) as qubestr from article_groups ag left join groupes grp on (ag.gp_art=grp.gp_art) where ag.famille_art='C1' and ag.isactive=1 group by ag.id order by ag.gp_art,grp.titre_fr,ag.titre_fr,ag.article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,imgversion,fichetechnique,brochure,noticemontage,videolink from article_groups + where gp_art='C102' and famille_art='C1' and isactive=1 order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id,UPPER(ar.article_group) as article_group,UPPER(ar.article) as article,ar.gp_art,ar.famille_art,ar.c01,ar.c02,ar.c03,ar.c04,ar.c05,ap.prix_net,ar.unite_quantite,qte_stock,qte_commandee,ar.doc_ft,ar.doc_mo,ar.doc_fs,case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew,ar.videolink from articles ar left join article_prices ap on (ar.article=ap.article) where ar.isactive=1 and ar.article_group in (select article from article_groups where famille_art='C1' and gp_art='C102' and isactive=1) group by id,article_group,article order by article_group,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYARRAY: select id,UPPER(article) as article,gp_art,famille_art,coalesce(titre_fr,titre_fr) as titre,coalesce(description_fr,description_fr) as description,c01_label,c02_label,c03_label,c03_label,c04_label,c05_label,replace(image,' ','%20') as image,fichetechnique,brochure,noticemontage,videolink from article_groups where article in (select article_group from articles where isactive=1 and article in (select article from userfavorites where id_user='ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by article_group) order by titre,article; +QUERY: select se.id as sid,se.id_user,se.sessiondata,us.usertype,us.userlanguage from sessions se + join users us on (se.id_user=us.id) + where se.id = 'a014cd1f-2162-4f8e-9d3e-3f89d98b811d' and us.isenabled ='1' and se.remoteaddr= 'fe80::e486:3386:564:7b78' and se.useragent ='Mozilla/5.0 (iPhone; CPU iPhone OS 13_2_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.0.3 Mobile/15E148 Safari/604.1' ; +QUERYBYKEY: select ar.id, UPPER(ar.article_group) as article_group, UPPER(ar.article) as article, ar.gp_art, ar.famille_art, ar.c01, ar.c02, ar.c03, ar.c04, ar.c05, ap.prix_net, ar.unite_quantite, qte_stock, qte_commandee, ar.doc_ft, ar.doc_mo, ar.doc_fs, case when ar.creationdate + INTERVAL 1 month > CURRENT_DATE then 1 else null end as isnew, ar.videolink from articles ar left join article_prices ap on (ar.article = ap.article) + where ar.article in ( select article from userfavorites where id_user = 'ef3b63ab-24a5-4972-86fb-8c3a4f36e75c') group by ar.article_group,ar.article order by ar.article_group,ar.article; diff --git a/public_html/shop/tmpl/elements/shopbottombar.html b/public_html/shop/tmpl/elements/shopbottombar.html index 2c75e5e..b5128a4 100644 --- a/public_html/shop/tmpl/elements/shopbottombar.html +++ b/public_html/shop/tmpl/elements/shopbottombar.html @@ -1,6 +1,8 @@
- + + + diff --git a/public_html/shop/tmpl/js/orders.js b/public_html/shop/tmpl/js/orders.js index 63fcf72..b4a0c50 100644 --- a/public_html/shop/tmpl/js/orders.js +++ b/public_html/shop/tmpl/js/orders.js @@ -67,7 +67,7 @@ let orders = { bsr += '
 
'; bsr += '
'; bsr += ''; - let template = document.getElementById('basketcart').innerHTML; + let template = document.getElementById(otype + 'cart').innerHTML; for (var a in odata[g]['articles']){ let adata=odata[g]['articles'][a]; adata["stf"] = ((stf)?adata[stf]:1); @@ -97,24 +97,41 @@ let orders = { removeItems: function(otype,artid){ //console.log("remove Item:",artid); postData({"cl":"Orders","fn":"removeItems","type":otype,"id_user":"{{session.id_user}}","article":artid}).then(data => { + this.getItemCount(otype); this.viewTable(otype); }); }, viewTable: function(otype){ postData({"cl":"Orders","fn":"getItems","id_user":"{{session.id_user}}","type":otype,"lang":"{{lang}}"}).then(ogrps => { - console.log("ordergroups",ogrps.data); + //console.log("ordergroups",ogrps.data); orders.setTable(ogrps.data,otype); myapp.viewpanel(otype); }); }, getItemCount: function(otype){ postData({"cl":"Orders","fn":"getItemCount","id_user":"{{session.id_user}}","type":otype}).then(data => { - document.getElementById(otype + "items").innerHTML = data.data.cnt; + console.log("cnt",otype,data); + let conts = document.getElementsByName(otype + "items"); + if (conts){ + for (var i in conts){ + conts[i].innerHTML = data.data.cnt + } + //document.getElementById(otype + "items").innerHTML = ; + } + }); }, setItem: function(article,quantity,otype){ postData({"cl":"Orders","fn":"setItem","article":article,"quantity":quantity,"id_user":"{{session.id_user}}","type":otype}).then(data => { - console.log(data.data); + console.log("After setItems",data); + let conts = document.getElementsByName(otype + "items"); + if (conts){ + for (var i in conts){ + conts[i].innerHTML = data.data.count; + } + //document.getElementById(otype + "items").innerHTML = ; + } + }); }, setOrderAddress: function(){ diff --git a/public_html/shop/tmpl/js/shop.js b/public_html/shop/tmpl/js/shop.js index 38dae5b..f88ad96 100644 --- a/public_html/shop/tmpl/js/shop.js +++ b/public_html/shop/tmpl/js/shop.js @@ -21,24 +21,6 @@ let shop= { dateFormat: "Y-m-d", "locale": "{{lang}}", }); - // shop.selects["askprice_type"] = new SlimSelect({ - // select: "#askprice_type", - // showSearch: false - // }); - // shop.selects["ccaddress"] = new SlimSelect({ - // select: "#ccaddress", - // showSearch: false, - // afterClose: function(){ - // shop.setAddress(); - // } - // }); - // shop.selects["aaaddress"] = new SlimSelect({ - // select: "#aaaddress", - // showSearch: false, - // afterClose: function(){ - // shop.setAddress(); - // } - // }); shop.tblgroups = new Tabulator("#tbl_groups", { height: "calc(100vh - 127px)", layout: "fitDataStretch", @@ -80,11 +62,9 @@ let shop= { groupBy:["famille"], groupStartOpen:[false], groupHeader:[function(value, count, data){ - //console.log("GH",data) return ((value)?data[0].famille_art + ' | ' +value :""); }], groupClick:function(e, group){ - //console.log("code famille",group._group.rows[0].data.famille_art); shop.getAGbyFamilly(group._group.rows[0].data.famille_art,group._group.key); let openkey = group._group.key; var groups = shop.tblmobilegroups.getGroups(); @@ -130,20 +110,31 @@ let shop= { for (var d=0;d