| db databasePath | databasePath := 'Sample.sqlite' asLocalPathName. db := FMDatabase withPath: databasePath. db open ifTrue: [ db executeUpdate: 'delete from Books' . db close. ].