Database Update Tool Question
Confluence User - 01 Sep, 2016
Hi, I was wondering if it is possible to update the main dir_user directory using the database update tool in the Processes Map Tools to Plugin option. I tried including my query
INSERT dbo.dir_user SET
active = '1',
email = '#form.useraccount.email#',
firstName = '#form.useraccount.firstName#',
id = '#form.useraccount.username#',
lastName = '#form.useraccount.lastName#',
password = MD5('#form.useraccount.password#'),
timeZone = '#form.useraccount.timeZone#',
locale = '1',
username = '#form.useraccount.username#';
but when I submit my form the data from my form is not inserted into my dir_user in MS SQL
forms;server