Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
hey guys,
So I have some code to query an external access database and that part works great. However, in that query, it connects to an oracle databse in the process and as a results prompts me for a username and password whenever I run that external query. Is there a way to program in the queried servers username/pw so I dont get a prompt or is that set on the access side? Here is my code now Code:
With ActiveSheet.QueryTables.Add(Connection:=Array( _ "OLEDB;Provider=Microsoft.Jet.OLEDB.4.0;Password="""";User ID=Admin;Data Source=H:\Common\QRMresid\Current Month\Outputs\VTC.mdb;" _ ), Destination:=Range("A1")) .CommandType = xlCmdTable .CommandText = Array("VTC Query") .FieldNames = True .RowNumbers = False .FillAdjacentFormulas = False .PreserveFormatting = True .RefreshOnFileOpen = False .BackgroundQuery = True .RefreshStyle = xlInsertDeleteCells .SavePassword = True .SaveData = True .AdjustColumnWidth = True .RefreshPeriod = 0 .PreserveColumnInfo = True .Refresh BackgroundQuery:=False End With End Sub Greg |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
refresh Query table using own password for each username | Excel Programming | |||
Excel 2000 required username and password login for database query | Setting up and Configuration of Excel | |||
Web Query: Username and Password. | Excel Programming | |||
How to use a Access Query that as a parameter into Excel database query | Excel Discussion (Misc queries) | |||
query system username | Excel Programming |