devxlogo

Sybase login creation from PB

Sybase login creation from PB

Question:
How can I create a Sybase login from a PowerBuilder front-end application using sp_addlogin?

The normal way of executing stored procedures ? for example, declare procname for procedure ? did not work. Is there any constraint in Sybase or PowerBuilder while executing system stored procedures?

Also, is there another way to create login and users from PB front end in Sybase?

I am using PB 5.0 and Sybase 11.0.

Answer:
The PowerBuilder compiler will recognize only the basic SQL syntax foreach database management system: SELECT, INSERT, UPDATE andDELETE. It will also allow the declaration of store procedures for thoseDBMSes that support them.

For the extended commands that are different on each DBMS, PowerBuilderprovides for dynamic SQL through the use of the EXECUTE IMMEDIATEfunction. There are many formats to the EXECUTE IMMEDIATE command; lookin your DBMS manual for a full description or search fordynamic SQL in the PowerBuilder on-line help.

Basically, the EXECUTE IMMEDIATE commands allow you to pass any string tothe database for execution. If you need to return a result set, youcan use SQLSA and SQLDA to describe and read your result set.

Fortunately, the type of command you want to execute does not require adynamic result set definition. You can use the Format 1 of the EXECUTEIMMEDIATE command, which, for the command you would like to execute, wouldlook something like the following (where the aX_X are arguments to afunction):

String ls_SQLls_SQL = ‘sp_adduser ‘ + as_userid + ‘ ‘ + as_password + ‘ ‘ + as_groupEXECUTE IMMEDIATE :ls_SQL USING SQLCA;

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist