Hi all,
I am new in Dataflux and I am trying to figure out how to do a conditional logic with an ODBC connection using multiple columns from the external data source. There are multiple columns in the RULES table and I need to use them in a conditional logic.
This is what I have so far.
static dbconnection db1
static dbstatement stmt1
dbcursor curs1
boolean retval1
if isnull(db1) then
db1 = dbconnect('DSN=MS Access Database;DFXTYPE=ODBC')
if isnull(stmt1) then
begin
stmt1 = db1.prepare("SELECT * FROM "RULES" WHERE ISALPHA = ?")
stmt1.setparaminfo(0, 'string', 5)
end
<<missing comparison>>
if retval1 == true then
return true
else
return false
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.