Bonjour, j'ai besoin de votre aide
En exécutant le code qui suit, j'ai cette erreur et je n'en trouve pa la source :
Invalid parameter passed to C runtime function.
terminate called after throwing an instance of 'std::bad_alloc'
what(): std::bad_alloc
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
void ImportBDD::on_ImportBDD_2_clicked()
{
      // fichier est un fichier texte que j'ai ouvert
     // resultat est un QString qui contient ce qu'il y a dans le fichier texte
 
     if (fichier == NULL){
        QMessageBox erreur;
        erreur.setText("Aucun fichier de résultat ouvert !");
        erreur.exec();
        return;
    }
 
    QSqlDatabase db = QSqlDatabase::addDatabase("QMYSQL");
    db.setHostName("127.0.0.1");
    db.setUserName("root");
    db.setPassword("");
    db.setDatabaseName("gico2013");
    db.open();
    QSqlQuery requete;
    int i=262;
    int nbrCar=resultat.size();
    if(db.open()){
 
        while(i<nbrCar){
 
            QString nom;
            QString prenom;
            QString position;
 
            QString numPuce;
            int iDPuce;
 
            QString categorie;
            QString club;
            QString pays;
            QChar sexe;
 
            QString naissance;
            int anneeDeNaissance;
 
            QString email;
 
            QString tel;
            int numDeTel;
 
            QString ville;
            QString rue;
 
            QString cPostal;
            int codePostal;
 
            QString tDepart;
            QString tArrivee;
 
            QString balisePoinconner;
            int bPoinconner;
 
            QString balise1,balise2,balise3,balise4;
            int b1,b2,b3,b4;
 
            QString tBalise1,tBalise2,tBalise3,tBalise4;
 
            while(resultat[i]!=','){        // La position du coureur
 
                position += resultat[i];
                i++;
            }
 
                i++;
 
 
 
             while(resultat[i]!=','){    // Positionnement pour avoir le numéro de la puce
                 i++;
            }
            i++;                            // On a pas besoin de ces info la
 
 
 
            while(resultat[i]!=','){        // Numéro de la puce
                numPuce+=resultat[i];
                i++;
            }
 
            //numPuce.toInt();                   // Convertion de la chaine en nombre
 
 
            i++;                                    // Positionner sur la catégorie du coureur
 
 
            while(resultat[i]!=','){        // Prénom du coureur
 
                prenom+=resultat[i];
                i++;
 
            }
 
            i++;
 
            while(resultat[i]!=','){        // Catégorie du coureur
 
                categorie+=resultat[i];
                i++;
 
            }
 
            i++;
 
 
 
 
 
            while(resultat[i]!=','){        // Nom du coureur
 
                nom+=resultat[i];
                i++;
 
            }
 
            i++;
 
 
            while(resultat[i]!=','){        // Club du coureur
 
                club+=resultat[i];
                i++;
 
            }
 
            i++;
 
 
            while(resultat[i]!=','){        // Pays du coureur
 
                pays+=resultat[i];
                i++;
 
            }
 
            i++;
 
 
            while(resultat[i]!=','){        // Sexe du coureur
                sexe=resultat[i];
                i++;
 
            }
 
            i++;
 
 
 
            while(resultat[i]!=','){        // Annee de naissance du coureur
 
                naissance+=resultat[i];
                i++;
 
            }
 
            anneeDeNaissance=naissance.toInt();
            i++;
 
 
            while(resultat[i]!=','){        // E-Mail du coureur
 
                email+=resultat[i];
                i++;
 
            }
 
            i++;
 
 
 
            while(resultat[i]!=','){        // Numéro de tel du coureur
 
                tel+=resultat[i];
                i++;
 
            }
 
 
            numDeTel=tel.toInt();
            i++;
 
 
            while(resultat[i]!=','){        // Ville du coureur
 
                ville+=resultat[i];
                i++;
 
            }
 
            i++;
 
 
            while(resultat[i]!=','){        // Rue du coureur
 
                rue+=resultat[i];
                i++;
 
            }
 
            i++;
 
 
 
            while(resultat[i]!=','){        // Code postal du coureur
 
                cPostal+=resultat[i];
                i++;
 
            }
 
            codePostal=cPostal.toInt();
            i++;
 
            for (int r=0;r<8;r++){
                while(resultat[i]!=','){        // Replacer sur Heure de départ
 
                    i++;
                }
                i++;
 
            }
 
 
            while(resultat[i]!=','){        // heure de départ de la course
                tDepart+=resultat[i];
                i++;
 
            }
 
 
 
            for (int r=0;r<3;r++){
                while(resultat[i]!=','){        // Replacer sur Heure d'arrivée
 
                    i++;
                }
                i++;
 
            }
 
            while(resultat[i]!=','){        // heure de d'arrivée du coureur
                tArrivee+=resultat[i];
                i++;
 
            }
            i++;
 
 
 
 
            while(resultat[i]!=','){                // Nombre de balises poinconner
                balisePoinconner+=resultat[i];
                i++;
 
            }
 
            bPoinconner=balisePoinconner.toInt();
            i++;
 
 
 
            while(resultat[i]!=','){                // numéro Balise 1
                balise1+=resultat[i];
                i++;
 
            }
 
            b1=balise1.toInt();
            i++;
 
            while(resultat[i]!=','){        // Replacer sur Temps a la balise 1
                i++;
            }
            i++;
 
            while(resultat[i]!=','){        // Temps a la balise 1
                tBalise1+=resultat[i];
                i++;
 
            }
            i++;
 
 
 
            while(resultat[i]!=','){                // numéro Balise 2
                balise2+=resultat[i];
                i++;
 
            }
 
            b2=balise2.toInt();
            i++;
 
            while(resultat[i]!=','){        // Replacer sur Temps a la balise 2
            i++;
 
            }
            i++;
 
            while(resultat[i]!=','){        // Temps a la balise 2
                tBalise2+=resultat[i];
                i++;
 
            }
            i++;
 
 
 
            while(resultat[i]!=','){                // numéro Balise 3
                balise3+=resultat[i];
                i++;
 
            }
 
            b3=balise3.toInt();
            i++;
 
            while(resultat[i]!=','){        // Replacer sur Temps a la balise 3
 
            i++;
            }
            i++;
 
            while(resultat[i]!=','){        // Temps a la balise 3
                tBalise3+=resultat[i];
                i++;
 
            }
            i++;
 
 
            while(resultat[i]!=','){                // numéro Balise 4
                balise4+=resultat[i];
                i++;
 
            }
            b4=balise4.toInt();
            i++;
 
            while(resultat[i]!=','){        // Replacer sur Temps a la balise 4
 
            i++;
            }
            i++;
 
            while(resultat[i]!=','){        // Temps a la balise 4
                tBalise4+=resultat[i];
                i++;
 
            }
            i++;
 
            //Ici faire l'insertion des données dans la BDD
 
 
        requete.exec("UPDATE `gico2013`.`coureur` SET `Nom` = 'marche'  WHERE `coureur`.`idCoureur` =1 ");
 
 
 
 
       }
  }
 
 
 
}