Advertisement
Guest User

Untitled

a guest
Mar 20th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 72.08 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using MySql.Data.MySqlClient;
  6. using System.IO;
  7.  
  8. namespace ConsoleApplication1
  9. {
  10. class Program
  11. {
  12. static void Main(string[] args)
  13. {
  14. MySqlConnection kapcsolat = new MySqlConnection("server=213.181.201.127; user=Zsoltikaa; password=wYw5K*t$fgxD; database=newmod;");
  15. kapcsolat.Open();
  16. StreamReader sr = new StreamReader("Kocsituningok.txt");
  17. Console.WriteLine("A feltöltés folyamatban...");
  18. while(!sr.EndOfStream)
  19. {
  20. string sor = sr.ReadLine();
  21. string[] reszek = sor.Split(' ');
  22. for(int i = 1; i<=reszek.Count()-1; i++)
  23. {
  24. if (reszek[i] == "1000")
  25. {
  26. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Pro hátsószárny');", kapcsolat);
  27. parancs.ExecuteNonQuery();
  28. }
  29. if (reszek[i] == "1001")
  30. {
  31. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Győzelmi hátsószárny');", kapcsolat);
  32. parancs.ExecuteNonQuery();
  33. }
  34. if (reszek[i] == "1002")
  35. {
  36. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Gyorsulási hátsószárny');", kapcsolat);
  37. parancs.ExecuteNonQuery();
  38. }
  39. if (reszek[i] == "1003")
  40. {
  41. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Alpha Hátsószárny');", kapcsolat);
  42. parancs.ExecuteNonQuery();
  43. }
  44. if (reszek[i] == "1004")
  45. {
  46. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '2', '" + reszek[i] + "', 'Bajnok légbeömlős motorháztető');", kapcsolat);
  47. parancs.ExecuteNonQuery();
  48. }
  49. if (reszek[i] == "1005")
  50. {
  51. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '2', '" + reszek[i] + "', 'Különös légbeömlős motorháztető');", kapcsolat);
  52. parancs.ExecuteNonQuery();
  53. }
  54. if (reszek[i] == "1006")
  55. {
  56. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Tető légbeömlő');", kapcsolat);
  57. parancs.ExecuteNonQuery();
  58. }
  59. if (reszek[i] == "1007")
  60. {
  61. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobb oldali küszöb');", kapcsolat);
  62. parancs.ExecuteNonQuery();
  63. }
  64. if(reszek[i]=="1008")
  65. {
  66. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '10', '"+reszek[i]+"', '5x Nitro');", kapcsolat);
  67. parancs.ExecuteNonQuery();
  68. }
  69. if(reszek[i]=="1009")
  70. {
  71. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '10', '"+reszek[i]+"', '2x Nitro');", kapcsolat);
  72. parancs.ExecuteNonQuery();
  73. }
  74. if(reszek[i]=="1010")
  75. {
  76. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '10', '"+reszek[i]+"', '10x Nitro');", kapcsolat);
  77. parancs.ExecuteNonQuery();
  78. }
  79. if(reszek[i]=="1011")
  80. {
  81. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '2', '" + reszek[i] + "', 'Verseny légbeömlős motorháztető');", kapcsolat);
  82. parancs.ExecuteNonQuery();
  83. }
  84. if(reszek[i]=="1012")
  85. {
  86. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '2', '" + reszek[i] + "', 'Extra légbeömlős motorháztető');", kapcsolat);
  87. parancs.ExecuteNonQuery();
  88. }
  89. if(reszek[i]=="1013")
  90. {
  91. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '5', '"+reszek[i]+"', 'Kör alakú ködlámpák');", kapcsolat);
  92. parancs.ExecuteNonQuery();
  93. }
  94. if(reszek[i]=="1014")
  95. {
  96. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Bajnok hátsószárny');", kapcsolat);
  97. parancs.ExecuteNonQuery();
  98. }
  99. if(reszek[i]=="1015")
  100. {
  101. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Verseny hátsószárny');", kapcsolat);
  102. parancs.ExecuteNonQuery();
  103. }
  104. if(reszek[i]=="1016")
  105. {
  106. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Extra hátsószárny');", kapcsolat);
  107. parancs.ExecuteNonQuery();
  108. }
  109. if(reszek[i]=="1017")
  110. {
  111. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Bal oldali küszöb');", kapcsolat);
  112. parancs.ExecuteNonQuery();
  113. }
  114. if(reszek[i]=="1018")
  115. {
  116. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '6', '"+reszek[i]+"', 'Mély kipufogó');", kapcsolat);
  117. parancs.ExecuteNonQuery();
  118. }
  119. if(reszek[i]=="1019")
  120. {
  121. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '6', '"+reszek[i]+"', 'Iker kipufogó');", kapcsolat);
  122. parancs.ExecuteNonQuery();
  123. }
  124. if(reszek[i]=="1020")
  125. {
  126. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '6', '"+reszek[i]+"', 'Nagy kipufogó');", kapcsolat);
  127. parancs.ExecuteNonQuery();
  128. }
  129. if(reszek[i]=="1021")
  130. {
  131. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '6', '"+reszek[i]+"', 'Közepes kipufogó');", kapcsolat);
  132. parancs.ExecuteNonQuery();
  133. }
  134. if(reszek[i]=="1022")
  135. {
  136. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Kis kipufogó');", kapcsolat);
  137. parancs.ExecuteNonQuery();
  138. }
  139. if(reszek[i]=="1023")
  140. {
  141. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Különös hátsószárny');", kapcsolat);
  142. parancs.ExecuteNonQuery();
  143. }
  144. if(reszek[i]=="1024")
  145. {
  146. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '5', '"+reszek[i]+"', 'Négyzet alakú ködlámpa');", kapcsolat);
  147. parancs.ExecuteNonQuery();
  148. }
  149. if(reszek[i]=="1025")
  150. {
  151. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Offroad kerék');", kapcsolat);
  152. parancs.ExecuteNonQuery();
  153. }
  154. if(reszek[i]=="1026")
  155. {
  156. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Alien küszöb');", kapcsolat);
  157. parancs.ExecuteNonQuery();
  158. }
  159. if(reszek[i]=="1027")
  160. {
  161. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Alien küszöb');", kapcsolat);
  162. parancs.ExecuteNonQuery();
  163. }
  164. if(reszek[i]=="1028")
  165. {
  166. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Alien kipufogó');", kapcsolat);
  167. parancs.ExecuteNonQuery();
  168. }
  169. if(reszek[i]=="1029")
  170. {
  171. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'X-Flow kipufogó');", kapcsolat);
  172. parancs.ExecuteNonQuery();
  173. }
  174. if(reszek[i]=="1030")
  175. {
  176. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali X-Flow küszöb');", kapcsolat);
  177. parancs.ExecuteNonQuery();
  178. }
  179.  
  180. if(reszek[i]=="1031")
  181. {
  182. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali X-Flow küszöb');", kapcsolat);
  183. parancs.ExecuteNonQuery();
  184. }
  185. if(reszek[i]=="1032")
  186. {
  187. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Alien tető légbeömlő');", kapcsolat);
  188. parancs.ExecuteNonQuery();
  189. }
  190. if(reszek[i]=="1033")
  191. {
  192. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'X-Flow tető légbeömlő');", kapcsolat);
  193. parancs.ExecuteNonQuery();
  194. }
  195. if(reszek[i]=="1034")
  196. {
  197. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Alien kipufogó');", kapcsolat);
  198. parancs.ExecuteNonQuery();
  199. }
  200. if(reszek[i]=="1035")
  201. {
  202. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'X-Flow légbeömlő');", kapcsolat);
  203. parancs.ExecuteNonQuery();
  204. }
  205. if(reszek[i]=="1036")
  206. {
  207. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali alien küszöb');", kapcsolat);
  208. parancs.ExecuteNonQuery();
  209. }
  210. if(reszek[i]=="1037")
  211. {
  212. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'X-Flow kipufogó');", kapcsolat);
  213. parancs.ExecuteNonQuery();
  214. }
  215. if(reszek[i]=="1038")
  216. {
  217. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Alien légbeömlő');", kapcsolat);
  218. parancs.ExecuteNonQuery();
  219. }
  220. if(reszek[i]=="1039")
  221. {
  222. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali X-Flow küszöb');", kapcsolat);
  223. parancs.ExecuteNonQuery();
  224. }
  225. if(reszek[i]=="1040")
  226. {
  227. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Alien küszöb');", kapcsolat);
  228. parancs.ExecuteNonQuery();
  229. }
  230. if(reszek[i]=="1041")
  231. {
  232. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali X-Flow küszöb');", kapcsolat);
  233. parancs.ExecuteNonQuery();
  234. }
  235. if(reszek[i]=="1042")
  236. {
  237. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Chrome küszöb');", kapcsolat);
  238. parancs.ExecuteNonQuery();
  239. }
  240. if(reszek[i]=="1043")
  241. {
  242. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Slamin kipufogó');", kapcsolat);
  243. parancs.ExecuteNonQuery();
  244. }
  245. if(reszek[i]=="1044")
  246. {
  247. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Chrome kipufogó');", kapcsolat);
  248. parancs.ExecuteNonQuery();
  249. }
  250. if(reszek[i]=="1045")
  251. {
  252. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'X-Flow kipufogó');", kapcsolat);
  253. parancs.ExecuteNonQuery();
  254. }
  255. if(reszek[i]=="1046")
  256. {
  257. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Alien kipufogó');", kapcsolat);
  258. parancs.ExecuteNonQuery();
  259. }
  260. if(reszek[i]=="1047")
  261. {
  262. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Alien küszöb');", kapcsolat);
  263. parancs.ExecuteNonQuery();
  264. }
  265. if(reszek[i]=="1048")
  266. {
  267. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali X-Flow küszöb');", kapcsolat);
  268. parancs.ExecuteNonQuery();
  269. }
  270. if(reszek[i]=="1049")
  271. {
  272. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Alien hátsószárny');", kapcsolat);
  273. parancs.ExecuteNonQuery();
  274. }
  275. if(reszek[i]=="1050")
  276. {
  277. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'X-Flow hátsószárny');", kapcsolat);
  278. parancs.ExecuteNonQuery();
  279. }
  280. if(reszek[i]=="1051")
  281. {
  282. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Alien küszöb');", kapcsolat);
  283. parancs.ExecuteNonQuery();
  284. }
  285. if(reszek[i]=="1052")
  286. {
  287. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali X-Flow küszöb');", kapcsolat);
  288. parancs.ExecuteNonQuery();
  289. }
  290. if(reszek[i]=="1053")
  291. {
  292. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'X-Flow tető légbeömlő');", kapcsolat);
  293. parancs.ExecuteNonQuery();
  294. }
  295. if(reszek[i]=="1054")
  296. {
  297. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Alien légbeömlő');", kapcsolat);
  298. parancs.ExecuteNonQuery();
  299. }
  300. if(reszek[i]=="1055")
  301. {
  302. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Alien tető');", kapcsolat);
  303. parancs.ExecuteNonQuery();
  304. }
  305. if(reszek[i]=="1056")
  306. {
  307. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Alien küszöb');", kapcsolat);
  308. parancs.ExecuteNonQuery();
  309. }
  310. if(reszek[i]=="1057")
  311. {
  312. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali X-Flow küszöb');", kapcsolat);
  313. parancs.ExecuteNonQuery();
  314. }
  315. if(reszek[i]=="1058")
  316. {
  317. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Alien hátsószárny');", kapcsolat);
  318. parancs.ExecuteNonQuery();
  319. }
  320. if(reszek[i]=="1059")
  321. {
  322. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'X-Flow kipufogó');", kapcsolat);
  323. parancs.ExecuteNonQuery();
  324. }
  325. if(reszek[i]=="1060")
  326. {
  327. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'X-Flow hátsószárny');", kapcsolat);
  328. parancs.ExecuteNonQuery();
  329. }
  330. if(reszek[i]=="1061")
  331. {
  332. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'X-Flow tető');", kapcsolat);
  333. parancs.ExecuteNonQuery();
  334. }
  335. if(reszek[i]=="1062")
  336. {
  337. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Alien küszöb');", kapcsolat);
  338. parancs.ExecuteNonQuery();
  339. }
  340. if(reszek[i]=="1063")
  341. {
  342. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali X-Flow küszöb');", kapcsolat);
  343. parancs.ExecuteNonQuery();
  344. }
  345. if(reszek[i]=="1064")
  346. {
  347. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Alien kipufogó');", kapcsolat);
  348. parancs.ExecuteNonQuery();
  349. }
  350. if(reszek[i]=="1065")
  351. {
  352. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Alien kipufogó');", kapcsolat);
  353. parancs.ExecuteNonQuery();
  354. }
  355. if(reszek[i]=="1066")
  356. {
  357. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'X-Flow kipufogó');", kapcsolat);
  358. parancs.ExecuteNonQuery();
  359. }
  360. if(reszek[i]=="1067")
  361. {
  362. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Alien tető');", kapcsolat);
  363. parancs.ExecuteNonQuery();
  364. }
  365. if(reszek[i]=="1068")
  366. {
  367. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'X-Flow tető');", kapcsolat);
  368. parancs.ExecuteNonQuery();
  369. }
  370. if(reszek[i]=="1069")
  371. {
  372. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Alien küszöb');", kapcsolat);
  373. parancs.ExecuteNonQuery();
  374. }
  375. if(reszek[i]=="1070")
  376. {
  377. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali X-Flow küszöb');", kapcsolat);
  378. parancs.ExecuteNonQuery();
  379. }
  380. if(reszek[i]=="1071")
  381. {
  382. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Alien küszöb');", kapcsolat);
  383. parancs.ExecuteNonQuery();
  384. }
  385. if(reszek[i]=="1072")
  386. {
  387. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali X-Flow küszöb');", kapcsolat);
  388. parancs.ExecuteNonQuery();
  389. }
  390.  
  391. if(reszek[i]=="1073")
  392. {
  393. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Shadow felni');", kapcsolat);
  394. parancs.ExecuteNonQuery();
  395. }
  396. if(reszek[i]=="1074")
  397. {
  398. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Mega felni');", kapcsolat);
  399. parancs.ExecuteNonQuery();
  400. }
  401. if(reszek[i]=="1075")
  402. {
  403. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Rimshine felni');", kapcsolat);
  404. parancs.ExecuteNonQuery();
  405. }
  406. if(reszek[i]=="1076")
  407. {
  408. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Wires felni');", kapcsolat);
  409. parancs.ExecuteNonQuery();
  410. }
  411. if(reszek[i]=="1077")
  412. {
  413. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Classic felni');", kapcsolat);
  414. parancs.ExecuteNonQuery();
  415. }
  416. if(reszek[i]=="1078")
  417. {
  418. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Twist felni');", kapcsolat);
  419. parancs.ExecuteNonQuery();
  420. }
  421. if(reszek[i]=="1079")
  422. {
  423. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Cutter felni');", kapcsolat);
  424. parancs.ExecuteNonQuery();
  425. }
  426. if(reszek[i]=="1080")
  427. {
  428. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Switch felni');", kapcsolat);
  429. parancs.ExecuteNonQuery();
  430. }
  431. if(reszek[i]=="1081")
  432. {
  433. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Grove felni');", kapcsolat);
  434. parancs.ExecuteNonQuery();
  435. }
  436. if(reszek[i]=="1082")
  437. {
  438. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Import felni');", kapcsolat);
  439. parancs.ExecuteNonQuery();
  440. }
  441. if(reszek[i]=="1083")
  442. {
  443. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Dollar felni');", kapcsolat);
  444. parancs.ExecuteNonQuery();
  445. }
  446. if(reszek[i]=="1084")
  447. {
  448. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Trance felni');", kapcsolat);
  449. parancs.ExecuteNonQuery();
  450. }
  451. if(reszek[i]=="1085")
  452. {
  453. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('"+reszek[0]+"', '7', '"+reszek[i]+"', 'Atomic felni');", kapcsolat);
  454. parancs.ExecuteNonQuery();
  455. }
  456. if(reszek[i]=="1086")
  457. {
  458. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Stereo hangszóró');", kapcsolat);
  459. parancs.ExecuteNonQuery();
  460. }
  461. if(reszek[i]=="1087")
  462. {
  463. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Hidraulika');", kapcsolat);
  464. parancs.ExecuteNonQuery();
  465. }
  466. if(reszek[i]=="1088")
  467. {
  468. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Alien tető');", kapcsolat);
  469. parancs.ExecuteNonQuery();
  470. }
  471. if(reszek[i]=="1089")
  472. {
  473. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'X-Flow kipufogó');", kapcsolat);
  474. parancs.ExecuteNonQuery();
  475. }
  476. if(reszek[i]=="1090")
  477. {
  478. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Alien küszöb');", kapcsolat);
  479. parancs.ExecuteNonQuery();
  480. }
  481. if(reszek[i]=="1091")
  482. {
  483. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'X-Flow tető');", kapcsolat);
  484. parancs.ExecuteNonQuery();
  485. }
  486. if(reszek[i]=="1092")
  487. {
  488. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Alien kipufogó');", kapcsolat);
  489. parancs.ExecuteNonQuery();
  490. }
  491. if(reszek[i]=="1093")
  492. {
  493. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali X-Flow küszöb');", kapcsolat);
  494. parancs.ExecuteNonQuery();
  495. }
  496. if(reszek[i]=="1094")
  497. {
  498. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Alien küszöb');", kapcsolat);
  499. parancs.ExecuteNonQuery();
  500. }
  501. if(reszek[i]=="1095")
  502. {
  503. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali X-Flow küszöb');", kapcsolat);
  504. parancs.ExecuteNonQuery();
  505. }
  506. if(reszek[i]=="1096")
  507. {
  508. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '7', '" + reszek[i] + "', 'Ahab felni');", kapcsolat);
  509. parancs.ExecuteNonQuery();
  510. }
  511. if(reszek[i]=="1097")
  512. {
  513. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '7', '" + reszek[i] + "', 'Virtual felni');", kapcsolat);
  514. parancs.ExecuteNonQuery();
  515. }
  516. if(reszek[i]=="1098")
  517. {
  518. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '7', '" + reszek[i] + "', 'Access felni');", kapcsolat);
  519. parancs.ExecuteNonQuery();
  520. }
  521. if(reszek[i]=="1099")
  522. {
  523. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Chrome küszöb');", kapcsolat);
  524. parancs.ExecuteNonQuery();
  525. }
  526. if(reszek[i]=="1100")
  527. {
  528. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Chrome Grill Bullbar');", kapcsolat);
  529. parancs.ExecuteNonQuery();
  530. }
  531. if(reszek[i]=="1101")
  532. {
  533. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Chrome Flames küszöb');", kapcsolat);
  534. parancs.ExecuteNonQuery();
  535. }
  536. if(reszek[i]=="1102")
  537. {
  538. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Chrome Strip küszöb');", kapcsolat);
  539. parancs.ExecuteNonQuery();
  540. }
  541. if(reszek[i]=="1103")
  542. {
  543. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Covertible tető');", kapcsolat);
  544. parancs.ExecuteNonQuery();
  545. }
  546. if(reszek[i]=="1104")
  547. {
  548. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Chrome kipufogó');", kapcsolat);
  549. parancs.ExecuteNonQuery();
  550. }
  551. if(reszek[i]=="1105")
  552. {
  553. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Slamin kipufogó');", kapcsolat);
  554. parancs.ExecuteNonQuery();
  555. }
  556. if(reszek[i]=="1106")
  557. {
  558. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Chrome Arches küszöb');", kapcsolat);
  559. parancs.ExecuteNonQuery();
  560. }
  561. if(reszek[i]=="1107")
  562. {
  563. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Chrome Strip küszöb');", kapcsolat);
  564. parancs.ExecuteNonQuery();
  565. }
  566. if(reszek[i]=="1108")
  567. {
  568. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Chrome Strip küszöb');", kapcsolat);
  569. parancs.ExecuteNonQuery();
  570. }
  571. if(reszek[i]=="1109")
  572. {
  573. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Chrome Rear Bullbars');", kapcsolat);
  574. parancs.ExecuteNonQuery();
  575. }
  576. if(reszek[i]=="1110")
  577. {
  578. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Slamin Rear Bullbars');", kapcsolat);
  579. parancs.ExecuteNonQuery();
  580. }
  581. if(reszek[i]=="1111")
  582. {
  583. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Front Sign?');", kapcsolat);
  584. parancs.ExecuteNonQuery();
  585. }
  586. if(reszek[i]=="1112")
  587. {
  588. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Front Sign?');", kapcsolat);
  589. parancs.ExecuteNonQuery();
  590. }
  591. if(reszek[i]=="1113")
  592. {
  593. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Chrome kipufogó');", kapcsolat);
  594. parancs.ExecuteNonQuery();
  595. }
  596. if(reszek[i]=="1114")
  597. {
  598. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Slamin kipufogó');", kapcsolat);
  599. parancs.ExecuteNonQuery();
  600. }
  601. if(reszek[i]=="1115")
  602. {
  603. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Chrome Front Bullbars');", kapcsolat);
  604. parancs.ExecuteNonQuery();
  605. }
  606. if(reszek[i]=="1116")
  607. {
  608. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Slamin Front Bullbars');", kapcsolat);
  609. parancs.ExecuteNonQuery();
  610. }
  611. if(reszek[i]=="1117")
  612. {
  613. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Chrome első lökhárító');", kapcsolat);
  614. parancs.ExecuteNonQuery();
  615. }
  616. if(reszek[i]=="1118")
  617. {
  618. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Chrome Trim küszöb');", kapcsolat);
  619. parancs.ExecuteNonQuery();
  620. }
  621. if(reszek[i]=="1119")
  622. {
  623. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Wheelcovers küszöb');", kapcsolat);
  624. parancs.ExecuteNonQuery();
  625. }
  626. if(reszek[i]=="1120")
  627. {
  628. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Chrome Trim küszöb');", kapcsolat);
  629. parancs.ExecuteNonQuery();
  630. }
  631. if(reszek[i]=="1121")
  632. {
  633. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Wheelcovers küszöb');", kapcsolat);
  634. parancs.ExecuteNonQuery();
  635. }
  636. if(reszek[i]=="1122")
  637. {
  638. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Chrome Flames küszöb');", kapcsolat);
  639. parancs.ExecuteNonQuery();
  640. }
  641. if(reszek[i]=="1123")
  642. {
  643. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Chrome Bullbars');", kapcsolat);
  644. parancs.ExecuteNonQuery();
  645. }
  646. if(reszek[i]=="1124")
  647. {
  648. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Chrome Arches küszöb');", kapcsolat);
  649. parancs.ExecuteNonQuery();
  650. }
  651. if(reszek[i]=="1125")
  652. {
  653. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Chrome Bullbars');", kapcsolat);
  654. parancs.ExecuteNonQuery();
  655. }
  656. if(reszek[i]=="1126")
  657. {
  658. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Chrome kipufogó');", kapcsolat);
  659. parancs.ExecuteNonQuery();
  660. }
  661. if(reszek[i]=="1127")
  662. {
  663. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Slamin kipufogó');", kapcsolat);
  664. parancs.ExecuteNonQuery();
  665. }
  666. if(reszek[i]=="1128")
  667. {
  668. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Keménytető');", kapcsolat);
  669. parancs.ExecuteNonQuery();
  670. }
  671. if(reszek[i]=="1129")
  672. {
  673. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Chrome kipufogó');", kapcsolat);
  674. parancs.ExecuteNonQuery();
  675. }
  676. if(reszek[i]=="1130")
  677. {
  678. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Keménytető');", kapcsolat);
  679. parancs.ExecuteNonQuery();
  680. }
  681. if(reszek[i]=="1131")
  682. {
  683. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '3', '" + reszek[i] + "', 'Soft(lágy) tető');", kapcsolat);
  684. parancs.ExecuteNonQuery();
  685. }
  686. if(reszek[i]=="1132")
  687. {
  688. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Slamin kipufogó');", kapcsolat);
  689. parancs.ExecuteNonQuery();
  690. }
  691. if(reszek[i]=="1133")
  692. {
  693. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Chrome Strip küszöb');", kapcsolat);
  694. parancs.ExecuteNonQuery();
  695. }
  696. if(reszek[i]=="1134")
  697. {
  698. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Jobboldali Chrome Strip küszöb');", kapcsolat);
  699. parancs.ExecuteNonQuery();
  700. }
  701. if(reszek[i]=="1135")
  702. {
  703. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Slamin kipufogó');", kapcsolat);
  704. parancs.ExecuteNonQuery();
  705. }
  706. if(reszek[i]=="1136")
  707. {
  708. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '6', '" + reszek[i] + "', 'Chrome kipufogó');", kapcsolat);
  709. parancs.ExecuteNonQuery();
  710. }
  711. if(reszek[i]=="1137")
  712. {
  713. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '4', '" + reszek[i] + "', 'Baloldali Chrome Strip küszöb');", kapcsolat);
  714. parancs.ExecuteNonQuery();
  715. }
  716. if(reszek[i]=="1138")
  717. {
  718. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Alien hátsószárny');", kapcsolat);
  719. parancs.ExecuteNonQuery();
  720. }
  721. if(reszek[i]=="1139")
  722. {
  723. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'X-Flow hátsószárny');", kapcsolat);
  724. parancs.ExecuteNonQuery();
  725. }
  726. if(reszek[i]=="1140")
  727. {
  728. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'X-Flow hátsó lökhárító');", kapcsolat);
  729. parancs.ExecuteNonQuery();
  730. }
  731. if(reszek[i]=="1141")
  732. {
  733. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Alien hátsó lökhárító');", kapcsolat);
  734. parancs.ExecuteNonQuery();
  735. }
  736. if(reszek[i]=="1142")
  737. {
  738. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Baloldali Oval díszítőelem');", kapcsolat);
  739. parancs.ExecuteNonQuery();
  740. }
  741. if(reszek[i]=="1143")
  742. {
  743. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Jobboldali Oval díszítőelem');", kapcsolat);
  744. parancs.ExecuteNonQuery();
  745. }
  746. if(reszek[i]=="1144")
  747. {
  748. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Baloldali Square díszítőelem');", kapcsolat);
  749. parancs.ExecuteNonQuery();
  750. }
  751. if(reszek[i]=="1145")
  752. {
  753. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '10', '" + reszek[i] + "', 'Jobboldali Square díszítőelem');", kapcsolat);
  754. parancs.ExecuteNonQuery();
  755. }
  756.  
  757. if(reszek[i]=="1146")
  758. {
  759. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'X-Flow hátsószárny');", kapcsolat);
  760. parancs.ExecuteNonQuery();
  761. }
  762.  
  763. if(reszek[i]=="1147")
  764. {
  765. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '0', '" + reszek[i] + "', 'Alien hátsószárny');", kapcsolat);
  766. parancs.ExecuteNonQuery();
  767. }
  768.  
  769. if(reszek[i]=="1148")
  770. {
  771. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'X-Flow hátsó lökhárító');", kapcsolat);
  772. parancs.ExecuteNonQuery();
  773. }
  774.  
  775. if(reszek[i]=="1149")
  776. {
  777. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Alien hátsó lökhárító');", kapcsolat);
  778. parancs.ExecuteNonQuery();
  779. }
  780.  
  781. if(reszek[i]=="1150")
  782. {
  783. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Alien hátsó lökhárító');", kapcsolat);
  784. parancs.ExecuteNonQuery();
  785. }
  786.  
  787. if (reszek[i] == "1151")
  788. {
  789. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'X-Flow hátsó lökhárító');", kapcsolat);
  790. parancs.ExecuteNonQuery();
  791. }
  792.  
  793. if (reszek[i] == "1152")
  794. {
  795. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'X-Flow első lökhárító');", kapcsolat);
  796. parancs.ExecuteNonQuery();
  797. }
  798.  
  799. if (reszek[i] == "1153")
  800. {
  801. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Alien első lökhárító');", kapcsolat);
  802. parancs.ExecuteNonQuery();
  803. }
  804.  
  805. if (reszek[i] == "1154")
  806. {
  807. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Alien hátsó lökhárító');", kapcsolat);
  808. parancs.ExecuteNonQuery();
  809. }
  810.  
  811. if (reszek[i] == "1155")
  812. {
  813. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Alien első lökhárító');", kapcsolat);
  814. parancs.ExecuteNonQuery();
  815. }
  816.  
  817. if (reszek[i] == "1156")
  818. {
  819. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'X-Flow hátsó lökhárító');", kapcsolat);
  820. parancs.ExecuteNonQuery();
  821. }
  822.  
  823. if (reszek[i] == "1157")
  824. {
  825. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'X-Flow első lökhárító');", kapcsolat);
  826. parancs.ExecuteNonQuery();
  827. }
  828.  
  829. if (reszek[i] == "1158")
  830. {
  831. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'X-Flow hátsószárny');", kapcsolat);
  832. parancs.ExecuteNonQuery();
  833. }
  834.  
  835. if (reszek[i] == "1159")
  836. {
  837. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Alien hátsó lökhárító');", kapcsolat);
  838. parancs.ExecuteNonQuery();
  839. }
  840.  
  841. if (reszek[i] == "1160")
  842. {
  843. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Alien első lökhárító');", kapcsolat);
  844. parancs.ExecuteNonQuery();
  845. }
  846.  
  847. if (reszek[i] == "1161")
  848. {
  849. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'X-Flow hátsó lökhárító');", kapcsolat);
  850. parancs.ExecuteNonQuery();
  851. }
  852.  
  853. if (reszek[i] == "1162")
  854. {
  855. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Alien hátsószárny');", kapcsolat);
  856. parancs.ExecuteNonQuery();
  857. }
  858.  
  859. if (reszek[i] == "1163")
  860. {
  861. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'X-Flow hátsószárny');", kapcsolat);
  862. parancs.ExecuteNonQuery();
  863. }
  864.  
  865. if (reszek[i] == "1164")
  866. {
  867. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '1', '" + reszek[i] + "', 'Alien hátsószárny');", kapcsolat);
  868. parancs.ExecuteNonQuery();
  869. }
  870.  
  871. if (reszek[i] == "1165")
  872. {
  873. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'X-Flow első lökhárító');", kapcsolat);
  874. parancs.ExecuteNonQuery();
  875. }
  876.  
  877. if (reszek[i] == "1166")
  878. {
  879. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Alien első lökhárító');", kapcsolat);
  880. parancs.ExecuteNonQuery();
  881. }
  882.  
  883. if (reszek[i] == "1167")
  884. {
  885. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'X-Flow hátsó lökhárító');", kapcsolat);
  886. parancs.ExecuteNonQuery();
  887. }
  888.  
  889. if (reszek[i] == "1168")
  890. {
  891. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Alien hátsó lökhárító');", kapcsolat);
  892. parancs.ExecuteNonQuery();
  893. }
  894.  
  895. if (reszek[i] == "1169")
  896. {
  897. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Alien első lökhárító');", kapcsolat);
  898. parancs.ExecuteNonQuery();
  899. }
  900.  
  901. if (reszek[i] == "1170")
  902. {
  903. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'X-Flow első lökhárító');", kapcsolat);
  904. parancs.ExecuteNonQuery();
  905. }
  906.  
  907. if (reszek[i] == "1171")
  908. {
  909. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Alien első lökhárító');", kapcsolat);
  910. parancs.ExecuteNonQuery();
  911. }
  912.  
  913. if (reszek[i] == "1172")
  914. {
  915. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'X-Flow első lökhárító');", kapcsolat);
  916. parancs.ExecuteNonQuery();
  917. }
  918.  
  919. if (reszek[i] == "1173")
  920. {
  921. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'X-Flow első lökhárító');", kapcsolat);
  922. parancs.ExecuteNonQuery();
  923. }
  924.  
  925. if (reszek[i] == "1174")
  926. {
  927. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Chrome első lökhárító');", kapcsolat);
  928. parancs.ExecuteNonQuery();
  929. }
  930.  
  931. if (reszek[i] == "1175")
  932. {
  933. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Slamin első lökhárító');", kapcsolat);
  934. parancs.ExecuteNonQuery();
  935. }
  936.  
  937. if (reszek[i] == "1176")
  938. {
  939. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Chrome hátsó lökhárító');", kapcsolat);
  940. parancs.ExecuteNonQuery();
  941. }
  942.  
  943. if (reszek[i] == "1177")
  944. {
  945. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Slamin hátsó lökhárító');", kapcsolat);
  946. parancs.ExecuteNonQuery();
  947. }
  948.  
  949. if (reszek[i] == "1178")
  950. {
  951. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Slamin hátsó lökhárító');", kapcsolat);
  952. parancs.ExecuteNonQuery();
  953. }
  954.  
  955. if (reszek[i] == "1179")
  956. {
  957. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Chrome első lökhárító');", kapcsolat);
  958. parancs.ExecuteNonQuery();
  959. }
  960.  
  961. if (reszek[i] == "1180")
  962. {
  963. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Chrome hátsó lökhárító');", kapcsolat);
  964. parancs.ExecuteNonQuery();
  965. }
  966.  
  967. if (reszek[i] == "1181")
  968. {
  969. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Slamin első lökhárító');", kapcsolat);
  970. parancs.ExecuteNonQuery();
  971. }
  972.  
  973. if (reszek[i] == "1182")
  974. {
  975. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Chrome első lökhárító');", kapcsolat);
  976. parancs.ExecuteNonQuery();
  977. }
  978.  
  979. if (reszek[i] == "1183")
  980. {
  981. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Slamin hátsó lökhárító');", kapcsolat);
  982. parancs.ExecuteNonQuery();
  983. }
  984.  
  985. if (reszek[i] == "1184")
  986. {
  987. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Chrome hátsó lökhárító');", kapcsolat);
  988. parancs.ExecuteNonQuery();
  989. }
  990.  
  991. if (reszek[i] == "1185")
  992. {
  993. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Slamin első lökhárító');", kapcsolat);
  994. parancs.ExecuteNonQuery();
  995. }
  996. if (reszek[i] == "1186")
  997. {
  998. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Slamin hátsó lökhárító');", kapcsolat);
  999. parancs.ExecuteNonQuery();
  1000. }
  1001. if (reszek[i] == "1187")
  1002. {
  1003. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Chrome hátsó lökhárító');", kapcsolat);
  1004. parancs.ExecuteNonQuery();
  1005. }
  1006. if (reszek[i] == "1188")
  1007. {
  1008. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Slamin első lökhárító');", kapcsolat);
  1009. parancs.ExecuteNonQuery();
  1010. }
  1011. if (reszek[i] == "1189")
  1012. {
  1013. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Chrome első lökhárító');", kapcsolat);
  1014. parancs.ExecuteNonQuery();
  1015. }
  1016. if (reszek[i] == "1190")
  1017. {
  1018. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Slamin első lökhárító');", kapcsolat);
  1019. parancs.ExecuteNonQuery();
  1020. }
  1021. if (reszek[i] == "1191")
  1022. {
  1023. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '8', '" + reszek[i] + "', 'Chrome első lökhárító');", kapcsolat);
  1024. parancs.ExecuteNonQuery();
  1025. }
  1026. if (reszek[i] == "1192")
  1027. {
  1028. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Chrome hátsó lökhárító');", kapcsolat);
  1029. parancs.ExecuteNonQuery();
  1030. }
  1031. if (reszek[i] == "1193")
  1032. {
  1033. MySqlCommand parancs = new MySqlCommand("INSERT INTO tuningok (tModelID, tTipus, tKomponent, tNev) VALUES ('" + reszek[0] + "', '9', '" + reszek[i] + "', 'Slamin hátsó lökhárító');", kapcsolat);
  1034. parancs.ExecuteNonQuery();
  1035. }
  1036. }
  1037. }
  1038. Console.WriteLine("Kész!");
  1039. Console.ReadKey();
  1040. kapcsolat.Close();
  1041. }
  1042. }
  1043. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement