J'essai de creer un script vbs qui me permette à partir d'un fichier csv d'en creer un autre qui contienne un script sql pour creer des tables; un exemple
fichier.csv
Citation :
champ1 table1 type taille champ2 table1 type taille champ1 table2 type taille champ2 table2 type taille
Marsh Posté le 16-08-2006 à 15:44:33
salut,
J'essai de creer un script vbs qui me permette à partir d'un fichier csv d'en creer un autre qui contienne un script sql pour creer des tables;
un exemple
fichier.csv
champ1 table1 type taille
champ2 table1 type taille
champ1 table2 type taille
champ2 table2 type taille
et je voudrais en sortie
create table table1 (champ1 type(taille),champ2 type(taille));
create table table2 (champ1 type(taille),champ2 type(taille));
voici mon code
Le probleme est qu'en resultat, j'ai cela
create table2 (champ1 type(taille),champ2 type(taille),champ1 type(taille),champ2 type(taille))
il ne me met pas les nom de table à la suite en faite il les ecrase et accumule tout les champs des tables.
Comment pourrai je eviter cela
Merci