Skip to content

Instantly share code, notes, and snippets.

View webkoder's full-sized avatar
🎯
Focusing

Ricardo Rodrigues webkoder

🎯
Focusing
View GitHub Profile
@webkoder
webkoder / Banco.java
Created September 28, 2016 17:03
Classe para criação de um SQLite no Android
public class Banco extends SQLiteOpenHelper {
private static final String DATABASE_NAME = "mt.db";
private static final int DATABASE_VERSION = 1;
// Database creation sql statement
private static final String DATABASE_CREATE_PRODUTO = "create table produto(id integer primary key autoincrement, nome text, preco real, unidade real, quantidade int, operacao int, horario datetime);";
private static final String DATABASE_CREATE_OPERACAO = "create table operacao(id integer primary key autoincrement, local text, produto text);";