Hi Stephen,
Thanks a lot.It's really so much helpful.As such,here i am answering all of your queries.
1.I am using correct sqliteciher_export() as per instruction;
2.Encryption working properly by using sqlite_key method.
3.I am giving complete db path like in below given
NSString *enc_databasePath = [[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0] stringByAppendingPathComponent: @"encrypted"];
NSString* de_export = [NSString stringWithFormat:@"SELECT sqlcipher_export('%@');",enc_databasePath];
const char* sqlstmt1 = [de_export cStringUsingEncoding:NSUTF8StringEncoding];
// export database
res = sqlite3_exec(unencrypted_DB,sqlstmt1, NULL, NULL, NULL);
4.In command line,1st m going that path where plaintext.db is residing .
..dbpath./Documents>sqlite3
sqlite>here i am running all the sqlite commands whatever in fourm and in sqlcipher documents.
-->here only i am umable to run that sqlcipher_export command..
5.what you suggested to use sqlcipherspped app for ashiq,thats i have taken for testing ..but nowhere i find any usage of sqlcipher_export method.what i noticed from there that's measuring performance of the sqlicpher.
But ,i am trying by putting different combination with looking your suggestion .If any testapp which using sqlite_export ,then that would be make away from confusion.
Thanks & Regards,
Sudhakar