<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:blogger='http://schemas.google.com/blogger/2008' xmlns:georss='http://www.georss.org/georss' xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1965745792096618679</id><updated>2024-10-06T21:05:48.001-07:00</updated><category term="All India"/><category term="Gov job"/><category term="IBPS"/><category term="Bank Job"/><category term="Bio-Medical"/><category term="Engineering Job"/><category term="Faculty Job"/><category term="Job in Gujarat"/><category term="Medical"/><category term="Security officer"/><category term="Technical Assistance"/><category term="Technical Faculty"/><title type='text'>All Government Job, Vacancies, Call Latter, Result And Exam Material</title><subtitle type='html'></subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://jobalertforall.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1965745792096618679/posts/default'/><link rel='alternate' type='text/html' href='http://jobalertforall.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>Jaysukh Patel</name><uri>http://www.blogger.com/profile/08280800528156366071</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>4</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1965745792096618679.post-6386957857110604039</id><published>2014-01-06T09:03:00.000-08:00</published><updated>2014-01-07T21:05:55.425-08:00</updated><title type='text'></title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;br /&gt;
&lt;pre class=&quot;brush: js&quot;&gt;Contact.java
package com.androidhive.androidsqlite; 

public class Contact {

//private variables
int _id;
String _name;
String _phone_number;

// Empty constructor
public Contact(){

}
// constructor
public Contact(int id, String name, String _phone_number){
this._id = id;
this._name = name;
this._phone_number = _phone_number;
}

// constructor
public Contact(String name, String _phone_number){
this._name = name;
this._phone_number = _phone_number;
}
// getting ID
public int getID(){
return this._id;
}

// setting id
public void setID(int id){
this._id = id;
}

// getting name
public String getName(){
return this._name;
}

// setting name
public void setName(String name){
this._name = name;
}

// getting phone number
public String getPhoneNumber(){
return this._phone_number;
}

// setting phone number
public void setPhoneNumber(String phone_number){
this._phone_number = phone_number;
}
}
&lt;/pre&gt;&lt;br /&gt;
&lt;pre class=&quot;brush: js&quot;&gt;package com.example.createcsvsamplefromdb;


import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class MainActivity extends Activity {

// EditText Textbox1, Textbox2, Textbox3;
// Button Button1;
// 
 
  
 DatabaseHandler dbHandler = new DatabaseHandler(MainActivity.this);

 @Override
 protected void onCreate(Bundle savedInstanceState) {
  super.onCreate(savedInstanceState);
  setContentView(R.layout.activity_main);
  
  
  Button button1  = (Button)findViewById(R.id.Button1);
   
  button1.setText(&quot;Click Heer&quot;);
  
  button1.setOnClickListener(new OnClickListener() {
   
   @Override
   public void onClick(View arg0) {
    
    EditText txt1 = (EditText)findViewById(R.id.Textbox1);
     EditText txt2 = (EditText)findViewById(R.id.Textbox2);
     EditText txt3 = (EditText)findViewById(R.id.Textbox3);
    
    dbHandler.EMP_DETAILS(new employees(txt1.getText().toString(), txt2.getText().toString(), txt3.getText().toString()));
    
    Toast.makeText(getApplicationContext(), &quot;Record Saved&quot;, Toast.LENGTH_LONG).show();
    
    //Set_All_Controll();
    
    Intent moveactivity3 = new Intent(MainActivity.this,activity2.class);
    startActivity(moveactivity3);
   }
  });
  
 }
 
 
 public void Set_All_Controll()
 {
  EditText txt1 = (EditText)findViewById(R.id.Textbox1);
   EditText txt2 = (EditText)findViewById(R.id.Textbox2);
   EditText txt3 = (EditText)findViewById(R.id.Textbox3);
  
  txt1.getText().clear();
  txt2.getText().clear();
  txt3.getText().clear();
  
 }
 
 
 @Override
 public boolean onCreateOptionsMenu(Menu menu) {
  // Inflate the menu; this adds items to the action bar if it is present.
  getMenuInflater().inflate(R.menu.main, menu);
  return true;
 }


// protected void onPreExecute() {
//  // TODO Auto-generated method stub
//  
// }

}

&lt;/pre&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://jobalertforall.blogspot.com/feeds/6386957857110604039/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jobalertforall.blogspot.com/2014/01/contact.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1965745792096618679/posts/default/6386957857110604039'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1965745792096618679/posts/default/6386957857110604039'/><link rel='alternate' type='text/html' href='http://jobalertforall.blogspot.com/2014/01/contact.html' title=''/><author><name>Jaysukh Patel</name><uri>http://www.blogger.com/profile/08280800528156366071</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1965745792096618679.post-3270348192226494766</id><published>2013-12-17T23:05:00.000-08:00</published><updated>2013-12-17T23:05:11.092-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="All India"/><category scheme="http://www.blogger.com/atom/ns#" term="Bank Job"/><category scheme="http://www.blogger.com/atom/ns#" term="Gov job"/><category scheme="http://www.blogger.com/atom/ns#" term="IBPS"/><category scheme="http://www.blogger.com/atom/ns#" term="Security officer"/><title type='text'>IBPS Vacancies – Job In CCTV Operator As Security Officer Staff – Bank Job In 2013</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
IBPS(&lt;b&gt;Institute of Banking Personal Selection&lt;/b&gt;) declared vacancies in CCTV operator as Security officer on different job position. So interested candidates can apply any of threes phase of CCTV security post. Candidates must be follow the all the procedure in pre describes notice for this post. For more about this post more information in below.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Total number of vacancies: &lt;b&gt;03 post&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Name of Post and Vacancies in each post,&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
1. &lt;b&gt;Security officer in charge – 01 post&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
2. &lt;b&gt;CCTC observer(Security Operator) – 01 post&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
3. &lt;b&gt;CCTV observer – 01 post&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Age restrictions: max &lt;b&gt;55 years on 1 – 1 – 2014&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;Qualification: &lt;/b&gt;Graduation required for in charge post 1, Minimum SSC pass candidates can apply for 2 and 3 posts.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;How to apply procedure&lt;/b&gt; : Candidate must submit all the document with necessary details like Name of post, Experience latter(If you have) , Current salary and expected salary, necessary document of your graduation with Xerox copied(Don’t send original copied) &lt;b&gt;before 31 December 2013&lt;/b&gt; on below address via speed post:&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
To The General Manager&lt;br /&gt;Institute of Banking Personal Selection&lt;br /&gt;IBPS house, Plot no,166&lt;br /&gt; 90 ft Dp road, Off Western Express Highway,&lt;br /&gt;Kandivali(East),&lt;br /&gt;Mumbai 400101.&lt;/blockquote&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Application Details are mentioned here: &lt;a href=&quot;https://docs.google.com/viewer?a=v&amp;amp;pid=sites&amp;amp;srcid=ZGVmYXVsdGRvbWFpbnxtYXJ1Z3VqYXJhdHN0b3JhZ2UxMHxneDoyNTExYjk3Nzc2YWY5ZjM3&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Stay connected with jobalrtforall.blogspot.com through the mail subscription.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://jobalertforall.blogspot.com/feeds/3270348192226494766/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jobalertforall.blogspot.com/2013/12/ibps-vacancies-job-in-cctv-operator-as.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1965745792096618679/posts/default/3270348192226494766'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1965745792096618679/posts/default/3270348192226494766'/><link rel='alternate' type='text/html' href='http://jobalertforall.blogspot.com/2013/12/ibps-vacancies-job-in-cctv-operator-as.html' title='IBPS Vacancies – Job In CCTV Operator As Security Officer Staff – Bank Job In 2013'/><author><name>Jaysukh Patel</name><uri>http://www.blogger.com/profile/08280800528156366071</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1965745792096618679.post-4692514284181995054</id><published>2013-12-17T21:44:00.003-08:00</published><updated>2013-12-17T21:44:16.232-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="Bio-Medical"/><category scheme="http://www.blogger.com/atom/ns#" term="Engineering Job"/><category scheme="http://www.blogger.com/atom/ns#" term="Gov job"/><category scheme="http://www.blogger.com/atom/ns#" term="Job in Gujarat"/><category scheme="http://www.blogger.com/atom/ns#" term="Medical"/><title type='text'>Biomedical Engineering Vacancies For Medical Eng Student Government Job Vacancies – December 2013</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Gujarat Medical Service Corporation is inviting &lt;b&gt;Bio medical Engineering&lt;/b&gt; student for the post of Bio medical engineering post. Other details about this post “ &lt;b&gt;Bio medical Engineer Government job in Gujarat&lt;/b&gt;“ like Birth certificate, Graduate certificate, Last experience about this post(Experience latter),  &lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Last Date for apply as Bio medical engineer: &lt;b&gt;31 December 2013&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Post name: Bio medical Engineer&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Number of Vacancies: &lt;b&gt;6 post&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;You can check Bio-Medical Engineer Advertisement From &lt;a href=&quot;https://sites.google.com/site/marugujaratstorage10/BP91941-large.jpg?attredirects=1&quot; target=&quot;_blank&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;Click Here&lt;/span&gt;&lt;/a&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;b&gt;&lt;br /&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Go for to get online form related your post to fit in current opening from its official site under the career option Click &lt;a href=&quot;http://gujhealth.gov.in/&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;here&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
After filling this form you have to sent your required document in pre describe format sent on below address:&lt;/div&gt;
&lt;blockquote class=&quot;tr_bq&quot;&gt;
&lt;b&gt;Nayab Janaral Menager,&lt;/b&gt;&lt;b&gt;Gujarat Medical Service Corporation Limited&lt;/b&gt;&lt;b&gt;Block no, 14/1, Dr, Jivaraj Maheta Bhavan&lt;/b&gt;&lt;b&gt;Sector: 10, Ghandhinagar – 372010&lt;/b&gt;&lt;b&gt;Ph: 097 – 232 57694&lt;/b&gt;&lt;/blockquote&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
Related to this post please find from the below label, you can get Latest Job in your Mail box through the email subscription.&lt;/div&gt;
&lt;div style=&quot;text-align: justify;&quot;&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://jobalertforall.blogspot.com/feeds/4692514284181995054/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jobalertforall.blogspot.com/2013/12/biomedical-engineering-vacancies-for.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1965745792096618679/posts/default/4692514284181995054'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1965745792096618679/posts/default/4692514284181995054'/><link rel='alternate' type='text/html' href='http://jobalertforall.blogspot.com/2013/12/biomedical-engineering-vacancies-for.html' title='Biomedical Engineering Vacancies For Medical Eng Student Government Job Vacancies – December 2013'/><author><name>Jaysukh Patel</name><uri>http://www.blogger.com/profile/08280800528156366071</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1965745792096618679.post-6653007350076563611</id><published>2013-12-17T21:09:00.000-08:00</published><updated>2013-12-17T21:09:34.124-08:00</updated><category scheme="http://www.blogger.com/atom/ns#" term="All India"/><category scheme="http://www.blogger.com/atom/ns#" term="Faculty Job"/><category scheme="http://www.blogger.com/atom/ns#" term="IBPS"/><category scheme="http://www.blogger.com/atom/ns#" term="Technical Assistance"/><category scheme="http://www.blogger.com/atom/ns#" term="Technical Faculty"/><title type='text'>IBPS Vacancies In 2013 For The Post Of Technical Faculty | IBPS Teaching Post Vacancies</title><content type='html'>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
IBPS(Indian Public Service Commission) declare job opening in IBPS on contract basis only as a technical faculty.&lt;br /&gt;
&lt;b&gt;Total number of vacancies:&lt;/b&gt; 01&lt;br /&gt;
&lt;b&gt;Post name:&lt;/b&gt; Technical Faculty&lt;br /&gt;
&lt;b&gt;Age limit:&lt;/b&gt; must be less than 62 years old.&lt;br /&gt;
&lt;b&gt;Qualification:&lt;/b&gt; B.Tech or B.E. with attended full time course, from the recognize university, Branches are included with Computer science, MBA with specialization of marketing and HR. &lt;br /&gt;
&lt;br /&gt;
For more information regarding Procedure for apply and other status please visit &lt;a href=&quot;https://docs.google.com/viewer?a=v&amp;amp;pid=sites&amp;amp;srcid=ZGVmYXVsdGRvbWFpbnxtYXJ1Z3VqYXJhdHN0b3JhZ2UxMHxneDpjNTExNzgwMGFiMGVlNTQ&quot;&gt;here&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
For more visit IBPS official site about this job post.&lt;/div&gt;
</content><link rel='replies' type='application/atom+xml' href='http://jobalertforall.blogspot.com/feeds/6653007350076563611/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://jobalertforall.blogspot.com/2013/12/ibps-vacancies-in-2013-for-post-of.html#comment-form' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1965745792096618679/posts/default/6653007350076563611'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1965745792096618679/posts/default/6653007350076563611'/><link rel='alternate' type='text/html' href='http://jobalertforall.blogspot.com/2013/12/ibps-vacancies-in-2013-for-post-of.html' title='IBPS Vacancies In 2013 For The Post Of Technical Faculty | IBPS Teaching Post Vacancies'/><author><name>Jaysukh Patel</name><uri>http://www.blogger.com/profile/08280800528156366071</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='https://img1.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>