새 데이터베이스를 어떻게 생성하나요?

새 데이터베이스를 어떻게 생성하나요?

Yosemite 10.10.1로 업그레이드한 이후 새 데이터베이스를 생성할 수 없습니다.

set theOutputFolder to choose folder with prompt "Please select an output folder:"
tell application "Database Events"
    make new database with properties {name:"Test", location:theOutputFolder}
end tell

"데이터베이스 이벤트" 애플리케이션의 데이터베이스 "테스트"가 발생하는 것으로 보이지만 그렇지 않습니다. 내 데스크탑에는 없거나 적어도 볼 수는 없습니다. 누구든지 저를 도와주실 수 있나요?

답변1

set theOutputFolder to choose folder with prompt "Please select an output folder:"
tell application "Database Events"
    make new database with properties {name:"Test", location:theOutputFolder}
    save database "Test"
end tell

새 데이터베이스를 저장하려면 save 명령을 추가하세요. 그러면 Finder에 표시됩니다.

관련 정보