AdrianThorn
New member
- Local time
- Today, 15:53
- Joined
- Jun 16, 2015
- Messages
- 7
So we have an Access front end that consists of several hundred linked tables. Periodic changes to the backend and simple user error has created a situation where I needed a function that would delete out of date versions of the linked tables and relink them, verifying that the appropriate username and password info was saved in the connection string.
I have no idea why the code isn't working. According to Debug.Print the connection strings are being updated with the correct login info but when I look at the table properties it doesn't reflect the changes made. Any ideas whats going on?
I have no idea why the code isn't working. According to Debug.Print the connection strings are being updated with the correct login info but when I look at the table properties it doesn't reflect the changes made. Any ideas whats going on?
Code:
Dim db As Database
Dim tdef As TableDef
Dim tablesname As String
Dim tableaname As String
Dim constring As String
Set db = CurrentDb
last_connection = db.TableDefs.count - 1
For i = 0 To last_connection
If (Nz(InStr(db.TableDefs(i).Connect, "DRIVER={PostgreSQL ANSI};DATABASE=odk_aggregate;SERVER=omitted;PORT=5432;"), 0) <> 0) And Left(db.TableDefs(i).SourceTableName, 6) = "alb_cr" Then
constring = db.TableDefs(i).Connect
If Nz(InStr(constring, "UID=omitted;PWD=omitted;"), 0) = 0 Then
constring = Replace(constring, "DRIVER={PostgreSQL ANSI};DATABASE=odk_aggregate;SERVER=omitted;PORT=5432;", "DRIVER={PostgreSQL ANSI};DATABASE=odk_aggregate;SERVER=omitted;PORT=5432;UID=omitted;PWD=omitted;")
End If
Debug.Print constring
tablesname = db.TableDefs(i).SourceTableName
tableaname = db.TableDefs(i).Name
DoCmd.DeleteObject acTable, db.TableDefs(i).Name
Set tdef = db.CreateTableDef(tableaname)
tdef.Connect = constring
tdef.SourceTableName = tablesname
Debug.Print tdef.Connect
db.TableDefs.Append tdef
db.TableDefs.Refresh
End If
Next
MsgBox "Done."