How to use TRIGGER in Android SQLite












7















I have two tables in database:




  • table one has name and room number column

  • table two has room number and time column.


Now when the room number from first column is deleted or added, my second table should also be updated. I think this is possible with TRIGGER command, but I am not really sure as how to use it.



Generally my create database statement is like this:



private static final String DATABASE_CREATE_PATIENT_ID_TABLE =
"create table " + DATABASE_PATIENT_TABLE +
" (_id integer primary key autoincrement,"
+ "patient_number text not null, room_numbertext not null, " +
"patient_initial text not null);";


Now when the rooms are deleted or added in the first table my second table should be updated.



private static final String DATABASE_CREATE_NOTES_ID_TABLE =
"create table " + DATABASE_NOTES_TABLE +
" (_id integer primary key autoincrement," +
" room_number text not null, time_hour text not null, " +
"notes_hour text not null, today_date text not null);";


Initially I was doing was compare the content of the two tables. But this definitely will lead to performance issue later when data will increase. So I stumbled across TRIGGER thing. I think this can solve my problem, but I don't know how exactly should I use it.



I came to know about it from Using SQLite Database with Android.



I have explained this problem with the screen shot in my another question. Please have a look at it and if please kindly guide me
new question










share|improve this question

























  • Why is it that people asking questions about database issues are so reluctant to name their tables in the question? This isn't aimed at you only, Shaista (though you are 'guilty' of it in this question); it is a general observation about database-related questions on SO.

    – Jonathan Leffler
    May 12 '11 at 19:16






  • 1





    But I have named it as you can see in the code itself. It is directly from my code, only when I explained it kept it short just to point the direct question. My intention was clear may be got misinterpreted.

    – Shaista Naaz
    May 12 '11 at 19:21






  • 1





    @Jonathan - There are different issues related to work, nobody wants to reveal their work code to general public unless they are completely done. Just my opinion.

    – yogsma
    May 12 '11 at 19:22






  • 7





    @Jonathan: I'd guess the first table is called something like 'PATIENTS' and the second something like 'NOTES' or 'PATIENT_NOTES'. What exactly is your point? Regardless of what the actual table names are in Shaista's DB, knowing their names has no relevance to the question about using TRIGGER in an Android SQLite DB.

    – Squonk
    May 12 '11 at 19:26











  • @yogsma: I understand not naming work-related tables - but at least if there are names in the question (which need not be the same as in the work scenario), then the answers can talk consistently, rather than forcing everyone to come up with their own names for the tables, making it difficult to correlate different parts of different answers. @Shaista: you named them indirectly; DATABASE_PATIENT_TABLE and DATABASE_NOTES_TABLE are (presumably) variables holding the names of the tables. It is best to name them where the bullet points are: One table is Patients ...; the other is Notes.

    – Jonathan Leffler
    May 12 '11 at 19:27
















7















I have two tables in database:




  • table one has name and room number column

  • table two has room number and time column.


Now when the room number from first column is deleted or added, my second table should also be updated. I think this is possible with TRIGGER command, but I am not really sure as how to use it.



Generally my create database statement is like this:



private static final String DATABASE_CREATE_PATIENT_ID_TABLE =
"create table " + DATABASE_PATIENT_TABLE +
" (_id integer primary key autoincrement,"
+ "patient_number text not null, room_numbertext not null, " +
"patient_initial text not null);";


Now when the rooms are deleted or added in the first table my second table should be updated.



private static final String DATABASE_CREATE_NOTES_ID_TABLE =
"create table " + DATABASE_NOTES_TABLE +
" (_id integer primary key autoincrement," +
" room_number text not null, time_hour text not null, " +
"notes_hour text not null, today_date text not null);";


Initially I was doing was compare the content of the two tables. But this definitely will lead to performance issue later when data will increase. So I stumbled across TRIGGER thing. I think this can solve my problem, but I don't know how exactly should I use it.



I came to know about it from Using SQLite Database with Android.



I have explained this problem with the screen shot in my another question. Please have a look at it and if please kindly guide me
new question










share|improve this question

























  • Why is it that people asking questions about database issues are so reluctant to name their tables in the question? This isn't aimed at you only, Shaista (though you are 'guilty' of it in this question); it is a general observation about database-related questions on SO.

    – Jonathan Leffler
    May 12 '11 at 19:16






  • 1





    But I have named it as you can see in the code itself. It is directly from my code, only when I explained it kept it short just to point the direct question. My intention was clear may be got misinterpreted.

    – Shaista Naaz
    May 12 '11 at 19:21






  • 1





    @Jonathan - There are different issues related to work, nobody wants to reveal their work code to general public unless they are completely done. Just my opinion.

    – yogsma
    May 12 '11 at 19:22






  • 7





    @Jonathan: I'd guess the first table is called something like 'PATIENTS' and the second something like 'NOTES' or 'PATIENT_NOTES'. What exactly is your point? Regardless of what the actual table names are in Shaista's DB, knowing their names has no relevance to the question about using TRIGGER in an Android SQLite DB.

    – Squonk
    May 12 '11 at 19:26











  • @yogsma: I understand not naming work-related tables - but at least if there are names in the question (which need not be the same as in the work scenario), then the answers can talk consistently, rather than forcing everyone to come up with their own names for the tables, making it difficult to correlate different parts of different answers. @Shaista: you named them indirectly; DATABASE_PATIENT_TABLE and DATABASE_NOTES_TABLE are (presumably) variables holding the names of the tables. It is best to name them where the bullet points are: One table is Patients ...; the other is Notes.

    – Jonathan Leffler
    May 12 '11 at 19:27














7












7








7


3






I have two tables in database:




  • table one has name and room number column

  • table two has room number and time column.


Now when the room number from first column is deleted or added, my second table should also be updated. I think this is possible with TRIGGER command, but I am not really sure as how to use it.



Generally my create database statement is like this:



private static final String DATABASE_CREATE_PATIENT_ID_TABLE =
"create table " + DATABASE_PATIENT_TABLE +
" (_id integer primary key autoincrement,"
+ "patient_number text not null, room_numbertext not null, " +
"patient_initial text not null);";


Now when the rooms are deleted or added in the first table my second table should be updated.



private static final String DATABASE_CREATE_NOTES_ID_TABLE =
"create table " + DATABASE_NOTES_TABLE +
" (_id integer primary key autoincrement," +
" room_number text not null, time_hour text not null, " +
"notes_hour text not null, today_date text not null);";


Initially I was doing was compare the content of the two tables. But this definitely will lead to performance issue later when data will increase. So I stumbled across TRIGGER thing. I think this can solve my problem, but I don't know how exactly should I use it.



I came to know about it from Using SQLite Database with Android.



I have explained this problem with the screen shot in my another question. Please have a look at it and if please kindly guide me
new question










share|improve this question
















I have two tables in database:




  • table one has name and room number column

  • table two has room number and time column.


Now when the room number from first column is deleted or added, my second table should also be updated. I think this is possible with TRIGGER command, but I am not really sure as how to use it.



Generally my create database statement is like this:



private static final String DATABASE_CREATE_PATIENT_ID_TABLE =
"create table " + DATABASE_PATIENT_TABLE +
" (_id integer primary key autoincrement,"
+ "patient_number text not null, room_numbertext not null, " +
"patient_initial text not null);";


Now when the rooms are deleted or added in the first table my second table should be updated.



private static final String DATABASE_CREATE_NOTES_ID_TABLE =
"create table " + DATABASE_NOTES_TABLE +
" (_id integer primary key autoincrement," +
" room_number text not null, time_hour text not null, " +
"notes_hour text not null, today_date text not null);";


Initially I was doing was compare the content of the two tables. But this definitely will lead to performance issue later when data will increase. So I stumbled across TRIGGER thing. I think this can solve my problem, but I don't know how exactly should I use it.



I came to know about it from Using SQLite Database with Android.



I have explained this problem with the screen shot in my another question. Please have a look at it and if please kindly guide me
new question







android database sqlite triggers






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited May 23 '17 at 11:45









Community

11




11










asked May 12 '11 at 19:08









Shaista NaazShaista Naaz

4,94883147




4,94883147













  • Why is it that people asking questions about database issues are so reluctant to name their tables in the question? This isn't aimed at you only, Shaista (though you are 'guilty' of it in this question); it is a general observation about database-related questions on SO.

    – Jonathan Leffler
    May 12 '11 at 19:16






  • 1





    But I have named it as you can see in the code itself. It is directly from my code, only when I explained it kept it short just to point the direct question. My intention was clear may be got misinterpreted.

    – Shaista Naaz
    May 12 '11 at 19:21






  • 1





    @Jonathan - There are different issues related to work, nobody wants to reveal their work code to general public unless they are completely done. Just my opinion.

    – yogsma
    May 12 '11 at 19:22






  • 7





    @Jonathan: I'd guess the first table is called something like 'PATIENTS' and the second something like 'NOTES' or 'PATIENT_NOTES'. What exactly is your point? Regardless of what the actual table names are in Shaista's DB, knowing their names has no relevance to the question about using TRIGGER in an Android SQLite DB.

    – Squonk
    May 12 '11 at 19:26











  • @yogsma: I understand not naming work-related tables - but at least if there are names in the question (which need not be the same as in the work scenario), then the answers can talk consistently, rather than forcing everyone to come up with their own names for the tables, making it difficult to correlate different parts of different answers. @Shaista: you named them indirectly; DATABASE_PATIENT_TABLE and DATABASE_NOTES_TABLE are (presumably) variables holding the names of the tables. It is best to name them where the bullet points are: One table is Patients ...; the other is Notes.

    – Jonathan Leffler
    May 12 '11 at 19:27



















  • Why is it that people asking questions about database issues are so reluctant to name their tables in the question? This isn't aimed at you only, Shaista (though you are 'guilty' of it in this question); it is a general observation about database-related questions on SO.

    – Jonathan Leffler
    May 12 '11 at 19:16






  • 1





    But I have named it as you can see in the code itself. It is directly from my code, only when I explained it kept it short just to point the direct question. My intention was clear may be got misinterpreted.

    – Shaista Naaz
    May 12 '11 at 19:21






  • 1





    @Jonathan - There are different issues related to work, nobody wants to reveal their work code to general public unless they are completely done. Just my opinion.

    – yogsma
    May 12 '11 at 19:22






  • 7





    @Jonathan: I'd guess the first table is called something like 'PATIENTS' and the second something like 'NOTES' or 'PATIENT_NOTES'. What exactly is your point? Regardless of what the actual table names are in Shaista's DB, knowing their names has no relevance to the question about using TRIGGER in an Android SQLite DB.

    – Squonk
    May 12 '11 at 19:26











  • @yogsma: I understand not naming work-related tables - but at least if there are names in the question (which need not be the same as in the work scenario), then the answers can talk consistently, rather than forcing everyone to come up with their own names for the tables, making it difficult to correlate different parts of different answers. @Shaista: you named them indirectly; DATABASE_PATIENT_TABLE and DATABASE_NOTES_TABLE are (presumably) variables holding the names of the tables. It is best to name them where the bullet points are: One table is Patients ...; the other is Notes.

    – Jonathan Leffler
    May 12 '11 at 19:27

















Why is it that people asking questions about database issues are so reluctant to name their tables in the question? This isn't aimed at you only, Shaista (though you are 'guilty' of it in this question); it is a general observation about database-related questions on SO.

– Jonathan Leffler
May 12 '11 at 19:16





Why is it that people asking questions about database issues are so reluctant to name their tables in the question? This isn't aimed at you only, Shaista (though you are 'guilty' of it in this question); it is a general observation about database-related questions on SO.

– Jonathan Leffler
May 12 '11 at 19:16




1




1





But I have named it as you can see in the code itself. It is directly from my code, only when I explained it kept it short just to point the direct question. My intention was clear may be got misinterpreted.

– Shaista Naaz
May 12 '11 at 19:21





But I have named it as you can see in the code itself. It is directly from my code, only when I explained it kept it short just to point the direct question. My intention was clear may be got misinterpreted.

– Shaista Naaz
May 12 '11 at 19:21




1




1





@Jonathan - There are different issues related to work, nobody wants to reveal their work code to general public unless they are completely done. Just my opinion.

– yogsma
May 12 '11 at 19:22





@Jonathan - There are different issues related to work, nobody wants to reveal their work code to general public unless they are completely done. Just my opinion.

– yogsma
May 12 '11 at 19:22




7




7





@Jonathan: I'd guess the first table is called something like 'PATIENTS' and the second something like 'NOTES' or 'PATIENT_NOTES'. What exactly is your point? Regardless of what the actual table names are in Shaista's DB, knowing their names has no relevance to the question about using TRIGGER in an Android SQLite DB.

– Squonk
May 12 '11 at 19:26





@Jonathan: I'd guess the first table is called something like 'PATIENTS' and the second something like 'NOTES' or 'PATIENT_NOTES'. What exactly is your point? Regardless of what the actual table names are in Shaista's DB, knowing their names has no relevance to the question about using TRIGGER in an Android SQLite DB.

– Squonk
May 12 '11 at 19:26













@yogsma: I understand not naming work-related tables - but at least if there are names in the question (which need not be the same as in the work scenario), then the answers can talk consistently, rather than forcing everyone to come up with their own names for the tables, making it difficult to correlate different parts of different answers. @Shaista: you named them indirectly; DATABASE_PATIENT_TABLE and DATABASE_NOTES_TABLE are (presumably) variables holding the names of the tables. It is best to name them where the bullet points are: One table is Patients ...; the other is Notes.

– Jonathan Leffler
May 12 '11 at 19:27





@yogsma: I understand not naming work-related tables - but at least if there are names in the question (which need not be the same as in the work scenario), then the answers can talk consistently, rather than forcing everyone to come up with their own names for the tables, making it difficult to correlate different parts of different answers. @Shaista: you named them indirectly; DATABASE_PATIENT_TABLE and DATABASE_NOTES_TABLE are (presumably) variables holding the names of the tables. It is best to name them where the bullet points are: One table is Patients ...; the other is Notes.

– Jonathan Leffler
May 12 '11 at 19:27












3 Answers
3






active

oldest

votes


















6














Simple start for you



create trigger simple_trigger1 after insert on database_patient_table begin update database_notes_table; end 
create trigger simple_trigger2 after delete on database_patient_table begin update database_notes_table; end


Use this documentation http://www.sqlite.org/lang_createtrigger.html






share|improve this answer



















  • 1





    Thanks for your answer. But some quick questions My insert function for patient database has name insertInPatientDb so should I write the exact name fr insert function or just insert as you said is enough ? and I have not modified anything in the update function so Should I change the update function also?

    – Shaista Naaz
    May 12 '11 at 19:26











  • Yes, you need to use database table name. Change the update function the way you want update should happen in second table. I just gave an example, read that documentation , very helpful.

    – yogsma
    May 12 '11 at 19:31













  • I am sorry but I feel like back to the square.

    – Shaista Naaz
    May 12 '11 at 19:38











  • Give details about what update should happen in your notes table.

    – yogsma
    May 12 '11 at 19:46











  • OKAY, from DATABASE_PATIENT_TABLE room_number can be modified. Means this is one separate activity where the rooms will either get added or deleted. and There is another activity called notes screen where I am adding some information depending on the rooms already present in the database. But as the rooms are modified in the first activity (either deleted some rooms or added some rooms) so my second activity database should also be updated. second activity has DATABASE_NOTES_TABLE table. I hope I am clear this time.

    – Shaista Naaz
    May 12 '11 at 19:52





















3














Depending on which version of SQLite your app is running on, you might be able to use SQLite's foreign key support.



In older version's of SQLite you might be able to use the genfkey utility to create triggers to enforce your foreign key constraints (older versions of SQLite would parse foreign key constraints added during a CREATE TABLE statement, but wouldn't actually implement them).



Hope this helps.






share|improve this answer

































    0















    Demo for Sqlite Trigger in Android HERE




    Trigger are some procedural code executed after certain event occur in our database.



    I have wrote a sample demo for trigger.



    Example: Consider a database of any University. So if any Student record is added in student table , new row(tuple) is added automatically in library section or canteen section etc.



    So by writing a simple trigger we can automatically insert new records in other sections avoiding boiler plate code.



    Schema



     CREATE TABLE student (sid INTEGER PRIMARY KEY, sname TEXT)  
    CREATE TABLE canteen (cid , sid )
    CREATE TABLE library (lid INTEGER PRIMARY KEY, sid TEXT)


    Trigger to automatically add records in library and canteen table:



    CREATE TRIGGER if not exists add_student   
    AFTER INSERT
    ON[student]
    for each row
    BEGIN
    insert into library values (2 , new.sid );
    insert into canteen values (3 , new.sid);
    END;


    Explanation:The concept here is to create a trigger ,which insert the values in canteen and library based on new student id.






    share|improve this answer

























      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














      draft saved

      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f5983137%2fhow-to-use-trigger-in-android-sqlite%23new-answer', 'question_page');
      }
      );

      Post as a guest















      Required, but never shown

























      3 Answers
      3






      active

      oldest

      votes








      3 Answers
      3






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      6














      Simple start for you



      create trigger simple_trigger1 after insert on database_patient_table begin update database_notes_table; end 
      create trigger simple_trigger2 after delete on database_patient_table begin update database_notes_table; end


      Use this documentation http://www.sqlite.org/lang_createtrigger.html






      share|improve this answer



















      • 1





        Thanks for your answer. But some quick questions My insert function for patient database has name insertInPatientDb so should I write the exact name fr insert function or just insert as you said is enough ? and I have not modified anything in the update function so Should I change the update function also?

        – Shaista Naaz
        May 12 '11 at 19:26











      • Yes, you need to use database table name. Change the update function the way you want update should happen in second table. I just gave an example, read that documentation , very helpful.

        – yogsma
        May 12 '11 at 19:31













      • I am sorry but I feel like back to the square.

        – Shaista Naaz
        May 12 '11 at 19:38











      • Give details about what update should happen in your notes table.

        – yogsma
        May 12 '11 at 19:46











      • OKAY, from DATABASE_PATIENT_TABLE room_number can be modified. Means this is one separate activity where the rooms will either get added or deleted. and There is another activity called notes screen where I am adding some information depending on the rooms already present in the database. But as the rooms are modified in the first activity (either deleted some rooms or added some rooms) so my second activity database should also be updated. second activity has DATABASE_NOTES_TABLE table. I hope I am clear this time.

        – Shaista Naaz
        May 12 '11 at 19:52


















      6














      Simple start for you



      create trigger simple_trigger1 after insert on database_patient_table begin update database_notes_table; end 
      create trigger simple_trigger2 after delete on database_patient_table begin update database_notes_table; end


      Use this documentation http://www.sqlite.org/lang_createtrigger.html






      share|improve this answer



















      • 1





        Thanks for your answer. But some quick questions My insert function for patient database has name insertInPatientDb so should I write the exact name fr insert function or just insert as you said is enough ? and I have not modified anything in the update function so Should I change the update function also?

        – Shaista Naaz
        May 12 '11 at 19:26











      • Yes, you need to use database table name. Change the update function the way you want update should happen in second table. I just gave an example, read that documentation , very helpful.

        – yogsma
        May 12 '11 at 19:31













      • I am sorry but I feel like back to the square.

        – Shaista Naaz
        May 12 '11 at 19:38











      • Give details about what update should happen in your notes table.

        – yogsma
        May 12 '11 at 19:46











      • OKAY, from DATABASE_PATIENT_TABLE room_number can be modified. Means this is one separate activity where the rooms will either get added or deleted. and There is another activity called notes screen where I am adding some information depending on the rooms already present in the database. But as the rooms are modified in the first activity (either deleted some rooms or added some rooms) so my second activity database should also be updated. second activity has DATABASE_NOTES_TABLE table. I hope I am clear this time.

        – Shaista Naaz
        May 12 '11 at 19:52
















      6












      6








      6







      Simple start for you



      create trigger simple_trigger1 after insert on database_patient_table begin update database_notes_table; end 
      create trigger simple_trigger2 after delete on database_patient_table begin update database_notes_table; end


      Use this documentation http://www.sqlite.org/lang_createtrigger.html






      share|improve this answer













      Simple start for you



      create trigger simple_trigger1 after insert on database_patient_table begin update database_notes_table; end 
      create trigger simple_trigger2 after delete on database_patient_table begin update database_notes_table; end


      Use this documentation http://www.sqlite.org/lang_createtrigger.html







      share|improve this answer












      share|improve this answer



      share|improve this answer










      answered May 12 '11 at 19:20









      yogsmayogsma

      4,5552071125




      4,5552071125








      • 1





        Thanks for your answer. But some quick questions My insert function for patient database has name insertInPatientDb so should I write the exact name fr insert function or just insert as you said is enough ? and I have not modified anything in the update function so Should I change the update function also?

        – Shaista Naaz
        May 12 '11 at 19:26











      • Yes, you need to use database table name. Change the update function the way you want update should happen in second table. I just gave an example, read that documentation , very helpful.

        – yogsma
        May 12 '11 at 19:31













      • I am sorry but I feel like back to the square.

        – Shaista Naaz
        May 12 '11 at 19:38











      • Give details about what update should happen in your notes table.

        – yogsma
        May 12 '11 at 19:46











      • OKAY, from DATABASE_PATIENT_TABLE room_number can be modified. Means this is one separate activity where the rooms will either get added or deleted. and There is another activity called notes screen where I am adding some information depending on the rooms already present in the database. But as the rooms are modified in the first activity (either deleted some rooms or added some rooms) so my second activity database should also be updated. second activity has DATABASE_NOTES_TABLE table. I hope I am clear this time.

        – Shaista Naaz
        May 12 '11 at 19:52
















      • 1





        Thanks for your answer. But some quick questions My insert function for patient database has name insertInPatientDb so should I write the exact name fr insert function or just insert as you said is enough ? and I have not modified anything in the update function so Should I change the update function also?

        – Shaista Naaz
        May 12 '11 at 19:26











      • Yes, you need to use database table name. Change the update function the way you want update should happen in second table. I just gave an example, read that documentation , very helpful.

        – yogsma
        May 12 '11 at 19:31













      • I am sorry but I feel like back to the square.

        – Shaista Naaz
        May 12 '11 at 19:38











      • Give details about what update should happen in your notes table.

        – yogsma
        May 12 '11 at 19:46











      • OKAY, from DATABASE_PATIENT_TABLE room_number can be modified. Means this is one separate activity where the rooms will either get added or deleted. and There is another activity called notes screen where I am adding some information depending on the rooms already present in the database. But as the rooms are modified in the first activity (either deleted some rooms or added some rooms) so my second activity database should also be updated. second activity has DATABASE_NOTES_TABLE table. I hope I am clear this time.

        – Shaista Naaz
        May 12 '11 at 19:52










      1




      1





      Thanks for your answer. But some quick questions My insert function for patient database has name insertInPatientDb so should I write the exact name fr insert function or just insert as you said is enough ? and I have not modified anything in the update function so Should I change the update function also?

      – Shaista Naaz
      May 12 '11 at 19:26





      Thanks for your answer. But some quick questions My insert function for patient database has name insertInPatientDb so should I write the exact name fr insert function or just insert as you said is enough ? and I have not modified anything in the update function so Should I change the update function also?

      – Shaista Naaz
      May 12 '11 at 19:26













      Yes, you need to use database table name. Change the update function the way you want update should happen in second table. I just gave an example, read that documentation , very helpful.

      – yogsma
      May 12 '11 at 19:31







      Yes, you need to use database table name. Change the update function the way you want update should happen in second table. I just gave an example, read that documentation , very helpful.

      – yogsma
      May 12 '11 at 19:31















      I am sorry but I feel like back to the square.

      – Shaista Naaz
      May 12 '11 at 19:38





      I am sorry but I feel like back to the square.

      – Shaista Naaz
      May 12 '11 at 19:38













      Give details about what update should happen in your notes table.

      – yogsma
      May 12 '11 at 19:46





      Give details about what update should happen in your notes table.

      – yogsma
      May 12 '11 at 19:46













      OKAY, from DATABASE_PATIENT_TABLE room_number can be modified. Means this is one separate activity where the rooms will either get added or deleted. and There is another activity called notes screen where I am adding some information depending on the rooms already present in the database. But as the rooms are modified in the first activity (either deleted some rooms or added some rooms) so my second activity database should also be updated. second activity has DATABASE_NOTES_TABLE table. I hope I am clear this time.

      – Shaista Naaz
      May 12 '11 at 19:52







      OKAY, from DATABASE_PATIENT_TABLE room_number can be modified. Means this is one separate activity where the rooms will either get added or deleted. and There is another activity called notes screen where I am adding some information depending on the rooms already present in the database. But as the rooms are modified in the first activity (either deleted some rooms or added some rooms) so my second activity database should also be updated. second activity has DATABASE_NOTES_TABLE table. I hope I am clear this time.

      – Shaista Naaz
      May 12 '11 at 19:52















      3














      Depending on which version of SQLite your app is running on, you might be able to use SQLite's foreign key support.



      In older version's of SQLite you might be able to use the genfkey utility to create triggers to enforce your foreign key constraints (older versions of SQLite would parse foreign key constraints added during a CREATE TABLE statement, but wouldn't actually implement them).



      Hope this helps.






      share|improve this answer






























        3














        Depending on which version of SQLite your app is running on, you might be able to use SQLite's foreign key support.



        In older version's of SQLite you might be able to use the genfkey utility to create triggers to enforce your foreign key constraints (older versions of SQLite would parse foreign key constraints added during a CREATE TABLE statement, but wouldn't actually implement them).



        Hope this helps.






        share|improve this answer




























          3












          3








          3







          Depending on which version of SQLite your app is running on, you might be able to use SQLite's foreign key support.



          In older version's of SQLite you might be able to use the genfkey utility to create triggers to enforce your foreign key constraints (older versions of SQLite would parse foreign key constraints added during a CREATE TABLE statement, but wouldn't actually implement them).



          Hope this helps.






          share|improve this answer















          Depending on which version of SQLite your app is running on, you might be able to use SQLite's foreign key support.



          In older version's of SQLite you might be able to use the genfkey utility to create triggers to enforce your foreign key constraints (older versions of SQLite would parse foreign key constraints added during a CREATE TABLE statement, but wouldn't actually implement them).



          Hope this helps.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited May 23 '17 at 11:45









          Community

          11




          11










          answered May 19 '11 at 10:10









          Ian OxleyIan Oxley

          8,25143147




          8,25143147























              0















              Demo for Sqlite Trigger in Android HERE




              Trigger are some procedural code executed after certain event occur in our database.



              I have wrote a sample demo for trigger.



              Example: Consider a database of any University. So if any Student record is added in student table , new row(tuple) is added automatically in library section or canteen section etc.



              So by writing a simple trigger we can automatically insert new records in other sections avoiding boiler plate code.



              Schema



               CREATE TABLE student (sid INTEGER PRIMARY KEY, sname TEXT)  
              CREATE TABLE canteen (cid , sid )
              CREATE TABLE library (lid INTEGER PRIMARY KEY, sid TEXT)


              Trigger to automatically add records in library and canteen table:



              CREATE TRIGGER if not exists add_student   
              AFTER INSERT
              ON[student]
              for each row
              BEGIN
              insert into library values (2 , new.sid );
              insert into canteen values (3 , new.sid);
              END;


              Explanation:The concept here is to create a trigger ,which insert the values in canteen and library based on new student id.






              share|improve this answer






























                0















                Demo for Sqlite Trigger in Android HERE




                Trigger are some procedural code executed after certain event occur in our database.



                I have wrote a sample demo for trigger.



                Example: Consider a database of any University. So if any Student record is added in student table , new row(tuple) is added automatically in library section or canteen section etc.



                So by writing a simple trigger we can automatically insert new records in other sections avoiding boiler plate code.



                Schema



                 CREATE TABLE student (sid INTEGER PRIMARY KEY, sname TEXT)  
                CREATE TABLE canteen (cid , sid )
                CREATE TABLE library (lid INTEGER PRIMARY KEY, sid TEXT)


                Trigger to automatically add records in library and canteen table:



                CREATE TRIGGER if not exists add_student   
                AFTER INSERT
                ON[student]
                for each row
                BEGIN
                insert into library values (2 , new.sid );
                insert into canteen values (3 , new.sid);
                END;


                Explanation:The concept here is to create a trigger ,which insert the values in canteen and library based on new student id.






                share|improve this answer




























                  0












                  0








                  0








                  Demo for Sqlite Trigger in Android HERE




                  Trigger are some procedural code executed after certain event occur in our database.



                  I have wrote a sample demo for trigger.



                  Example: Consider a database of any University. So if any Student record is added in student table , new row(tuple) is added automatically in library section or canteen section etc.



                  So by writing a simple trigger we can automatically insert new records in other sections avoiding boiler plate code.



                  Schema



                   CREATE TABLE student (sid INTEGER PRIMARY KEY, sname TEXT)  
                  CREATE TABLE canteen (cid , sid )
                  CREATE TABLE library (lid INTEGER PRIMARY KEY, sid TEXT)


                  Trigger to automatically add records in library and canteen table:



                  CREATE TRIGGER if not exists add_student   
                  AFTER INSERT
                  ON[student]
                  for each row
                  BEGIN
                  insert into library values (2 , new.sid );
                  insert into canteen values (3 , new.sid);
                  END;


                  Explanation:The concept here is to create a trigger ,which insert the values in canteen and library based on new student id.






                  share|improve this answer
















                  Demo for Sqlite Trigger in Android HERE




                  Trigger are some procedural code executed after certain event occur in our database.



                  I have wrote a sample demo for trigger.



                  Example: Consider a database of any University. So if any Student record is added in student table , new row(tuple) is added automatically in library section or canteen section etc.



                  So by writing a simple trigger we can automatically insert new records in other sections avoiding boiler plate code.



                  Schema



                   CREATE TABLE student (sid INTEGER PRIMARY KEY, sname TEXT)  
                  CREATE TABLE canteen (cid , sid )
                  CREATE TABLE library (lid INTEGER PRIMARY KEY, sid TEXT)


                  Trigger to automatically add records in library and canteen table:



                  CREATE TRIGGER if not exists add_student   
                  AFTER INSERT
                  ON[student]
                  for each row
                  BEGIN
                  insert into library values (2 , new.sid );
                  insert into canteen values (3 , new.sid);
                  END;


                  Explanation:The concept here is to create a trigger ,which insert the values in canteen and library based on new student id.







                  share|improve this answer














                  share|improve this answer



                  share|improve this answer








                  edited Nov 26 '16 at 7:15

























                  answered Feb 24 '15 at 6:27









                  niteshnitesh

                  3,55921939




                  3,55921939






























                      draft saved

                      draft discarded




















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid



                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.


                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f5983137%2fhow-to-use-trigger-in-android-sqlite%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      鏡平學校

                      ꓛꓣだゔៀៅຸ໢ທຮ໕໒ ,ໂ'໥໓າ໼ឨឲ៵៭ៈゎゔit''䖳𥁄卿' ☨₤₨こゎもょの;ꜹꟚꞖꞵꟅꞛေၦေɯ,ɨɡ𛃵𛁹ޝ޳ޠ޾,ޤޒޯ޾𫝒𫠁သ𛅤チョ'サノބޘދ𛁐ᶿᶇᶀᶋᶠ㨑㽹⻮ꧬ꧹؍۩وَؠ㇕㇃㇪ ㇦㇋㇋ṜẰᵡᴠ 軌ᵕ搜۳ٰޗޮ޷ސޯ𫖾𫅀ल, ꙭ꙰ꚅꙁꚊꞻꝔ꟠Ꝭㄤﺟޱސꧨꧼ꧴ꧯꧽ꧲ꧯ'⽹⽭⾁⿞⼳⽋២៩ញណើꩯꩤ꩸ꩮᶻᶺᶧᶂ𫳲𫪭𬸄𫵰𬖩𬫣𬊉ၲ𛅬㕦䬺𫝌𫝼,,𫟖𫞽ហៅ஫㆔ాఆఅꙒꚞꙍ,Ꙟ꙱エ ,ポテ,フࢰࢯ𫟠𫞶 𫝤𫟠ﺕﹱﻜﻣ𪵕𪭸𪻆𪾩𫔷ġ,ŧآꞪ꟥,ꞔꝻ♚☹⛵𛀌ꬷꭞȄƁƪƬșƦǙǗdžƝǯǧⱦⱰꓕꓢႋ神 ဴ၀க௭எ௫ឫោ ' េㇷㇴㇼ神ㇸㇲㇽㇴㇼㇻㇸ'ㇸㇿㇸㇹㇰㆣꓚꓤ₡₧ ㄨㄟ㄂ㄖㄎ໗ツڒذ₶।ऩछएोञयूटक़कयँृी,冬'𛅢𛅥ㇱㇵㇶ𥄥𦒽𠣧𠊓𧢖𥞘𩔋цѰㄠſtʯʭɿʆʗʍʩɷɛ,əʏダヵㄐㄘR{gỚṖḺờṠṫảḙḭᴮᵏᴘᵀᵷᵕᴜᴏᵾq﮲ﲿﴽﭙ軌ﰬﶚﶧ﫲Ҝжюїкӈㇴffצּ﬘﭅﬈軌'ffistfflſtffतभफɳɰʊɲʎ𛁱𛁖𛁮𛀉 𛂯𛀞నఋŀŲ 𫟲𫠖𫞺ຆຆ ໹້໕໗ๆทԊꧢꧠ꧰ꓱ⿝⼑ŎḬẃẖỐẅ ,ờỰỈỗﮊDžȩꭏꭎꬻ꭮ꬿꭖꭥꭅ㇭神 ⾈ꓵꓑ⺄㄄ㄪㄙㄅㄇstA۵䞽ॶ𫞑𫝄㇉㇇゜軌𩜛𩳠Jﻺ‚Üမ႕ႌႊၐၸဓၞၞၡ៸wyvtᶎᶪᶹစဎ꣡꣰꣢꣤ٗ؋لㇳㇾㇻㇱ㆐㆔,,㆟Ⱶヤマފ޼ޝަݿݞݠݷݐ',ݘ,ݪݙݵ𬝉𬜁𫝨𫞘くせぉて¼óû×ó£…𛅑הㄙくԗԀ5606神45,神796'𪤻𫞧ꓐ㄁ㄘɥɺꓵꓲ3''7034׉ⱦⱠˆ“𫝋ȍ,ꩲ軌꩷ꩶꩧꩫఞ۔فڱێظペサ神ナᴦᵑ47 9238їﻂ䐊䔉㠸﬎ffiﬣ,לּᴷᴦᵛᵽ,ᴨᵤ ᵸᵥᴗᵈꚏꚉꚟ⻆rtǟƴ𬎎

                      Why https connections are so slow when debugging (stepping over) in Java?