InterviewSolution
| 1. |
Explain The “connect String Dbparm” Parameter In Power Builder. |
|
Answer» It specifies the PARAMETERS required to connect to an ODBC data source. PowerBuilder uses these parameters to connect to the database. The SYNTAX is Connect String = 'DSN = data_source_name; {UID = user_Id; PWD = password; driver_specific_parameters}' PowerBuilder generates the Connect String automatically when you DEFINE an ODBC data source and copies it to the DBParm box in the Database Profile Set-up dialog box. This happens before you connect to the data source in PowerBuilder. It specifies the parameters required to connect to an ODBC data source. PowerBuilder uses these parameters to connect to the database. The syntax is Connect String = 'DSN = data_source_name; {UID = user_Id; PWD = password; driver_specific_parameters}' PowerBuilder generates the Connect String automatically when you define an ODBC data source and copies it to the DBParm box in the Database Profile Set-up dialog box. This happens before you connect to the data source in PowerBuilder. |
|