Hi All,
I was hoping I could create/open a SQLite database using the file path in a NSString, but it appears this is illegal.
Does this mean I have to convert the NSString to a char?
If so, how is this best achieved?
Pete
I was hoping I could create/open a SQLite database using the file path in a NSString, but it appears this is illegal.
Code:
rc = sqlite3_open(fullPath,&db);
Does this mean I have to convert the NSString to a char?
If so, how is this best achieved?
Pete