(Not sure if this is a bug)
I have just noticed the following code in admin_mod_dbsetup.asp in the Createtable sub:
if fdefault <> "" then
select case strDBType
case "access"
if Instr(lcase(strConnString), "jet") then strSql = strSql & "DEFAULT " & fDefault
case else
strSql = strSql & "DEFAULT " & fDefault
end select
end if
This SQL string produced for Access is not different to the string for other databases. Is this a typo or has it been forgotten (to remove?
Just wanted to let you know.