This commit is contained in:
Gerald Simane
2009-06-08 06:37:57 +00:00
parent 158402455f
commit 725e178014
660 changed files with 170054 additions and 169940 deletions
+2
View File
@@ -34,12 +34,14 @@ class adresse
function adresse($conn,$adress_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($adress_id != null)
$this->load($adress_id);
}
@@ -26,12 +26,14 @@ class ausbildungssemester
function ausbildungssemester($conn, $ausbildungssemester_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($ausbildungssemester_id != null)
$this->load($ausbildungssemester_id);
}
+2
View File
@@ -31,12 +31,14 @@ class bankverbindung
function bankverbindung($conn, $bank_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($bank_id != null)
$this->load($bank_id);
}
+2
View File
@@ -29,12 +29,14 @@ class email
function email($conn, $mail_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($mail_id != null)
$this->load($mail_id);
}
+2
View File
@@ -26,12 +26,14 @@ class fachbereich
function fachbereich($conn, $fachb_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($fachb_id != null)
$this->load($fachb_id);
}
+2
View File
@@ -44,12 +44,14 @@ class funktion
function funktion($conn, $fkt_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($fkt_id != null)
$this->load($fkt_id);
}
+2
View File
@@ -30,12 +30,14 @@ class gruppe
function gruppe($conn, $gruppe_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($gruppe_id != null)
$this->load($gruppe_id);
}
+2
View File
@@ -65,12 +65,14 @@ class lehreinheit
function lehreinheit($conn, $lehreinheit_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($lehreinheit_id != null)
$this->load($lehreinheit_id);
}
+2
View File
@@ -24,12 +24,14 @@ class lehrfunktion
function lehrfunktion($conn, $lehrfkt_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($lehrfkt_id != null)
$this->load($lehrfkt_id);
}
+2
View File
@@ -37,12 +37,14 @@ class lehrveranstaltung
function lehrveranstaltung($conn, $lehrveranstaltung_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($lehrveranstaltung_id != null)
$this->load($lehrveranstaltung_id);
}
+2
View File
@@ -38,12 +38,14 @@ class mitarbeiter extends person
function mitarbeiter($conn, $person_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
//Mitarbeiter laden
if($person_id!=null)
$this->load($person_id);
+2
View File
@@ -47,12 +47,14 @@ class studiengang
function studiengang($conn, $studiengang_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($studiengang_id != null)
$this->load($studiengang_id);
}
+2
View File
@@ -25,12 +25,14 @@ class studiensemester
function studiensemester($conn, $stsem_id=null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($stsem_id != null)
$this->load($stsem_id);
}
+2
View File
@@ -28,12 +28,14 @@ class telefonnummer
function telefonnummer($conn, $telefonnummer_id = null)
{
$this->conn = $conn;
/*
$qry = "SET CLIENT_ENCODING TO 'UNICODE';";
if(!pg_query($conn,$qry))
{
$this->errormsg = "Encoding konnte nicht gesetzt werden";
return false;
}
*/
if($telefonnummer_id != null)
$this->load($telefonnummer_id);
}