Skip to content

Commit

Permalink
Ignore replication properties in Relations
Browse files Browse the repository at this point in the history
We are not attempting to support the export and build of replicated databases.  😄  No need to work with these properties, especially if they cause errors in some cases. Closes #29
  • Loading branch information
joyfullservice committed May 25, 2020
1 parent f9859d7 commit 496d93e
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 18 deletions.
12 changes: 2 additions & 10 deletions Version Control.accda.src/dbs-properties.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Info": {
"Class": "clsDbProperty",
"Description": "Database Properties (DAO)",
"VCS Version": "3.1.5"
"VCS Version": "3.1.8"
},
"Items": {
"AccessVersion": {
Expand Down Expand Up @@ -42,7 +42,7 @@
"Type": 10
},
"AppVersion": {
"Value": "3.1.5",
"Value": "3.1.8",
"Type": 10
},
"Auto Compact": {
Expand Down Expand Up @@ -85,14 +85,6 @@
"Value": 70,
"Type": 3
},
"Last VCS Export": {
"Value": "5/22/2020 5:07:37 PM",
"Type": 10
},
"Last VCS Version": {
"Value": "3.1.5",
"Type": 10
},
"Name": {
"Value": "rel:Version Control.accda",
"Type": 12
Expand Down
2 changes: 1 addition & 1 deletion Version Control.accda.src/documents.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Info": {
"Class": "clsDbDocument",
"Description": "Database Documents Properties (DAO)",
"VCS Version": "3.1.5"
"VCS Version": "3.1.8"
},
"Items": {
"Databases": {
Expand Down
2 changes: 0 additions & 2 deletions Version Control.accda.src/modules/clsDbRelation.bas
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ Private Sub IDbComponent_Export()
.Add "Attributes", m_Relation.Attributes
.Add "Table", m_Relation.Table
.Add "ForeignTable", m_Relation.ForeignTable
.Add "PartialReplica", m_Relation.PartialReplica
End With

' Fields
Expand Down Expand Up @@ -103,7 +102,6 @@ Private Sub IDbComponent_Import(strFile As String)
Set dItem = dFile("Items")
Set rel = dbs.CreateRelation(dItem("Name"), dItem("Table"), dItem("ForeignTable"))
rel.Attributes = dItem("Attributes")
'rel.PartialReplica = dItem("PartialReplica")

' Add fields, and append to relation
For Each dField In dItem("Fields")
Expand Down
2 changes: 1 addition & 1 deletion Version Control.accda.src/nav-pane-groups.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Info": {
"Class": "clsDbNavPaneGroup",
"Description": "Navigation Pane Custom Groups",
"VCS Version": "3.1.5"
"VCS Version": "3.1.8"
},
"Items": {
"Groups": [
Expand Down
4 changes: 2 additions & 2 deletions Version Control.accda.src/vbe-project.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@
"Info": {
"Class": "clsDbVbeProject",
"Description": "VBE Project",
"VCS Version": "3.1.5"
"VCS Version": "3.1.8"
},
"Items": {
"Name": "MSAccessVCS",
"Description": "Version 3.1.5 deployed on 5/22/2020",
"Description": "Version 3.1.8 deployed on 5/25/2020",
"FileName": "rel:Version Control.accda",
"HelpContextId": 0,
"HelpFile": "",
Expand Down
2 changes: 1 addition & 1 deletion Version Control.accda.src/vbe-references.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Info": {
"Class": "clsDbVbeReference",
"Description": "VBE References",
"VCS Version": "3.1.5"
"VCS Version": "3.1.8"
},
"Items": {
"stdole": {
Expand Down
2 changes: 1 addition & 1 deletion Version Control.accda.src/vcs-options.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"Info": {
"AddinVersion": "3.1.5",
"AddinVersion": "3.1.8",
"AccessVersion": "14.0 32-bit",
"Hash": "@{7206d6328b5c80f8ceae447eb65c6abd23260569ff1ffc94}"
},
Expand Down

0 comments on commit 496d93e

Please sign in to comment.