Related Articles
PHP Mysql Visitor Counter Script
If you want to add a counter to a web page or a website then use the below simple PHP Counter Script using MySql. It is very easy to implement it and it counts whenever a page is being refreshed and the script won’t reduce page speed, unlike page counter scripts. PHP Visitor Counter Script […]
RRULE EXDATE Ical Recurring Event Appointment Example
If you are looking for a RRULE EXDATE Ical example file for a Recurring Event then check below. Ical Recurring Event Example BEGIN:VCALENDAR PRODID:-//Microsoft Corporation//Outlook 9.0 MIMEDIR//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:PUBLISH BEGIN:VEVENT DTSTART:20190922T023000Z DTSTAMP:20190922T023611Z RRULE:FREQ=WEEKLY;INTERVAL=1;UNTIL=20151122T033000Z UID:1780 Location:AP Test DESCRIPTION:test LAST-MODIFIED:20190922T023611Z SEQUENCE:0 STATUS:CONFIRMED SUMMARY: service TRANSP:OPAQUE END:VEVENT END:VCALENDAR
Groovy Script SQL Connection Bonitasoft
Below is the SQL Connection for a Groovy Script for a SELECT Command in Bonitasoft BPM import groovy.sql.Sql;def host = “localhost”;def user = “bonita”;def pass = “bpm”;def schema = “bonita_journal”;def query = “SELECT * FROM BN_USER where USER_PRO_EMAIL_=’${email_Address__}’ limit 1”;def list=[];sql = providedscripts.BonitaSql.newInstance(“jdbc:mysql://${host}/${schema}”,user, pass, new com.mysql.jdbc.Driver())sql.eachRow(query,{row-> list.add(row.USER_USERNAME_)}); IdentityAPI api = apiAccessor.getIdentityAPI();User userObj = api.findUserByUserName(list[0]);User manager1 […]