Getting data from SQL

S

snook

Hi,

I am trying to build a workbook with data from SQL. I need to prompt
the user for the SQL server, login and pwd (its in mixed mode)
everytime the workbook is opened.

I am new to this and I have explored the following options:

Building a login form and ADO recordsets

Using SQL.Request()

Our users are on various versions of Excel (all 2000+) so I want to
make sure it works for everyone.

thanks
 
G

Guest

Try this:

1. Create your ADO connection object.
2. Set its Properties.Prompt.Value = 1 ' adPromptAlways
3. Open your Connection object

An appropriate form will open up asking for the relevant/missing information.

Sub aa()
Set adoc = CreateObject("ADODB.Connection")
adoc.Properties("Prompt").Value = 1
adoc.Open
End Sub
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top