Skip to content

Commit

Permalink
Fix incompatible Access SQL data type
Browse files Browse the repository at this point in the history
Fixes #533
  • Loading branch information
joyfullservice committed Sep 6, 2024
1 parent 48c4612 commit 571dce9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Version Control.accda.src/modules/clsDbTableDef.cls
Original file line number Diff line number Diff line change
Expand Up @@ -504,7 +504,7 @@ Private Function GetTypeString(intType As DAO.DataTypeEnum) As String
Case dbMemo: GetTypeString = "LONGTEXT"
Case dbDouble: GetTypeString = "DOUBLE"
Case dbSingle: GetTypeString = "SINGLE"
Case dbByte: GetTypeString = "UNSIGNED BYTE"
Case dbByte: GetTypeString = "BYTE"
Case dbInteger: GetTypeString = "SHORT"
Case dbLong: GetTypeString = "LONG"
Case dbNumeric: GetTypeString = "NUMERIC"
Expand Down

0 comments on commit 571dce9

Please sign in to comment.