Which Tablet you should buy


Hey,
I am using the table and ipad since last 2 years I most like the ipad
but there are also other Tablets are available  
  1. 1. Ipad 2 is the Apple product great experience to have it
  2. 2. Xoom is manufacture by Motorola with Android 3.0 with 10.1 inch display
  3. 3. Galaxy Tab is the Samsung product there are various tablet available in the market manufacture by Samsung with Android os
  4. 4. TouchPad  is manufacture by HP with the great HP webOS 3.0
  5. 5. BlackBerry PlayBook is the product of RIM comes with the RIM BlackBerry Tablet OS
Android and the iOS are the most popular os in the world
So, Please Refer this chart before buying the Tablet 

Latest News about the iphone 5


There are some rumor about iPhone 5 as well – equally good and bad. I’ll start with some wanton one- it’s said that the initiate of so much expected iDevice is belated till October… Who knows, actually…As for positive news- the rumors leaked that the screen of iPhone 5 will be bigger, and the device will be thinner than iPhone4. The “thin iPhone” rumors point to a warped back design for the device, which seems somewhat implausible, given that Apple has switched from such a design to a rectangular, flat back in iPhone 4.

APPLE WILL INSTIGATE IPAD HD AS AN ALTERNATIVE OF IPAD3


According to the most recent rumor about the launch of Ipad3, apple will launch ipad HD as an alternative of Ipad3 and it will be happening in the fall. This will be a new entry in the ipad series. The ipad HD, which should not be confused with the ipad 3, it will come with a twice resolution screen (2048 x 1536), and be targeted toward a specific high end market.



Well, according to the reports the idea would be to create a “Pro” version, like the MacBook Pro vs. the MacBook. At the similar time, the company will apparently release a version of Final Cut or some other type of video / photo manufacture app.

Apple To Definitely Announce iPhone5 In October


Apple‘s fresh CEO, Tim Cook, will hold a enormous media event Oct. 4 to disclose the iPhone 5, All Things Digital bang mentioning sources “memorable with the subject”.
If accurate, the presentation date of the next generation iPhone is solid with the recent wave of gossip demanding it will be released early in October.
According to the report, the sources claim that Cook will lead over the statement — with the help of other key executive such as Phil Schiller, who contributed in such events previously as well — which would give this event even more significance. Cook must convince the shareholders, the viewers and Apple fans all over the world that he can sure-handedly take over the role of Apple CEO and company showman. This will be his first keynote as the CEO and the expectations for that particular job are, simply put, enormous.
It is not known whether Steve Jobs, who resigned from the role of Apple CEO in August, will be present at the event.

Database connectivity in iphone Application

Hi,Find here the code how to connect the sqlite database in iphone Application
There are requirement to connect the Database an store the local data Sqlite is the option for the iphone App database,Here is the steps


// Write and call this method in your delegate file
- (void) copyDatabaseIfNeeded 
{
//Using NSFileManager we can perform many file system operations.
NSFileManager *fileManager = [NSFileManager defaultManager];
NSError *error;
NSString *dbPath = [self getDBPath];
BOOL success = [fileManager fileExistsAtPath:dbPath]; 
if(!success) {
NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@"Database.sqlite"];
success = [fileManager copyItemAtPath:defaultDBPath toPath:dbPath error:&error];
if (!success) 
NSAssert1(0, @"Failed to create writable database file with message '%@'.", [error localizedDescription]);
}
}
- (NSString *) getDBPath {
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , NSUserDomainMask, YES);
NSString *documentsDir = [paths objectAtIndex:0];
return [documentsDir stringByAppendingPathComponent:@"Database.sqlite"];
}
// Write and call this method where you want to fetch and store the data.
-(void)GetData
{
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory , NSUserDomainMask, YES);
NSString *documentsDir = [paths objectAtIndex:0];
NSString *dbPath = [documentsDir stringByAppendingPathComponent:@"Database.sqlite"];
static sqlite3 *database = nil;
if (sqlite3_open([dbPath UTF8String], &database) == SQLITE_OK)
{
const char *sql = "Select * from Table"; // Your Querry
sqlite3_stmt *selectstmt;
if(sqlite3_prepare_v2(database, sql, -1, &selectstmt, NULL) == SQLITE_OK) {
while(sqlite3_step(selectstmt) == SQLITE_ROW
{
// Fetch the rows
NSString *temp = [NSString stringWithUTF8String:(char *)sqlite3_column_text(selectstmt, 0)];
            }
}
}
    sqlite3_close(database);
}

Powered by Blogger.
Twitter Delicious Facebook Digg Stumbleupon Favorites More