"FMDataBase Creation - An FMDatabase is created with a path to an actual SQLite database file. If it doesn't exist it will be created." | db databasePath | databasePath := 'Sample.sqlite' asLocalPathName. db := FMDatabase withPath: databasePath. self print: 'FMDatabase: ', db.