sql.cpp 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. #include "sql.h"
  2. #include <libpq-fe.h>
  3. #include <Text.h>
  4. #include <iostream>
  5. using namespace sql;
  6. using namespace Framework;
  7. // Inhalt ves structs Result aus sql.h
  8. void Result::destroy()
  9. {
  10. delete[]felder;
  11. delete[]values;
  12. }
  13. // Inhalt der Datenbank Klasse aus sql.h
  14. // Konstruktor
  15. Datenbank::Datenbank( const char *user, const char *passwort, const char *dbname, const char *ip, unsigned short port )
  16. {
  17. Text *txt = new Text( "user=" );
  18. txt->append( user );
  19. txt->append( " password=" );
  20. txt->append( passwort );
  21. txt->append( " dbname=" );
  22. txt->append( dbname );
  23. txt->append( " hostaddr=" );
  24. txt->append( ip );
  25. txt->append( " port=" );
  26. txt->append( port );
  27. conn = PQconnectdb( txt->getText() );
  28. txt->release();
  29. res = 0;
  30. ref = 1;
  31. if( PQstatus( conn ) != CONNECTION_OK )
  32. {
  33. PQfinish( conn );
  34. conn = 0;
  35. }
  36. else
  37. PQsetClientEncoding( conn, "WIN1251" );
  38. }
  39. // Destruktor
  40. Datenbank::~Datenbank()
  41. {
  42. PQfinish( conn );
  43. }
  44. // nicht constant
  45. bool Datenbank::befehl( const char *txt )
  46. {
  47. if( res )
  48. PQclear( res );
  49. res = PQexec( conn, txt );
  50. ExecStatusType t = PQresultStatus( res );
  51. if( t == PGRES_FATAL_ERROR || t == PGRES_BAD_RESPONSE || t == PGRES_NONFATAL_ERROR )
  52. {
  53. std::cout << "Datenbank Error bei Query '" << txt << ";'\n" << PQerrorMessage( conn ) << "\n";
  54. return 0;
  55. }
  56. return 1;
  57. }
  58. // constant
  59. int Datenbank::getZeilenAnzahl() const // Anzahl der betroffenen zeilen
  60. {
  61. if( res )
  62. return TextZuInt( PQcmdTuples( res ), 10 );
  63. return 0;
  64. }
  65. Result Datenbank::getResult() const
  66. {
  67. Result ret;
  68. ret.feldAnzahl = PQnfields( res );
  69. ret.felder = new Text[ ret.feldAnzahl ];
  70. for( int i = 0; i < ret.feldAnzahl; i++ )
  71. ret.felder[ i ].setText( PQfname( res, i ) );
  72. ret.zeilenAnzahl = PQntuples( res );
  73. ret.values = new Text[ ret.feldAnzahl * ret.zeilenAnzahl ];
  74. for( int i = 0; i < ret.feldAnzahl * ret.zeilenAnzahl; i++ )
  75. ret.values[ i ].setText( PQgetvalue( res, i / ret.feldAnzahl, i % ret.feldAnzahl ) );
  76. return ret;
  77. }
  78. Text *Datenbank::getLetzterFehler() const // gibt den letzten Fehler zurück
  79. {
  80. Text *ret = new Text( PQerrorMessage( conn ) );
  81. return ret;
  82. }
  83. bool Datenbank::istOk() const // prüft, ob die Verbindung zur Datenbank besteht
  84. {
  85. return conn != 0;
  86. }
  87. // Reference Counting
  88. Datenbank *Datenbank::getThis()
  89. {
  90. ref++;
  91. return this;
  92. }
  93. Datenbank *Datenbank::release()
  94. {
  95. ref--;
  96. if( ref == 0 )
  97. delete this;
  98. return 0;
  99. }