This topic is locked
[SOLVED]

 Custom Button to Execute SQL Script

12/3/2019 10:46:59 PM
PHPRunner General questions
Lowkeck authorDevClub member

Hi Guys,
I am looking to create a button that will execute a simple Microsoft SQL Script. Can someone point me in the right direction?
For argument sake, lets say I want to execute this:
Truncate Table ImportData

N
Nir Frumer 12/4/2019

hi

in phprunner it will be
db_exec('Truncate Table ImportData');
hope it helps,

Nir.

Lowkeck authorDevClub member 12/4/2019



hi

in phprunner it will be
db_exec('Truncate Table ImportData');
hope it helps,

Nir.


Yes, works perfectly. Thanks!