Aug 13, 2003 #1 xtharmon Programmer Jan 23, 2003 6 US How do I create the database with a password? Currently this is what I am doing. szAttributes2 = "CREATE_DB="ls_mdb retcode = SQLConfigDataSource(hWnd, ODBC_CONFIG_SYS_DSN, szDriver, szAttributes2)
How do I create the database with a password? Currently this is what I am doing. szAttributes2 = "CREATE_DB="ls_mdb retcode = SQLConfigDataSource(hWnd, ODBC_CONFIG_SYS_DSN, szDriver, szAttributes2)
Aug 14, 2003 #2 DaOtH Technical User Jan 22, 2002 114 SE Try something like this : Set dbBackend = CreateDatabase(BackendFileName, dbLangGeneral) dbBackend.NewPassword "", "password" dbBackend.Close "In three words I can sum up everything I've learned about life: it goes on." - Robert Frost 1874-1963 Upvote 0 Downvote
Try something like this : Set dbBackend = CreateDatabase(BackendFileName, dbLangGeneral) dbBackend.NewPassword "", "password" dbBackend.Close "In three words I can sum up everything I've learned about life: it goes on." - Robert Frost 1874-1963