> Tous les forumsForum des Webmasters

 insertion dans une base de donnée
Statut du sujet : NON RESOLU Imprimer
 fox54270
  Posté le 02/10/2008 @ 15:24  
 Petit astucien

169 Messages

Bonjour Tout le monde

je viens vers vous, car je pense que vous pouvez m'aider comme vous l'avez fait au part avant:

voilà mon problème j'utilise un scripet de petites annonces qui fonctionne bien le scripte contient un formulaire d'envoie d'annonces pour l'insertion directe dans la base de donnée ça fonctionne c'est nikel.

mais moi ce que je veux faire c'est qu'en effet je reçois un flux d'annonces dans un seul fichier qui peut être un xml ou bien un sql et que j'aimerais bien intégrer dans la base de donnée d'une façon automatique sans passer par le formulaire d'annonce du scripte est-ceque c'est possible et si oui comment faire SVP si besoin je peux vous fournir la structure de la base de donnée telle que je l'exporte sur phpMyadmin

Merci d'avance

 Afficher le profil de fox54270Envoyer un message privé à fox54270
 
 
Publicité
 tirikou  Posté le 02/10/2008 à 15:48  
Astucien


1006 Messages

Bonjour,

a pas compris ....

Comment peux tu recevoir un flux d'annonces sans passer par le formulaire ?

Quels types de fichiers ?

Comment t'arrivent ces fichiers ?

Afficher le profil de tirikouEnvoyer un message privé à tirikou
 Revenir en haut de la page
 fox54270  Posté le 02/10/2008 à 16:47  
Petit astucien

169 Messages

se sont des annonces qui sont saisi par une plate forme sur un autre systeme d'annonce et que moi je par la suite je reçois par mail soit dans un fichier XML ou soit un fichier text.

Afficher le profil de fox54270Envoyer un message privé à fox54270
 Revenir en haut de la page
 tirikou  Posté le 02/10/2008 à 17:21  
Astucien


1006 Messages

Dans un fichier txt tu peux lire et écrire donc récupérer les données qu'il contient.

Donc tu peux les affecter dans ta bdd si tu le veux.

Le faire est disons ... pas forcement simple, simple ... mais par exemple :

Tu utilises la fonction file() pour transformer ton fichier en array (une entrée par ligne).
Tu nettoies ensuite chaque ligne avec trim() pour en enlever les retours chariots de fin de chaîne.
Ensuite, tu isoles la première ligne (avec array_shift(), par exemple), et avec un explode() tu en sors chaque entrée. Tu les gardes bien au chaud pour après.
Sur chacune des lignes restantes, tu fais de même : tu fais un explode pour séparer les différentes entrées, puis tu fais en sorte de passer chaque entrée à la moulinette mysql_real_escape_string(), puis de l'entourer de guillemets.
Il ne te reste plus qu'à construire une requête avec deux implode() : le premier pour l'array du début qui contient les noms de champs, le second pour l'array suivant (la ligne de contenu).

Enfin là c'est en général.

Il faut adapter en fonction de ton fichier propre qui doit pas être simple, simple ... non ?

Pour convertir un fichier xml en sql tu peux uiliser un convertisseur comme celui-ci :

http://www.csharpfr.com/codes/CONVERTISEUR-XML-VERS-SQL_28503.aspx

Tu n'as plus ensuite qu'à en extraire les données et les basculer vers ta bdd.

Il y d'autres convetisseurs sur internet.

Par exemple celui-ci semblerait convertir un txt ou un xml en csv (je ne l'ai pas testé) :

http://www.processtext.com/abcxml.html

Il est très facile ensuite d'importer un csv en sql via le panneau de commandes de phpmyadmin

Bon courage ...

Afficher le profil de tirikouEnvoyer un message privé à tirikou
 Revenir en haut de la page
 tirikou  Posté le 02/10/2008 à 17:57  
Astucien


1006 Messages

Bon allez ...

Le plus simple pour transformer un fichier xml en sql est d'abord de l'ouvrir avec excel 2003. Attention il peut y avoir à retoucher légèrement le fichier.

Ouvrir "en tant que liste XML" et faire OK sur la fenetre disant qu'Excel va créer lui même le schéma.

Une fois ouvert il ne reste plus qu'à l'enregistrer en csv puis de l'importer en sql via le panneau phpmyadmin.

Cela te donne une base de donnée dont tu peux transférer le contenu dans ta bdd.

Seul inconvénient c'est qu'il faut faire la manip à chaque fichier.

Courage ...



Modifié par tirikou le 02/10/2008 17:59
Afficher le profil de tirikouEnvoyer un message privé à tirikou
 Revenir en haut de la page
 fox54270  Posté le 02/10/2008 à 20:00  
Petit astucien

169 Messages
merci pour ta réponse, jusqu'à la c'est ok pour moi mais après comment je vais faire que chaque champ soit rentrer dans la bonne place dans la table que j'ai dans la base de donnée
Afficher le profil de fox54270Envoyer un message privé à fox54270
 Revenir en haut de la page
 tirikou  Posté le 02/10/2008 à 20:05  
Astucien


1006 Messages

En voyant ton fichier csv tu vois l'organisation des champs. Tu fais une requete qui les selectionne (dans ta base sql en attente). Tu les insères ensuite dans ta base générale.

Euh ... c'est clair ?

Afficher le profil de tirikouEnvoyer un message privé à tirikou
 Revenir en haut de la page
 tirikou  Posté le 02/10/2008 à 20:09  
Astucien


1006 Messages

Si en plus, par Miracle ou organisation tu as la même structure de table que la structure de ta table en attentetu peux directement insérer les nouveaux enregistrements directement par le panneau phpmyadmin.

Pas belle la vie ?

Car je suppose que tu veux utiliser la méthode de transformation en fichier excel puis csv ?

Pas de regex, de java ou d'ASP ?

Sinon je reprends tout à zero ...

Afficher le profil de tirikouEnvoyer un message privé à tirikou
 Revenir en haut de la page
 fox54270  Posté le 02/10/2008 à 20:47  
Petit astucien

169 Messages
ok alors voila ma base de donnée se compose de 10 tables jobannonces4 (10) * annoncecategory * annoncecronjob * annoncecustomfield * annonceglobalstat * annonceitem * annoncenotification * annoncesearch * annoncesettings * annoncesubscription * annonceuser et voila le fichier extrait de cette base de donnée : [quot] -- phpMyAdmin SQL Dump -- version 2.11.5.2 -- http://www.phpmyadmin.net -- - SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; -- -- Base de données: `jobannonces4` -- -- -------------------------------------------------------- -- -- Structure de la table `annoncecategory` -- CREATE TABLE IF NOT EXISTS `annoncecategory` ( `id` int(11) NOT NULL auto_increment, `up` int(11) NOT NULL default '0', `name` varchar(250) collate utf8_unicode_ci NOT NULL default '', `wholeName` text collate utf8_unicode_ci NOT NULL, `subCatNum` int(11) NOT NULL default '0', `directSubCatNum` int(11) NOT NULL default '0', `itemNum` int(11) NOT NULL default '0', `directItemNum` int(11) NOT NULL default '0', `creationtime` datetime NOT NULL, `description` text collate utf8_unicode_ci NOT NULL, `keywords` text collate utf8_unicode_ci NOT NULL, `picture` varchar(250) collate utf8_unicode_ci NOT NULL default '', `allowAd` int(11) NOT NULL default '1', `allowSubmitAdAdmin` int(11) NOT NULL default '0', `customAdListTitle` varchar(250) collate utf8_unicode_ci NOT NULL default '', `immediateAppear` int(11) NOT NULL default '1', `expirationEnabled` int(11) NOT NULL default '0', `expiration` int(11) NOT NULL default '0', `expirationOverride` int(11) NOT NULL default '0', `sortId` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=38 ; -- -- Contenu de la table `annoncecategory` -- INSERT INTO `annoncecategory` (`id`, `up`, `name`, `wholeName`, `subCatNum`, `directSubCatNum`, `itemNum`, `directItemNum`, `creationtime`, `description`, `keywords`, `picture`, `allowAd`, `allowSubmitAdAdmin`, `customAdListTitle`, `immediateAppear`, `expirationEnabled`, `expiration`, `expirationOverride`, `sortId`) VALUES (11, 0, 'Emploi et formation', 'Emploi et formation', 23, 23, 0, 0, '2008-09-30 11:13:58', 'Trouver toutes les annonces d''emplois CDI, CDD, emploi saisonnier, job d''été, formations,c''est le Républicain Lorrain.fr', '', 'jpg', 1, 0, '', 1, 0, 0, 0, 0), (12, 11, 'Action Sociale Culturelle et Sportive', 'Emploi et formation - Action Sociale Culturelle et Sportive', 0, 0, 1, 1, '2008-09-30 15:18:40', '', '', '', 1, 0, 'Action Sociale Culturelle et Sportive', 1, 0, 7, 0, 0), (13, 11, 'Agriculture et peche', 'Emploi et formation - Agriculture et peche', 0, 0, 0, 0, '2008-09-30 15:19:32', '', '', '', 1, 0, 'Agriculture et peche', 1, 0, 7, 0, 0), (14, 11, 'Artisanat', 'Emploi et formation - Artisanat', 0, 0, 1, 1, '2008-09-30 16:21:09', '', '', '', 1, 0, 'Artisanat', 1, 0, 7, 0, 0), (15, 11, 'Arts et Spectacles', 'Emploi et formation - Arts et Spectacles', 0, 0, 0, 0, '2008-09-30 16:21:40', '', '', '', 1, 0, 'Arts et Spectacles', 1, 0, 7, 0, 0), (16, 11, 'Banques et Assurances', 'Emploi et formation - Banques et Assurances', 0, 0, 0, 0, '2008-09-30 16:22:08', '', '', '', 1, 0, 'Banques et Assurances', 1, 0, 7, 0, 0), (17, 11, 'Batiments et Travaux Publics', 'Emploi et formation - Batiments et Travaux Publics', 0, 0, 0, 0, '2008-09-30 16:22:44', '', '', '', 1, 0, 'Batiments et Travaux Publics', 1, 0, 7, 0, 0), (20, 11, 'Informatique', 'Emploi et formation - Informatique', 0, 0, 0, 0, '2008-09-30 16:42:31', '', '', '', 1, 0, 'Informatique', 1, 0, 7, 0, 0), (21, 11, 'Communication Information', 'Emploi et formation - Communication Information', 0, 0, 0, 0, '2008-09-30 22:16:17', '', '', '', 1, 0, 'Communication Information', 1, 0, 7, 0, 0), (22, 11, 'Electricité et Electronique', 'Emploi et formation - Electricité et Electronique', 0, 0, 0, 0, '2008-09-30 22:17:02', '', '', '', 1, 0, 'Electricité et Electronique', 1, 0, 7, 0, 0), (23, 11, 'Enseignement et Formation', 'Emploi et formation - Enseignement et Formation', 0, 0, 0, 0, '2008-09-30 22:17:47', '', '', '', 1, 0, 'Enseignement et Formation', 1, 0, 7, 0, 0), (24, 11, 'Gestion et Administration', 'Emploi et formation - Gestion et Administration', 0, 0, 0, 0, '2008-09-30 22:19:54', '', '', '', 1, 0, 'Gestion et Administration', 1, 0, 7, 0, 0), (25, 11, 'Fonction Publique, Professions Juridiques', 'Emploi et formation - Fonction Publique, Professions Juridiques', 0, 0, 0, 0, '2008-09-30 22:20:29', '', '', '', 1, 0, 'Fonction Publique et Professions Juridiques', 1, 0, 7, 0, 0), (26, 11, 'Hotellerie Restauration Alimentation', 'Emploi et formation - Hotellerie Restauration Alimentation', 0, 0, 0, 0, '2008-09-30 22:22:06', '', '', '', 1, 0, 'Hotellerie Restauration Alimentation', 1, 0, 7, 0, 0), (27, 11, 'Industrie', 'Emploi et formation - Industrie', 0, 0, 0, 0, '2008-09-30 22:22:43', '', '', '', 1, 0, 'Industrie', 1, 0, 7, 0, 0), (28, 11, 'Industrie Legere et de Graphique', 'Emploi et formation - Industrie Legere et de Graphique', 0, 0, 0, 0, '2008-09-30 22:23:25', '', '', '', 1, 0, 'Industrie Legere et de Graphique', 1, 0, 7, 0, 0), (29, 11, 'Industrie de Process', 'Emploi et formation - Industrie de Process', 0, 0, 0, 0, '2008-09-30 22:24:01', '', '', '', 1, 0, 'Industrie de Process', 1, 0, 7, 0, 0), (30, 11, 'Interim', 'Emploi et formation - Interim', 0, 0, 0, 0, '2008-09-30 22:24:32', '', '', '', 1, 0, 'Interim', 1, 0, 7, 0, 0), (31, 11, 'Maintenance', 'Emploi et formation - Maintenance', 0, 0, 0, 0, '2008-09-30 22:25:16', '', '', '', 1, 0, 'Maintenance', 1, 0, 7, 0, 0), (32, 11, 'Mecanique Travail des Metaux', 'Emploi et formation - Mecanique Travail des Metaux', 0, 0, 0, 0, '2008-09-30 22:25:47', '', '', '', 1, 0, 'Mecanique Travail des Metaux', 1, 0, 7, 0, 0), (33, 11, 'Metiers de la Santé', 'Emploi et formation - Metiers de la Santé', 0, 0, 0, 0, '2008-09-30 22:26:25', '', '', '', 1, 0, 'Metiers de la Santé', 1, 0, 7, 0, 0), (34, 11, 'Services aux Particuliers', 'Emploi et formation - Services aux Particuliers', 0, 0, 0, 0, '2008-09-30 22:27:12', '', '', '', 1, 0, 'Services aux Particuliers', 1, 0, 7, 0, 0), (35, 11, 'Tourisme et Transports', 'Emploi et formation - Tourisme et Transports', 0, 0, 0, 0, '2008-09-30 22:27:53', '', '', '', 1, 0, 'Tourisme et Transports', 1, 0, 7, 0, 0), (37, 11, 'Commerce Marketing Vente', 'Emploi et formation - Commerce Marketing Vente', 0, 0, 2, 2, '2008-10-02 17:06:58', '', '', '', 1, 0, 'Commerce Marketing Vente', 1, 0, 7, 0, 0); -- -------------------------------------------------------- -- -- Structure de la table `annoncecronjob` -- CREATE TABLE IF NOT EXISTS `annoncecronjob` ( `id` int(11) NOT NULL default '0', `title` varchar(120) collate utf8_unicode_ci NOT NULL default '', `lastExecutionTime` datetime NOT NULL, `frequency` int(11) NOT NULL default '0', `active` int(11) NOT NULL default '1', `function` varchar(120) collate utf8_unicode_ci NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Contenu de la table `annoncecronjob` -- INSERT INTO `annoncecronjob` (`id`, `title`, `lastExecutionTime`, `frequency`, `active`, `function`) VALUES (1, 'Check advertisement expirations', '2008-10-02 11:37:50', 24, 1, 'checkExpiration();'), (2, 'Delete expired advertisements', '2008-10-02 11:37:50', 24, 1, 'deleteExpiredAds();'), (3, 'Delete inactive guests', '2008-10-02 11:37:50', 24, 1, 'deleteInactiveGuests();'); -- -------------------------------------------------------- -- -- Structure de la table `annoncecustomfield` -- CREATE TABLE IF NOT EXISTS `annoncecustomfield` ( `id` int(11) NOT NULL auto_increment, `cid` int(11) NOT NULL default '0', `name` varchar(120) collate utf8_unicode_ci NOT NULL default '', `hideFromForm` int(11) NOT NULL default '0', `expl` text collate utf8_unicode_ci NOT NULL, `type` int(11) NOT NULL default '1', `subType` int(11) NOT NULL default '1', `values` text collate utf8_unicode_ci NOT NULL, `default_text` varchar(255) collate utf8_unicode_ci NOT NULL default '', `default_bool` int(11) NOT NULL default '0', `default_multiple` text collate utf8_unicode_ci NOT NULL, `mandatory` int(11) NOT NULL default '0', `allowHtml` int(11) NOT NULL default '0', `useMarkitup` int(11) NOT NULL default '0', `dateDefaultNow` int(11) NOT NULL default '0', `fromyear` varchar(20) collate utf8_unicode_ci NOT NULL default 'now', `toyear` varchar(20) collate utf8_unicode_ci NOT NULL default 'now', `formatPrefix` varchar(255) collate utf8_unicode_ci NOT NULL default '', `formatPostfix` varchar(255) collate utf8_unicode_ci NOT NULL default '', `precision` int(1) NOT NULL default '2', `precisionSeparator` varchar(1) collate utf8_unicode_ci NOT NULL default '.', `thousandsSeparator` varchar(1) collate utf8_unicode_ci NOT NULL default ',', `format` varchar(255) collate utf8_unicode_ci NOT NULL default '', `showInList` int(11) NOT NULL default '0', `innewline` int(11) NOT NULL default '0', `rowspan` int(11) NOT NULL default '0', `displaylength` int(5) NOT NULL default '0', `sortable` int(11) NOT NULL default '0', `mainPicture` int(11) NOT NULL default '0', `showInDetails` int(11) NOT NULL default '1', `displayLabel` int(11) NOT NULL default '1', `detailsPosition` int(11) NOT NULL default '0', `searchable` int(11) NOT NULL default '0', `rangeSearch` int(11) NOT NULL default '0', `seo` int(11) NOT NULL default '0', `columnIndex` int(11) NOT NULL default '0', `oldColumnIndex` varchar(255) collate utf8_unicode_ci NOT NULL default '', `sortId` int(11) NOT NULL default '0', `fields` int(11) NOT NULL default '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=266 ; -- -- Contenu de la table `annoncecustomfield` -- INSERT INTO `annoncecustomfield` (`id`, `cid`, `name`, `hideFromForm`, `expl`, `type`, `subType`, `values`, `default_text`, `default_bool`, `default_multiple`, `mandatory`, `allowHtml`, `useMarkitup`, `dateDefaultNow`, `fromyear`, `toyear`, `formatPrefix`, `formatPostfix`, `precision`, `precisionSeparator`, `thousandsSeparator`, `format`, `showInList`, `innewline`, `rowspan`, `displaylength`, `sortable`, `mainPicture`, `showInDetails`, `displayLabel`, `detailsPosition`, `searchable`, `rangeSearch`, `seo`, `columnIndex`, `oldColumnIndex`, `sortId`, `fields`) VALUES (264, 37, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (265, 37, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (80, 11, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (81, 11, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (83, 11, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (84, 11, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (85, 11, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (86, 11, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (87, 11, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (88, 12, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (89, 12, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (90, 12, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (91, 12, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (92, 12, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (93, 12, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (94, 12, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (95, 13, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (96, 13, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (97, 13, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (98, 13, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (99, 13, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (100, 13, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (101, 13, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (102, 14, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (103, 14, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (104, 14, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (105, 14, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (106, 14, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (107, 14, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (108, 14, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (109, 15, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (110, 15, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (111, 15, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (112, 15, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (113, 15, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (114, 15, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (115, 15, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (116, 16, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (117, 16, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (118, 16, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (119, 16, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (120, 16, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (121, 16, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (122, 16, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (123, 17, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (124, 17, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (125, 17, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (126, 17, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (127, 17, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (128, 17, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (129, 17, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (263, 37, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (262, 37, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (261, 37, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (260, 37, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (259, 37, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (148, 20, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (147, 20, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (146, 20, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (145, 20, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (144, 20, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (149, 20, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (150, 20, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (151, 21, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (152, 21, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (153, 21, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (154, 21, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (155, 21, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (156, 21, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (157, 21, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (158, 22, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (159, 22, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (160, 22, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (161, 22, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (162, 22, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (163, 22, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (164, 22, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (165, 23, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (166, 23, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (167, 23, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (168, 23, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (169, 23, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (170, 23, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (171, 23, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (172, 24, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (173, 24, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (174, 24, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (175, 24, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (176, 24, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (177, 24, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (178, 24, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (179, 25, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (180, 25, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (181, 25, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (182, 25, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (183, 25, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (184, 25, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (185, 25, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (186, 26, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (187, 26, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (188, 26, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (189, 26, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (190, 26, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (191, 26, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (192, 26, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (193, 27, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (194, 27, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (195, 27, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (196, 27, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (197, 27, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (198, 27, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (199, 27, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (200, 28, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (201, 28, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (202, 28, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (203, 28, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (204, 28, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (205, 28, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (206, 28, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (207, 29, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (208, 29, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (209, 29, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (210, 29, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (211, 29, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (212, 29, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (213, 29, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (214, 30, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (215, 30, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (216, 30, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (217, 30, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (218, 30, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (219, 30, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (220, 30, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (221, 31, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (222, 31, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (223, 31, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (224, 31, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (225, 31, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (226, 31, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (227, 31, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (228, 32, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (229, 32, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (230, 32, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (231, 32, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (232, 32, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (233, 32, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (234, 32, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (235, 33, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (236, 33, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (237, 33, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (238, 33, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (239, 33, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (240, 33, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (241, 33, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (242, 34, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (243, 34, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (244, 34, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (245, 34, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (246, 34, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (247, 34, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (248, 34, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0), (249, 35, 'Titre', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 1, 0, '', 1000, 0), (250, 35, 'Description', 0, '', 2, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 0, 1, 0, 0, 0, 0, 1, 1, 0, 1, 0, 2, 1, '', 1100, 0), (251, 35, 'Secteur d''activité', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 3, '', 1099, 0), (252, 35, 'Région', 0, '', 1, 1, '', '', 0, '', 1, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 4, '', 1099, 0), (253, 35, 'Localisation', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 5, '', 1099, 0), (254, 35, 'Salaire', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 6, '', 1600, 0), (255, 35, 'Contact', 0, '', 1, 1, '', '', 0, '', 0, 0, 0, 0, 'now', 'now', '', '', 2, '.', ',', '', 1, 0, 0, 0, 0, 0, 1, 1, 0, 1, 0, 0, 7, '', 1700, 0); -- -------------------------------------------------------- -- -- Structure de la table `annonceglobalstat` -- CREATE TABLE IF NOT EXISTS `annonceglobalstat` ( `id` int(11) NOT NULL auto_increment, `instver` varchar(120) collate utf8_unicode_ci NOT NULL default '', `congrat` int(11) NOT NULL default '1', `defPageConf` int(11) NOT NULL default '1', `creationtime` date NOT NULL, `lastUpdate` date NOT NULL, `reg` varchar(255) collate utf8_unicode_ci NOT NULL default '', `registered` int(11) NOT NULL default '0', `company` varchar(255) collate utf8_unicode_ci NOT NULL default '', `firstName` varchar(255) collate utf8_unicode_ci NOT NULL default '', `lastName` varchar(255) collate utf8_unicode_ci NOT NULL default '', `email` varchar(255) collate utf8_unicode_ci NOT NULL default '', `lastUpdateCheck` date NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; -- -- Contenu de la table `annonceglobalstat` -- INSERT INTO `annonceglobalstat` (`id`, `instver`, `congrat`, `defPageConf`, `creationtime`, `lastUpdate`, `reg`, `registered`, `company`, `firstName`, `lastName`, `email`, `lastUpdateCheck`) VALUES (1, '2.4.1', 0, 0, '2008-09-30', '0000-00-00', 'e41865948667b03b9a4c1257af92efcc', 0, '', '', '', '', '2008-09-30'); -- -------------------------------------------------------- -- -- Structure de la table `annonceitem` -- CREATE TABLE IF NOT EXISTS `annonceitem` ( `id` int(11) NOT NULL auto_increment, `cid` int(11) NOT NULL default '0', `firstCid` int(11) NOT NULL default '0', `creationtime` datetime NOT NULL, `status` int(11) NOT NULL default '1', `clicked` int(11) NOT NULL default '0', `responded` int(11) NOT NULL default '0', `ownerId` int(11) NOT NULL default '0', `expEmailSent` int(11) NOT NULL default '0', `expirationTime` datetime NOT NULL, `renewalNum` int(11) NOT NULL default '0', `expiration` int(11) NOT NULL default '0', `col_0` text collate utf8_unicode_ci NOT NULL, `col_1` text collate utf8_unicode_ci NOT NULL, `col_2` text collate utf8_unicode_ci NOT NULL, `col_3` text collate utf8_unicode_ci NOT NULL, `col_4` text collate utf8_unicode_ci NOT NULL, `col_5` text collate utf8_unicode_ci NOT NULL, `col_6` text collate utf8_unicode_ci NOT NULL, `col_7` text collate utf8_unicode_ci NOT NULL, `col_8` text collate utf8_unicode_ci NOT NULL, `col_9` text collate utf8_unicode_ci NOT NULL, `col_10` text collate utf8_unicode_ci NOT NULL, `col_11` text collate utf8_unicode_ci NOT NULL, `col_12` text collate utf8_unicode_ci NOT NULL, `col_13` text collate utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=33 ; -- -- Contenu de la table `annonceitem` -- INSERT INTO `annonceitem` (`id`, `cid`, `firstCid`, `creationtime`, `status`, `clicked`, `responded`, `ownerId`, `expEmailSent`, `expirationTime`, `renewalNum`, `expiration`, `col_0`, `col_1`, `col_2`, `col_3`, `col_4`, `col_5`, `col_6`, `col_7`, `col_8`, `col_9`, `col_10`, `col_11`, `col_12`, `col_13`) VALUES (30, 37, 0, '2008-10-02 17:23:12', 1, 0, 0, 1726226417, 0, '2008-10-09 17:23:12', 0, 7, 'EMPLOYE (E)', 'Magasin METZ centre piéton cherche\r\nEMPLOYE (E)\r\n(accueil, vente, stock, entretien) temps\r\npartiel 25h/sem, sachant travailler en\r\nbinôme et en autonomie. Humilité,\r\ncourtoisie et sens du contact\r\nindispensables.', '', 'Vente', 'Lorraine', 'Metz', 'nc', 'Ecrire au b.d.j. sous Nº 01096740 qui transmettra', '', '', '', '', '', ''), (21, 12, 0, '2008-09-30 11:29:34', 1, 18, 0, 1726226417, 0, '0000-00-00 00:00:00', 0, 0, 'TECHNICIEN BUREAU D''ETUDES-CHARGE(E) D''AFFAIRES', 'TECHNICIEN BUREAU D''ETUDES-CHARGE(E) D''AFFAIRES CDD\r\n Temps plein Date: 09/23/08\r\n Entreprise : Mapac Panel\r\n\r\nCONTRAT A DUREE DETERMINEE DE 9 MOIS - 39H00 HEBDO\r\n\r\nVOUS SEREZ CHARGE(E) DE LA REALISATION DE PLANS, ETUDE DE PROFILS ET PANNEAUX, SUIVI D''AFFAIRES, DEVIS, MISE EN FABRICATION, APPROVISIONNEMENT MATIERES,...POSSIBILITE DE CDI. AVOIR IMPERATIVEMENT DES CONNAISSANCES EN TOLERIE FINE, PLIAGE ET POINCONNAGE.\r\n\r\nDIPL. NIVEAU BAC+2 BUREAU ETUDES EXIGE\r\n\r\n**POSTE A POURVOIR DE SUITE**\r\n\r\nEXPERIENCE EXIGEE DE 2 A 5 ANS SUR UN MEME POSTE', '', 'Industrie Manufacturiere et Production', 'pays de la loire', '44270 MACHECOUL', 'Non défini', 'LAIR Sébastien', '', '', '', '', '', ''), (17, 12, 0, '2008-09-30 11:29:34', 1, 18, 0, 1726226417, 0, '0000-00-00 00:00:00', 0, 0, 'TECHNICIEN BUREAU D''ETUDES-CHARGE(E) D''AFFAIRES', 'TECHNICIEN BUREAU D''ETUDES-CHARGE(E) D''AFFAIRES CDD\r\n Temps plein Date: 09/23/08\r\n Entreprise : Mapac Panel\r\n\r\nCONTRAT A DUREE DETERMINEE DE 9 MOIS - 39H00 HEBDO\r\n\r\nVOUS SEREZ CHARGE(E) DE LA REALISATION DE PLANS, ETUDE DE PROFILS ET PANNEAUX, SUIVI D''AFFAIRES, DEVIS, MISE EN FABRICATION, APPROVISIONNEMENT MATIERES,...POSSIBILITE DE CDI. AVOIR IMPERATIVEMENT DES CONNAISSANCES EN TOLERIE FINE, PLIAGE ET POINCONNAGE.\r\n\r\nDIPL. NIVEAU BAC+2 BUREAU ETUDES EXIGE\r\n\r\n**POSTE A POURVOIR DE SUITE**\r\n\r\nEXPERIENCE EXIGEE DE 2 A 5 ANS SUR UN MEME POSTE', '', 'Industrie Manufacturiere et Production', 'pays de la loire', '44270 MACHECOUL', 'Non défini', 'LAIR Sébastien', '', '', '', '', '', ''), (20, 35, 0, '2008-10-01 10:08:34', 1, 3, 0, 1726226417, 0, '2008-10-08 10:08:34', 0, 7, 'Chauffeur', 'Amnéville-les-Thermes, sté rech.\r\n\r\nChauffeur\r\ntransports communs,\r\n\r\npermis non limité, avec FIMO et FCOS.', '', 'Transports', 'Lorraine', 'amnéville', '1300 € Brut', 'Tél. 03.87.70.31.70', '', '', '', '', '', ''), (25, 12, 0, '2008-09-30 11:29:34', 1, 18, 0, 1726226417, 0, '0000-00-00 00:00:00', 0, 0, 'TECHNICIEN BUREAU D''ETUDES-CHARGE(E) D''AFFAIRES', 'TECHNICIEN BUREAU D''ETUDES-CHARGE(E) D''AFFAIRES CDD\r\n Temps plein Date: 09/23/08\r\n Entreprise : Mapac Panel\r\n\r\nCONTRAT A DUREE DETERMINEE DE 9 MOIS - 39H00 HEBDO\r\n\r\nVOUS SEREZ CHARGE(E) DE LA REALISATION DE PLANS, ETUDE DE PROFILS ET PANNEAUX, SUIVI D''AFFAIRES, DEVIS, MISE EN FABRICATION, APPROVISIONNEMENT MATIERES,...POSSIBILITE DE CDI. AVOIR IMPERATIVEMENT DES CONNAISSANCES EN TOLERIE FINE, PLIAGE ET POINCONNAGE.\r\n\r\nDIPL. NIVEAU BAC+2 BUREAU ETUDES EXIGE\r\n\r\n**POSTE A POURVOIR DE SUITE**\r\n\r\nEXPERIENCE EXIGEE DE 2 A 5 ANS SUR UN MEME POSTE', '', 'Industrie Manufacturiere et Production', 'pays de la loire', '44270 MACHECOUL', 'Non défini', 'LAIR Sébastien', '', '', '', '', '', ''), (31, 14, 0, '2008-10-02 17:25:54', 1, 0, 0, 1726226417, 0, '2008-10-09 17:25:54', 0, 7, '1PATISSIER + 1VENDEUSE', 'Boulangerie Hagondange cherche\r\n1PATISSIER Temps plein, autonome\r\n1VENDEUSE temps plein\r\nRepos le dimanche.', '', 'Métiers de l’artisanat Boulangerie', 'Lorraine', 'Hagondange', 'nc', 'Tél. le matin au 03.87.71.44.86', '', '', '', '', '', ''), (32, 35, 0, '2008-10-02 17:28:34', 1, 0, 0, 1726226417, 0, '2008-10-09 17:28:34', 0, 7, 'CHAUFFEURS/OPERATEURS', 'SORELIFE cherche\r\nCHAUFFEURS/OPERATEURS sur\r\ncamions hydrocureurs (FIMO/FCOS) sect\r\nMETZ et FORBACH Env. CV à ', '', 'Logistique et transport', 'Lorraine', 'FAULQUEMONT', 'nc', 'SORELIFE av Jean Monnet 57380 FAULQUEMONT', '', '', '', '', '', ''), (29, 37, 0, '2008-10-02 17:21:08', 1, 0, 0, 1726226417, 0, '2008-10-09 17:21:08', 0, 7, 'COMMERCIAUX', 'GAGNEZ VOTRE\r\nPASSEPORT POUR LA REUSSITE\r\nrejoignez une force\r\ncommerciale "leader"\r\nCOMMERCIAUX\r\nSECTEUR MOSELLE\r\nBattant - ambitieux - méthodique\r\nvous bénéficiez d’outils marketing\r\net d’une campagne de communication.\r\nNous ferons de vous des Numéros 1\r\ndans un groupe de notoriété régionale.\r\nStatut salarié', '', 'Commerce Marketing Vente', 'Lorraine', 'Moselle', 'Fixe + com', 'Tél. au 0810 537 587', '', '', '', '', '', ''); -- -------------------------------------------------------- -- -- Structure de la table `annoncenotification` -- CREATE TABLE IF NOT EXISTS `annoncenotification` ( `id` int(11) NOT NULL default '0', `fixRecipent` int(11) NOT NULL default '0', `fixCC` int(11) NOT NULL default '1', `recipent` varchar(255) collate utf8_unicode_ci NOT NULL default '', `cc` varchar(255) collate utf8_unicode_ci NOT NULL default '', `title` varchar(120) collate utf8_unicode_ci NOT NULL default '', `subject` varchar(120) collate utf8_unicode_ci NOT NULL default '', `variables` text collate utf8_unicode_ci NOT NULL, `body` text collate utf8_unicode_ci NOT NULL, `active` int(11) NOT NULL default '1', `langDependent` int(11) NOT NULL default '1', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Contenu de la table `annoncenotification` -- INSERT INTO `annoncenotification` (`id`, `fixRecipent`, `fixCC`, `recipent`, `cc`, `title`, `subject`, `variables`, `body`, `active`, `langDependent`) VALUES (1, 0, 1, '', '', 'Sent to the user after the registration, contains the initial password', 'Initial password', 'uname, pwd, url', 'notifications/email_initial_password.html', 1, 1), (2, 0, 1, '', '', 'Contains a new password if the user forgot the old one.', 'New password', 'name, pwd, url', 'notifications/email_remind_password.html', 1, 1), (101, 0, 1, '', '', 'Sent to admin upon ad creation or modification', 'Ad creation, or modification', 'title', 'notifications/email_ad_created.html', 1, 0), (102, 0, 1, '', '', 'Sent to the owner when his ad has been deleted', 'Ad expiration', 'category, title', 'notifications/email_ad_deleted.html', 1, 0), (103, 0, 1, '', '', 'Sent to the owner when his ad is about to expire', 'Ad expiration warning', 'daysLeft, category, title', 'notifications/email_ad_expired.html', 1, 0), (104, 0, 1, '', '', 'Sent to the owner when his ad have been approved', 'Ad approval', 'title', 'notifications/email_ad_approved.html', 1, 0), (105, 0, 1, '', '', 'Reply to a posting', 'Reply to your posting', 'listing, url, name, email, message', 'notifications/email_ad_replied.html', 1, 1), (106, 0, 1, '', '', 'Mail to a friend', 'Check this out', 'name, url, message', 'notifications/email_to_friend.html', 1, 1), (109, 0, 1, '', '', 'Auto notify email', 'Auto notify: a new ad has been submitted', 'title, unsubUrl', 'notifications/email_subscription.html', 1, 0); -- -------------------------------------------------------- -- -- Structure de la table `annoncesearch` -- CREATE TABLE IF NOT EXISTS `annoncesearch` ( `id` int(11) NOT NULL default '0', `name` varchar(250) collate utf8_unicode_ci NOT NULL default '', `autoNotify` int(11) NOT NULL default '0', `query` text collate utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`,`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Contenu de la table `annoncesearch` -- INSERT INTO `annoncesearch` (`id`, `name`, `autoNotify`, `query`) VALUES (353731265, '', 0, 'cid=''11'' AND (n.col_0 LIKE ''%Technicien%'' OR n.col_1 LIKE ''%Technicien%'')'), (559921361, '', 0, 'cid=''11'' AND (n.col_0 LIKE ''%Technicien%'' OR n.col_1 LIKE ''%Technicien%'')'), (10, '', 0, '(cid=''18'' AND (n.col_3 LIKE ''%vente%''))'), (1112756793, '', 0, '((cid=''1'' AND (n.col_0 LIKE ''%Chauffeur%'' OR n.col_1 LIKE ''%Chauffeur%'' OR n.col_2 LIKE ''%Chauffeur%'' OR n.col_4 LIKE ''%Chauffeur%'')) OR (cid=''2'' AND (n.col_0 LIKE ''%Chauffeur%'' OR n.col_1 LIKE ''%Chauffeur%'' OR n.col_3 LIKE ''%Chauffeur%'')) OR (cid=''3'' AND (n.col_0 LIKE ''%Chauffeur%'' OR n.col_1 LIKE ''%Chauffeur%'' OR n.col_2 LIKE ''%Chauffeur%'')) OR (cid=''5'' AND (n.col_0 LIKE ''%Chauffeur%'' OR n.col_1 LIKE ''%Chauffeur%'' OR n.col_2 LIKE ''%Chauffeur%'' OR n.col_4 LIKE ''%Chauffeur%'')) OR (cid=''9'' AND (n.col_0 LIKE ''%Chauffeur%'' OR n.col_1 LIKE ''%Chauffeur%'' OR n.col_3 LIKE ''%Chauffeur%'')) OR (cid=''10'' AND (n.col_0 LIKE ''%Chauffeur%'' OR n.col_1 LIKE ''%Chauffeur%'' OR n.col_3 LIKE ''%Chauffeur%'')) OR (cid=''12'' AND (n.col_0 LIKE ''%Chauffeur%'' OR n.col_3 LIKE ''%Chauffeur%'' OR n.col_5 LIKE ''%Chauffeur%'' OR n.col_1 LIKE ''%Chauffeur%'' OR n.col_6 LIKE ''%Chauffeur%'' OR n.col_7 LIKE ''%Chauffeur%'')) OR (cid=''18'' AND (n.col_0 LIKE ''%Chauffeur%'' OR n.col_3 LIKE ''%Chauffeur%'' OR n.col_5 LIKE ''%Chauffeur%'' OR n.col_1 LIKE ''%Chauffeur%'' OR n.col_6 LIKE ''%Chauffeur%'' OR n.col_7 LIKE ''%Chauffeur%'')) OR (cid=''35'' AND (n.col_0 LIKE ''%Chauffeur%'' OR n.col_3 LIKE ''%Chauffeur%'' OR n.col_5 LIKE ''%Chauffeur%'' OR n.col_1 LIKE ''%Chauffeur%'' OR n.col_6 LIKE ''%Chauffeur%'' OR n.col_7 LIKE ''%Chauffeur%'')))'), (1863697065, '', 0, '((cid=''12'' AND (n.col_0 LIKE ''%commerciaux%'' OR n.col_3 LIKE ''%commerciaux%'' OR n.col_5 LIKE ''%commerciaux%'' OR n.col_1 LIKE ''%commerciaux%'' OR n.col_6 LIKE ''%commerciaux%'' OR n.col_7 LIKE ''%commerciaux%'')) OR (cid=''18'' AND (n.col_0 LIKE ''%commerciaux%'' OR n.col_3 LIKE ''%commerciaux%'' OR n.col_5 LIKE ''%commerciaux%'' OR n.col_1 LIKE ''%commerciaux%'' OR n.col_6 LIKE ''%commerciaux%'' OR n.col_7 LIKE ''%commerciaux%'')) OR (cid=''35'' AND (n.col_0 LIKE ''%commerciaux%'' OR n.col_3 LIKE ''%commerciaux%'' OR n.col_5 LIKE ''%commerciaux%'' OR n.col_1 LIKE ''%commerciaux%'' OR n.col_6 LIKE ''%commerciaux%'' OR n.col_7 LIKE ''%commerciaux%'')))'), (1726226417, '', 0, '((cid=''12'' AND (n.col_0 LIKE ''%commerciaux%'' OR n.col_3 LIKE ''%commerciaux%'' OR n.col_5 LIKE ''%commerciaux%'' OR n.col_1 LIKE ''%commerciaux%'' OR n.col_6 LIKE ''%commerciaux%'' OR n.col_7 LIKE ''%commerciaux%'')) OR (cid=''18'' AND (n.col_0 LIKE ''%commerciaux%'' OR n.col_3 LIKE ''%commerciaux%'' OR n.col_5 LIKE ''%commerciaux%'' OR n.col_1 LIKE ''%commerciaux%'' OR n.col_6 LIKE ''%commerciaux%'' OR n.col_7 LIKE ''%commerciaux%'')) OR (cid=''35'' AND (n.col_0 LIKE ''%commerciaux%'' OR n.col_3 LIKE ''%commerciaux%'' OR n.col_5 LIKE ''%commerciaux%'' OR n.col_1 LIKE ''%commerciaux%'' OR n.col_6 LIKE ''%commerciaux%'' OR n.col_7 LIKE ''%commerciaux%'')))'); -- -------------------------------------------------------- -- -- Structure de la table `annoncesettings` -- CREATE TABLE IF NOT EXISTS `annoncesettings` ( `id` int(11) NOT NULL auto_increment, `expNoticeBefore` int(11) NOT NULL default '5', `renewal` int(11) NOT NULL default '5', `maxPicSize` int(11) NOT NULL default '0', `maxPicWidth` int(11) NOT NULL default '0', `maxPicHeight` int(11) NOT NULL default '0', `menuPoints` varchar(255) collate utf8_unicode_ci NOT NULL default '', `helpLink` varchar(255) collate utf8_unicode_ci NOT NULL default '', `extraHead` text collate utf8_unicode_ci NOT NULL, `extraBody` text collate utf8_unicode_ci NOT NULL, `extraTopContent` text collate utf8_unicode_ci NOT NULL, `extraBottomContent` text collate utf8_unicode_ci NOT NULL, `extraFooter` text collate utf8_unicode_ci NOT NULL, `defaultTheme` varchar(255) collate utf8_unicode_ci NOT NULL default 'modern', `allowSelectTheme` int(11) NOT NULL default '1', `allowedThemes` text collate utf8_unicode_ci NOT NULL, `defaultLanguage` varchar(255) collate utf8_unicode_ci NOT NULL default 'en', `allowSelectLanguage` int(11) NOT NULL default '0', `allowedLanguages` text collate utf8_unicode_ci NOT NULL, `adminEmail` varchar(255) collate utf8_unicode_ci NOT NULL default '', `adminFromName` varchar(255) collate utf8_unicode_ci NOT NULL default '', `smtpServer` varchar(255) collate utf8_unicode_ci NOT NULL default '', `smtpUser` varchar(255) collate utf8_unicode_ci NOT NULL default '', `smtpPass` varchar(255) collate utf8_unicode_ci NOT NULL default '', `fallBackNative` int(11) NOT NULL default '0', `titlePrefix` varchar(255) collate utf8_unicode_ci NOT NULL default '', `mainTitle` varchar(255) collate utf8_unicode_ci NOT NULL default '', `mainDescription` text collate utf8_unicode_ci NOT NULL, `mainKeywords` text collate utf8_unicode_ci NOT NULL, `charLimit` int(11) NOT NULL default '0', `blockSize` int(5) NOT NULL default '0', `showCreatedInLists` int(11) NOT NULL default '0', `showCreatedInDetails` int(11) NOT NULL default '1', `showExpInLists` int(11) NOT NULL default '0', `showExpInDetails` int(11) NOT NULL default '1', `showOwnerInLists` int(11) NOT NULL default '0', `showOwnerInDetails` int(11) NOT NULL default '1', `dateFormat` varchar(255) collate utf8_unicode_ci NOT NULL default '', `applyCaptcha` varchar(20) collate utf8_unicode_ci NOT NULL default '', `showEmail` int(11) NOT NULL default '4', `enableFavorities` int(11) NOT NULL default '1', `enableRememberPassword` int(11) NOT NULL default '1', `enablePasswordReminder` int(11) NOT NULL default '1', `updateCheckInterval` int(5) NOT NULL default '0', `maxMediaSize` int(11) NOT NULL default '50000', `allowModify` int(11) NOT NULL default '1', `subscriptionType` int(11) NOT NULL default '2', `showExplanation` tinyint(4) NOT NULL default '0', `versionFooter` text collate utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=2 ; -- -- Contenu de la table `annoncesettings` -- INSERT INTO `annoncesettings` (`id`, `expNoticeBefore`, `renewal`, `maxPicSize`, `maxPicWidth`, `maxPicHeight`, `menuPoints`, `helpLink`, `extraHead`, `extraBody`, `extraTopContent`, `extraBottomContent`, `extraFooter`, `defaultTheme`, `allowSelectTheme`, `allowedThemes`, `defaultLanguage`, `allowSelectLanguage`, `allowedLanguages`, `adminEmail`, `adminFromName`, `smtpServer`, `smtpUser`, `smtpPass`, `fallBackNative`, `titlePrefix`, `mainTitle`, `mainDescription`, `mainKeywords`, `charLimit`, `blockSize`, `showCreatedInLists`, `showCreatedInDetails`, `showExpInLists`, `showExpInDetails`, `showOwnerInLists`, `showOwnerInDetails`, `dateFormat`, `applyCaptcha`, `showEmail`, `enableFavorities`, `enableRememberPassword`, `enablePasswordReminder`, `updateCheckInterval`, `maxMediaSize`, `allowModify`, `subscriptionType`, `showExplanation`, `versionFooter`) VALUES (1, 5, 1, 3000, 450, 450, '2,5,8,9,10,11,12', '', '', '', '', '', '', 'modern', 0, 'modern,classic', 'fr', 1, 'en,fr,nl', 'fouad54270_b@hotmail.com', 'annonce', '', '', '', 1, 'annonces emploi', '', '', '', 500, 20, 1, 1, 0, 1, 0, 0, 'd-m-Y', '1,2,3,4', 4, 0, 1, 1, 7, 250, 1, 2, 0, 'Powered by http://noahsclassifieds.org''>Noah''s Classifieds 2.4.1 - \n http://noahsclassifieds.org'' >try Noah''s Classifieds V8 e-commerce enabled'); -- -------------------------------------------------------- -- -- Structure de la table `annoncesubscription` -- CREATE TABLE IF NOT EXISTS `annoncesubscription` ( `id` int(11) NOT NULL auto_increment, `cid` int(11) NOT NULL default '0', `uid` int(11) NOT NULL default '0', `email` varchar(255) collate utf8_unicode_ci NOT NULL default '', PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=1 ; -- -- Contenu de la table `annoncesubscription` -- -- -------------------------------------------------------- -- -- Structure de la table `annonceuser` -- CREATE TABLE IF NOT EXISTS `annonceuser` ( `id` int(11) NOT NULL default '0', `name` varchar(32) collate utf8_unicode_ci NOT NULL default '', `email` varchar(64) collate utf8_unicode_ci NOT NULL default '', `password` varchar(32) collate utf8_unicode_ci NOT NULL default '', `newPassword` varchar(32) collate utf8_unicode_ci NOT NULL default '', `rememberPassword` int(11) NOT NULL default '0', `isAdm` int(11) NOT NULL default '0', `creationtime` datetime NOT NULL, `lastClickTime` datetime NOT NULL, `active` int(11) NOT NULL default '0', `favorities` text collate utf8_unicode_ci NOT NULL, PRIMARY KEY (`id`), UNIQUE KEY `name` (`name`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Contenu de la table `annonceuser` -- INSERT INTO `annonceuser` (`id`, `name`, `email`, `password`, `newPassword`, `rememberPassword`, `isAdm`, `creationtime`, `lastClickTime`, `active`, `favorities`) VALUES (1726226417, 'admin', 'xxxxxxxx@hotmail.com', 'xxxxxxxxxxxxxxx', '', 0, 1, '2008-09-30 10:45:48', '2008-10-02 17:29:16', 1, ''), (10, 'xxxxx', 'xxxxxxx@hotmail.com', 'xxxxxxxxxx', '', 0, 0, '2008-09-30 10:45:48', '2008-10-01 06:51:47', 1, ''), (559921361, '559921361', '', '', '', 0, 0, '2008-09-30 11:40:28', '2008-09-30 11:51:08', 0, ''), (1024959739, '1024959739', '', '', '', 0, 0, '2008-09-30 11:59:28', '2008-09-30 16:14:27', 0, ''), (1466345522, '1466345522', '', '', '', 0, 0, '2008-10-01 16:23:51', '2008-10-02 20:00:33', 0, ''), (104273129, '104273129', '', '', '', 0, 0, '2008-09-30 15:38:01', '2008-10-02 12:01:27', 0, ''), (1830540777, '1830540777', '', '', '', 0, 0, '2008-09-30 18:28:27', '2008-09-30 18:29:55', 0, ''), (519810354, '519810354', '', '', '', 0, 0, '2008-10-01 12:35:16', '2008-10-01 12:35:32', 0, ''), (1863697065, '1863697065', '', '', '', 0, 0, '2008-10-01 20:14:05', '2008-10-01 20:15:55', 0, '');[/quot] est ce que tu peux me dire comment faire STP merci est c'est quoi les champs qu'il faut garder

Modifié par fox54270 le 02/10/2008 20:53
Afficher le profil de fox54270Envoyer un message privé à fox54270
 Revenir en haut de la page
 tirikou  Posté le 02/10/2008 à 21:12  
Astucien


1006 Messages

Pa ni pwoblem' bwana ...

Je suppose que tu n'as pas essayé de lire ton fichier dans excel ????

De toute façon cela ne doit pas être triste ....

Commençons par le début ...

C'est quoi ton niveau en php (regex), java et ASP ?

Que tu veux tu faire ? une tache automatisée qui transmet tout dans ta ou tes table(s) à chaque réception d'un fichier ?

Tu préfères traiter le fichier txt où le fichier xml ?

Les données du fichier reçu sont-elles les mêmes que ton organisation propre (tables, champs, données) ?

As tu pensé à demander à la plateforme qui te fournit ces données comment tu pouvais les réupérer ?

Gros chantier en tout cas ... Tu as pensé au guranzon ?

Afficher le profil de tirikouEnvoyer un message privé à tirikou
 Revenir en haut de la page
 tirikou  Posté le 02/10/2008 à 21:19  
Astucien


1006 Messages

Au fait ... c'est un site que tu as créé toi-même ?

Ce fichier est celui que tu reçois ou ta base ???

Afficher le profil de tirikouEnvoyer un message privé à tirikou
 Revenir en haut de la page
 fox54270  Posté le 03/10/2008 à 08:56  
Petit astucien

169 Messages

Merci encore pour ton aide:

effectivement j'ai lu le fichier xml dans Exel ça y a pas de souci le fichier que j'ai copier sur ma précédente réponse est le fichier tel que je l' exporte de la base de donnée et c'était juste pour montrer tous les champs des tables de la base de donnée.

en ce qui concerne mes connaissances en php et java ... j'ai une connaissance moyenne.

ce que je veux faire c'est effectivement une tâche automatisée qui transmet tout dans la table ou les tables concernées à chaque réception du fichier. Pour les fichiers reçu je peux les avoir avec tous les champs que je veux.

pour le site ce n'est pas un que moi j'ai créer mais c'est un CMS de petites annonces qui est déjà installée.

Afficher le profil de fox54270Envoyer un message privé à fox54270
 Revenir en haut de la page
 tirikou  Posté le 03/10/2008 à 10:43  
Astucien


1006 Messages

Excuse moi d'insister mais n'y a t-il rien de prévu par le cms pour récupérer ces fichiers ?

As tu posé la question au fournisseur de ce cms ou à la communauté qui l'utilise.

Mon hébergeur propose l'installation d'un cms de petites annonces qui contient un script de récupération de fichiers d'échanges (à condition qu'il vienne d'un cms identique). Je pense qu'il doit en être de même pour toi.

Sinon voici deux liens qui traitent du sujet :

http://www.commentcamarche.net/forum/affich-1258405-import-donnees-xml-base-de-donnees

http://www.developpez.net/forums/d9756/technologies-divers/xml-xsl-soap/donnee-xml-vers-mysql/

Le principe est à chaque fois de transformer ton fichier xml en xsl avec php puis de l'envoyer soit avec une commande soit avec une requête.

Ici un lien vers le xml. Tu peux trouver aussi des parseurs pour faire la transfo.



Modifié par tirikou le 03/10/2008 10:54
Afficher le profil de tirikouEnvoyer un message privé à tirikou
 Revenir en haut de la page
 fox54270  Posté le 03/10/2008 à 11:00  
Petit astucien

169 Messages

ok je vais jeté un coup d'oeil et je te tien informé

Merci encre

Afficher le profil de fox54270Envoyer un message privé à fox54270
 Revenir en haut de la page
 tirikou  Posté le 04/10/2008 à 00:00  
Astucien


1006 Messages

Ce n'est pas automatique mais as tu essayé la commande "import" de mysql ?

A partir de là tu pourrais faire une commande automatique d'import.

Excuse mais le xml est tellement variable de l'un à l'autre qu'il faut vraimant cerner au plus près les possibiltés.

Peux tu mettre un ficheir xml en exemple ?

Afficher le profil de tirikouEnvoyer un message privé à tirikou
 Revenir en haut de la page
Haut de la page 
Inscrivez-vous !
- Posez vos questions

- Résolvez vos problèmes

- Aidez les autres

- Participez et créez vos discussions

- Dialoguez en privé avec d'autres membres

- Suivez vos sujets préférés

- Affichez les signatures des membres

TOUT EST GRATUIT !

Je crée mon compte




Vous avez besoin d'aide ?
Des centaines d'experts sont à votre disposition sur les forums PC Astuces pour vous aider gratuitement, 24h/24, 7j/7.

Les derniers sujets résolus !
 

 > Tous les forumsForum des Webmasters

 
Forum PC Astuces© 1997-2008 WebastucesAller en haut de la page