Dynamic methods of connecting to a database

Source: Internet
Author: User
Tags file system ini connect
Dynamic | data | database
Dynamic methods of connecting to a database:
Here we create a file system.ini with a suffix of ini, and write the following code in the System.ini file:

[Dbms_profiles]
Current=odbc
profiles=
[Profile]
dbms=
Database=
Userid=
databasepassword=
logpassword=
Servername=
Logid=
lock=
Dbparm=connectstring= ' Dsn=ora8; uid=; Pwd= '//ora8 refers to the database server name
Prompt=0
Autocommit=0

This writes the following code in the application's Open event:
String Ls_inifile

Ls_inifile = "System.ini"

Profile System
SQLCA. DBMS =profilestring (ls_inifile, "Database", "DBMS", "")
Sqlca.database =profilestring (ls_inifile, "database", "Database", "")
Sqlca.userid =profilestring (Ls_inifile, "Database", "userid", "")
Sqlca.dbpass =profilestring (Ls_inifile, "Database", "Dbpass", "")
SQLCA. Logid =profilestring (Ls_inifile, "Database", "Logid", "")
SQLCA. Logpass =profilestring (Ls_inifile, "Database", "Logpassword", "")
SQLCA. ServerName =profilestring (Ls_inifile, "Database", "ServerName", "")
SQLCA. Dbparm =profilestring (Ls_inifile, "Database", "Dbparm", "")

Connect using Sqlca;
Open (W_frame)
If Sqlca.sqlcode<>0 Then
Messagebox ("Cannot connect to database", Sqlca.sqlerrtext)
Return
End If


Code Test passed Pb8.0

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.