Configuration of Login and password in VB6 program
- From: albertleng <albertleng@xxxxxxxxx>
- Date: Tue, 04 Sep 2007 01:13:21 -0000
Dear all,
I have a VB6 project which the program needs to access SQL Server 2005
tables.
As below, the userID is QA and the password is qapl.
The user has requested that to prevent us (the designer) to know the
userID and password of the SQL server, they can configure the userID
and password for the program.
I suggest to give them the source codes to let them change themselves
but they dont want this solution.
They requested that they want a solution which they can change the
login and password of the program without touching the source code but
able to prevent the designer (me) to have idea of login and password
used. Please omit the solution which uses textfile to store the login
and password unless the user can hide those details from the
designer.
Any idea? Thanks.
With csvSQL
.Provider = "MSDASQL"
.ConnectionString = "User ID=QA;" & _
"Password=qapl;" & _
"Data Source = RD178;" & _
"Initial Catalog = RD178"
.Open
End With
Albert
.
- Follow-Ups:
- Re: Configuration of Login and password in VB6 program
- From: Stefan Berglund
- Re: Configuration of Login and password in VB6 program
- From: MikeD
- Re: Configuration of Login and password in VB6 program
- Prev by Date: Re: Removing NON-DUPLICATE items in a ComboBox
- Next by Date: Testing for Excel
- Previous by thread: VB6 Embedded Font
- Next by thread: Re: Configuration of Login and password in VB6 program
- Index(es):
Relevant Pages
|