Line 17... |
Line 17... |
17 |
// | |
|
17 |
// | |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
18 |
// | You should have received a copy of the GNU Lesser General Public |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
19 |
// | License along with this library; if not, write to the Free Software |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
20 |
// | Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
21 |
// +------------------------------------------------------------------------------------------------------+
|
22 |
// CVS : $Id: SQL_manipulation.fonct.php,v 1.1 2004-06-15 10:13:26 jpm Exp $
|
22 |
// CVS : $Id: SQL_manipulation.fonct.php,v 1.2 2004-10-21 15:17:19 alex Exp $
|
23 |
/**
|
23 |
/**
|
24 |
* Bibliothèque de fonctions liées au SQL
|
24 |
* Bibliothèque de fonctions liées au SQL
|
25 |
*
|
25 |
*
|
26 |
* Contient des fonctions permettant d'automatiser certaine requête SQL.
|
26 |
* Contient des fonctions permettant d'automatiser certaine requête SQL.
|
27 |
*
|
27 |
*
|
Line 29... |
Line 29... |
29 |
//Auteur original :
|
29 |
//Auteur original :
|
30 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
30 |
*@author Jean-Pascal MILCENT <jpm@tela-botanica.org>
|
31 |
//Autres auteurs :
|
31 |
//Autres auteurs :
|
32 |
*@author Aucun
|
32 |
*@author Aucun
|
33 |
*@copyright Tela-Botanica 2000-2004
|
33 |
*@copyright Tela-Botanica 2000-2004
|
34 |
*@version $Revision: 1.1 $ $Date: 2004-06-15 10:13:26 $
|
34 |
*@version $Revision: 1.2 $ $Date: 2004-10-21 15:17:19 $
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
35 |
// +------------------------------------------------------------------------------------------------------+
|
36 |
*/
|
36 |
*/
|
Line 37... |
Line 37... |
37 |
|
37 |
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
38 |
// +------------------------------------------------------------------------------------------------------+
|
Line 46... |
Line 46... |
46 |
* @param string Nom de la table
|
46 |
* @param string Nom de la table
|
47 |
* @param string Nom du champ identifiant.
|
47 |
* @param string Nom du champ identifiant.
|
48 |
* @return mixed la nouvelle valeur de clé pouvant être utilisé ou false en cas d'erreur sql.
|
48 |
* @return mixed la nouvelle valeur de clé pouvant être utilisé ou false en cas d'erreur sql.
|
49 |
*/
|
49 |
*/
|
Line 50... |
Line 50... |
50 |
|
50 |
|
51 |
function SQL_obtenirNouveauId($db, $table, $colonne_identifiant)
|
51 |
function SQL_obtenirNouveauId(&$db, $table, $colonne_identifiant)
|
52 |
{
|
52 |
{
|
53 |
$requete = 'SELECT MAX('.$colonne_identifiant.') AS maxi FROM '.$table;
|
53 |
$requete = 'SELECT MAX('.$colonne_identifiant.') AS maxi FROM '.$table;
|
54 |
$resultat = $db->query($requete);
|
54 |
$resultat = $db->query($requete);
|
55 |
if (DB::isError($resultat) || $resultat->numRows() > 1) {
|
55 |
if (DB::isError($resultat) || $resultat->numRows() > 1) {
|
Line 62... |
Line 62... |
62 |
|
62 |
|
63 |
|
63 |
|
64 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
64 |
/* +--Fin du code ----------------------------------------------------------------------------------------+
|
- |
|
65 |
*
|
- |
|
66 |
* $Log: not supported by cvs2svn $
|
- |
|
67 |
* Revision 1.1 2004/06/15 10:13:26 jpm
|
65 |
*
|
68 |
* Intégration dans Papyrus.
|
66 |
* $Log: not supported by cvs2svn $
|
69 |
*
|
67 |
* Revision 1.1 2004/04/28 11:38:54 jpm
|
70 |
* Revision 1.1 2004/04/28 11:38:54 jpm
|
68 |
* Ajout d'un fichier de fonctions de manipulation sql.
|
71 |
* Ajout d'un fichier de fonctions de manipulation sql.
|
69 |
*
|
72 |
*
|