<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[32 bit programm auf 64 bit]]></title><description><![CDATA[<p>Guten Morgen an alle<br />
ich habe ein kleines Problem , ich habe ein consolen programm erstellelt,<br />
das programm ist ein 32 bit programm ein kumpel von mir hat Windows 7 64 bit,<br />
das programm startet auch nur wenn er sich einloggt und die mysql verbindug aufbaut sagt er client.exe Funktioniert nicht mehr.</p>
<p>Hoffe ihr könnt mir helfen</p>
<p>Gruß Rene</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/272033/32-bit-programm-auf-64-bit</link><generator>RSS for Node</generator><lastBuildDate>Sat, 29 Aug 2026 03:32:21 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/272033.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 09 Aug 2010 08:21:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to 32 bit programm auf 64 bit on Mon, 09 Aug 2010 08:21:55 GMT]]></title><description><![CDATA[<p>Guten Morgen an alle<br />
ich habe ein kleines Problem , ich habe ein consolen programm erstellelt,<br />
das programm ist ein 32 bit programm ein kumpel von mir hat Windows 7 64 bit,<br />
das programm startet auch nur wenn er sich einloggt und die mysql verbindug aufbaut sagt er client.exe Funktioniert nicht mehr.</p>
<p>Hoffe ihr könnt mir helfen</p>
<p>Gruß Rene</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1937840</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1937840</guid><dc:creator><![CDATA[Rene.p.93]]></dc:creator><pubDate>Mon, 09 Aug 2010 08:21:55 GMT</pubDate></item><item><title><![CDATA[Reply to 32 bit programm auf 64 bit on Mon, 09 Aug 2010 08:27:28 GMT]]></title><description><![CDATA[<p>Rene,jedtke schrieb:</p>
<blockquote>
<p>Hoffe ihr könnt mir helfen</p>
</blockquote>
<p>Ohne Hinweise auf die Ursache geht das ja auch besonders gut.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1937841</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1937841</guid><dc:creator><![CDATA[TyRoXx]]></dc:creator><pubDate>Mon, 09 Aug 2010 08:27:28 GMT</pubDate></item><item><title><![CDATA[Reply to 32 bit programm auf 64 bit on Mon, 09 Aug 2010 08:33:27 GMT]]></title><description><![CDATA[<p>Ich poste mal ab wo der fehler kommt.</p>
<pre><code class="language-cli">string MySqL1;
		   string MySqL2;
		   string log_check;
		   string admin;
////////////////////////////////////////////////////////////
//HIER KOMMT DER FEHLER
////////////////////////////////////////////////////////////
		   MySqL1 = &quot;SELECT pass from kunden WHERE name = '&quot; + log_name + &quot;'&quot;;
		   MySqL2 = mysql_query(mysql,MySqL1.c_str());

		   MYSQL_RES *res; 
		   MYSQL_FIELD *field; 
		   MYSQL_ROW row; 

		   res = mysql_store_result(mysql); 
		   field = mysql_fetch_field(res); 

		   while(row = mysql_fetch_row(res)) 
		   { 
			  int nCols = mysql_num_fields(res); 

			  for(int i=0; i&lt;nCols; ++i) 

			  log_check = row[i];
			  ofstream data(&quot;name.txt&quot;);
			  data &lt;&lt; log_name;
		   }

		   if(log_check == log_pass)
		   {
			   if(admin == &quot;1&quot;)
			   {
			   }
			   else
			   {
				   menu();
			   }

		   }
		   else
		   {
			   MessageBoxA(NULL,&quot;Password oder User Falsch&quot;,&quot;FEHLER&quot;,MB_ICONERROR);
		   }
</code></pre>
<p>PS ich weiss die mysql abfage is unsicher ist aber voll kommen ok für das was ich damit vorhabe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1937845</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1937845</guid><dc:creator><![CDATA[Rene.p.93]]></dc:creator><pubDate>Mon, 09 Aug 2010 08:33:27 GMT</pubDate></item><item><title><![CDATA[Reply to 32 bit programm auf 64 bit on Mon, 09 Aug 2010 08:44:08 GMT]]></title><description><![CDATA[<p>Du überprüfst nicht, ob <code>mysql_store_result</code>  <code>0</code> zurückgibt.<br />
<code>mysql</code> könnte <code>0</code> sein, das kann man aber so nicht erkennen.<br />
Du weist <code>string MySqL2</code> einen <code>int</code> zu (was nicht das Problem sein dürfte).<br />
Zeile 16 ist überflüssig.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1937846</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1937846</guid><dc:creator><![CDATA[TyRoXx]]></dc:creator><pubDate>Mon, 09 Aug 2010 08:44:08 GMT</pubDate></item></channel></rss>