Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is My Database Class .In this I want to insert the data in to the database in the run time .Another class i have edittext while clicking the button the edittext value is inserted in to the database but it is not inserted,how it can be done in this class.

public class DatabaseHelper extends SQLiteOpenHelper {

        public static final String DATABASE_NAME = "employee_directory1";

        public DatabaseHelper(Context context) {
                super(context, DATABASE_NAME, null, 1);
        }

        @Override
        public void onCreate(SQLiteDatabase db) {
                /*


public void onCreate(SQLiteDatabase db) {
                /*
                 * Create the employee table and populate it with sample data.
                 * In step 6, we will move these hardcoded statements to an XML document.
                 */
                String sql = "CREATE TABLE IF NOT EXISTS employee (" +
                                                "_id INTEGER PRIMARY KEY AUTOINCREMENT, " + 
                                                "firstName TEXT, " +
                                                "lastName TEXT, " +
                                                "title TEXT, " +
                                                "officePhone TEXT, " +
                                                "cellPhone TEXT, " +
                                                "email TEXT, " +
                                                "managerId INTEGER)";
                db.execSQL(sql);

                ContentValues values = new ContentValues();

                values.put("firstName", "John");
                values.put("lastName", "Smith");
                values.put("title", "CEO");
                values.put("officePhone", "617-219-2001");
                values.put("cellPhone", "617-456-7890");
                values.put("email", "jsmith@email.com");
                db.insert("employee", null, values);



        }

        @Override
        public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
                db.execSQL("DROP TABLE IF EXISTS employees");
                onCreate(db);


        }

}
share|improve this question
You've posted the databaseclass: it does not do much more then create a database and insert a sample row. Wouldn't it be better if you show your actual code with the button and what you are doing to insert there? – Nanne Feb 8 '11 at 9:48
@nanne this is the code for inserting edittext value,but it shows error in database class Savemedicine.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View v) { try { db.open(); String med=Medicines.getText().toString(); String dos1=Dose1.getText().toString(); String dos2=Dose2.getText().toString(); String dos3=Dose3.getText().toString(); db.getMedicine( med, dos1, dos2, dos3); – user555910 Feb 8 '11 at 10:07
Please provide the stacktrace of the error from your logcat – dave.c Feb 8 '11 at 10:32

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.