database.c
changeset 2 8c88756f81b0
equal deleted inserted replaced
1:823d42546cea 2:8c88756f81b0
       
     1 /* vim: set noet nosta sw=4 ts=4 ft=c : */
       
     2 /*
       
     3 Copyright (c) 2011, Mahlon E. Smith <mahlon@martini.nu>
       
     4 All rights reserved.
       
     5 Redistribution and use in source and binary forms, with or without
       
     6 modification, are permitted provided that the following conditions are met:
       
     7 
       
     8     * Redistributions of source code must retain the above copyright
       
     9       notice, this list of conditions and the following disclaimer.
       
    10 
       
    11     * Redistributions in binary form must reproduce the above copyright
       
    12       notice, this list of conditions and the following disclaimer in the
       
    13       documentation and/or other materials provided with the distribution.
       
    14 
       
    15     * Neither the name of Mahlon E. Smith nor the names of his
       
    16       contributors may be used to endorse or promote products derived
       
    17       from this software without specific prior written permission.
       
    18 
       
    19 THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND ANY
       
    20 EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
       
    21 WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
       
    22 DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS BE LIABLE FOR ANY
       
    23 DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
       
    24 (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
       
    25 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
       
    26 ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
       
    27 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
       
    28 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
       
    29 */
       
    30 
       
    31 #include "volta.h"
       
    32 
       
    33 
       
    34 /*
       
    35  * Parse command line options, perform actions, and enter accept loop.
       
    36  *
       
    37  */
       
    38 int
       
    39 db_initialize( void )
       
    40 {
       
    41 	debug( 1, LOC, "init! init! init!\n" );
       
    42 
       
    43 	struct sqlite3 *db;
       
    44 	struct sqlite3_stmt *stmt;
       
    45 
       
    46 	if ( sqlite3_open( "testing.db", &db ) != SQLITE_OK ) {
       
    47 		debug( 1, LOC, "Error when initializing database: %s\n", sqlite3_errmsg(db) );
       
    48 		return( sqlite3_errcode(db) );
       
    49 	}
       
    50 
       
    51 	if ( sqlite3_prepare( db, "create table foo(bar int);", -1, &stmt, NULL ) != SQLITE_OK ) {
       
    52 		debug( 1, LOC, "Error preparing statement: %s\n", sqlite3_errmsg(db) );
       
    53 		return( sqlite3_errcode(db) );
       
    54 	}
       
    55 
       
    56 	if ( sqlite3_step( stmt ) != SQLITE_DONE ) {
       
    57 		debug( 1, LOC, "Error executing statement: %s\n", sqlite3_errmsg(db) );
       
    58 		return( sqlite3_errcode(db) );
       
    59 	}
       
    60 
       
    61 	sqlite3_finalize( stmt );
       
    62 	sqlite3_close( db );
       
    63 
       
    64 	debug( 1, LOC, "okay! okay! okay!\n" );
       
    65 	return( SQLITE_OK );
       
    66 }
       
    67