12345678910111213141516171819202122232425262728293031 |
- #ifndef CONEXAO_HH_GUARD__
- #define CONEXAO_HH_GUARD__
- #include <iostream>
- #include <mysql++.h>
- using namespace std;
- class conexao{
- const char* HOSTNAME;
- const char* DATABASE;
- const char* USERNAME;
- const char* PASSWORD;
- const char* SOCKET;
- const int PORT = 3306;
- const int OPT = 0;
- MYSQL *CONN;
- MYSQL_RES *RES;
- MYSQL_ROW ROW;
- public:
- conexao();
- bool cadastrar(string isbn, string titulo, string autor, string editora, string preco, string ano, string edicao);
- bool imprimir();
- bool remover(string isbn);
- void pesquisar(string x, string y);
- bool modificar(string x, string y, string z);
- bool verificar(string x, string y);
- };
- #endif
|