TAILIEUCHUNG - Phát triển ứng dụng cho iPhone và iPad - part 8

Tham khảo tài liệu 'phát triển ứng dụng cho iphone và ipad - part 8', công nghệ thông tin, kỹ thuật lập trình phục vụ nhu cầu học tập, nghiên cứu và làm việc hiệu quả | Connecting to Your Database 39 You will populate this variable in the initializeDatabase function. Then every other function in your class will have access to the database. Now you ll create the init function that is used by callers to initialize instances of this class. In init you will make an internal call to initialize the database. The init function should look like this - id init dnwadnadnn Call super init to invoke superclass initiation code if self super init set the reference to the database self initializeDatabase return self Your initializeDatabase function will do just that. It will go out and get the path to the database and attempt to open it. Here is the code for initializeDatabase Available for download on Open the database connection - void initializeDatabase Get the database from the application bundle. NSString path NSBundle mainBundle pathForResource catalog ofType @ db Open the database. if sqlite3_open path UTF8String database SQLITE_OK NSLog Opening Database else Call close to properly clean up sqlite3_close database NSAssert1 0 Failed to open database s . sqlite3_errmsg database You can see that you need the path to the database file. Because you put the file in the Resources folder the database will get deployed to the device in the main bundle of the application. There is a handy class NSBundle for getting information about an application bundle. The mainBundle method returns a reference to the main application bundle and the 40 I CHAPTER 2 THE IPHONE AND IPAD DATABASE SQLITE pathForResource ofType method returns the path to the specified file in the bundle. Because you specified the resource as catalog and the type as db the method will return the path to . Next you use the C function sqlite3_open to open a connection to the database. You pass in the path to the database and the address to a variable of type sqlite3 . The second parameter will be populated with the handle to the .

TAILIEUCHUNG - Chia sẻ tài liệu không giới hạn
Địa chỉ : 444 Hoang Hoa Tham, Hanoi, Viet Nam
Website : tailieuchung.com
Email : tailieuchung20@gmail.com
Tailieuchung.com là thư viện tài liệu trực tuyến, nơi chia sẽ trao đổi hàng triệu tài liệu như luận văn đồ án, sách, giáo trình, đề thi.
Chúng tôi không chịu trách nhiệm liên quan đến các vấn đề bản quyền nội dung tài liệu được thành viên tự nguyện đăng tải lên, nếu phát hiện thấy tài liệu xấu hoặc tài liệu có bản quyền xin hãy email cho chúng tôi.
Đã phát hiện trình chặn quảng cáo AdBlock
Trang web này phụ thuộc vào doanh thu từ số lần hiển thị quảng cáo để tồn tại. Vui lòng tắt trình chặn quảng cáo của bạn hoặc tạm dừng tính năng chặn quảng cáo cho trang web này.