<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Yupの開発日記</title>
	<atom:link href="http://plavs.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://plavs.com</link>
	<description>ソフトウェア開発 + 電子回路</description>
	<lastBuildDate>Tue, 29 Jun 2010 16:25:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>japan vs paraguay</title>
		<link>http://plavs.com/2010/06/30/japan-vs-paraguay/</link>
		<comments>http://plavs.com/2010/06/30/japan-vs-paraguay/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 16:25:54 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[Prog]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=349</guid>
		<description><![CDATA[i am watching fifa world cup 2010 south africa on tv Frank De Bleeckere &#8216;s judge is somehow wrong&#8230; what&#8230; what&#8230;]]></description>
			<content:encoded><![CDATA[				<p>i am watching fifa world cup 2010 south africa on tv<br />
				Frank De Bleeckere &#8216;s judge is somehow wrong&#8230; what&#8230; what&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/06/30/japan-vs-paraguay/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>string s = &#8220;&#8221;+chでうまく代入されない</title>
		<link>http://plavs.com/2010/06/20/string-s-ch%e3%81%a7%e3%81%86%e3%81%be%e3%81%8f%e4%bb%a3%e5%85%a5%e3%81%95%e3%82%8c%e3%81%aa%e3%81%84/</link>
		<comments>http://plavs.com/2010/06/20/string-s-ch%e3%81%a7%e3%81%86%e3%81%be%e3%81%8f%e4%bb%a3%e5%85%a5%e3%81%95%e3%82%8c%e3%81%aa%e3%81%84/#comments</comments>
		<pubDate>Sun, 20 Jun 2010 13:47:24 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=346</guid>
		<description><![CDATA[char ch='A'; string s = &#34;&#34;+ch; cout &#60;&#60; s &#60;&#60; endl; これ実行すると，Aが出力されない．なーんでだ]]></description>
			<content:encoded><![CDATA[				<pre class="brush: cpp;">
char ch='A';
string s = &quot;&quot;+ch;
cout &lt;&lt; s &lt;&lt; endl;
</pre>
				<p>これ実行すると，Aが出力されない．なーんでだ</p>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/06/20/string-s-ch%e3%81%a7%e3%81%86%e3%81%be%e3%81%8f%e4%bb%a3%e5%85%a5%e3%81%95%e3%82%8c%e3%81%aa%e3%81%84/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2005 Problem D.Traveling by Stagecoach</title>
		<link>http://plavs.com/2010/06/19/2005-problem-d-traveling-by-stagecoach/</link>
		<comments>http://plavs.com/2010/06/19/2005-problem-d-traveling-by-stagecoach/#comments</comments>
		<pubDate>Sat, 19 Jun 2010 01:21:08 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[ICPC]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=337</guid>
		<description><![CDATA[残っている馬券と場所でdijkstra #include &#60;iostream&#62; #include &#60;queue&#62; #include &#60;string.h&#62; using namespace std; #define MAXN (10+1) #define MAXM (30+1) #define DM (1024+1) // 2^10 + 1 #define INF (1&#60;&#60;20) int N,M,P,A,B; int T[MAXN]; int F[MAXM][MAXM]; double D[MAXM][DM]; bool visited[MAXM][DM]; class State { public: int p,use; // point, use, cost double c; State(int p,int use,double c) : p(p),use(use),c(c) {} [...]]]></description>
			<content:encoded><![CDATA[				<p>残っている馬券と場所でdijkstra</p>
				<pre class="brush: cpp;">
#include &lt;iostream&gt;
#include &lt;queue&gt;
#include &lt;string.h&gt;
using namespace std;
#define MAXN (10+1)
#define MAXM (30+1)
#define DM (1024+1) // 2^10 + 1
#define INF (1&lt;&lt;20)
int N,M,P,A,B;
int T[MAXN];
int F[MAXM][MAXM];
double D[MAXM][DM];
bool visited[MAXM][DM];

class State {
public:
  int p,use; // point, use, cost
  double c;
  State(int p,int use,double c) : p(p),use(use),c(c) {}
  bool operator &lt; (const State &amp;s) const {
    return c &gt; s.c;
  }
};

double solve(int all) {
  memset(visited,0,sizeof(visited));
  for(int i=1;i&lt;=M;i++) {
    for(int j=0;j&lt;DM;j++) {
      visited[i][j] = false;
      D[i][j] = INF;
    }
  }
  priority_queue&lt;State&gt; PQ;
  PQ.push(State(A,0,0));
  D[A][0] = 0;
  while(!PQ.empty()) {
    State u = PQ.top(); PQ.pop();
    int p = u.p; int use=u.use;
    double c = u.c;
    if(p == B) {
      return D[p][use];
    }
    if(visited[p][use]) continue;
    if((use &amp; all) == all) continue; // have no ticket
    visited[p][use] = true;

    for(int i=1;i&lt;=M;i++) { // pos
      if(i==p) continue;
      if(F[p][i] &gt;= INF) continue;
      for(int j=1;j&lt;=N;j++) { // ticket
	int use2;
	if((use2=(use|(1&lt;&lt;j))) == use) continue;
	double cost = D[p][use] + (double)F[p][i]/T[j];
	if(cost &lt; D[i][use2]) {
	  D[i][use2] = cost;
	  //printf(&quot;cost=%lf\n&quot;,cost);
	  PQ.push(State(i,use2,cost));
	}
      }
    }   

  }
  return -1;
}

main() {
  while(cin&gt;&gt;N&gt;&gt;M&gt;&gt;P&gt;&gt;A&gt;&gt;B,N) {
    for(int i=0;i&lt;MAXM;i++) {
      for(int j=0;j&lt;MAXM;j++) {
	F[i][j] = INF;
      }
    }
    for(int i=1;i&lt;=N;i++) cin&gt;&gt;T[i];
    for(int i=1;i&lt;=P;i++) {
      int x,y,z; cin&gt;&gt;x&gt;&gt;y&gt;&gt;z;
      F[x][y]=F[y][x] = z;
    }
    //puts(&quot;calc all...&quot;);
    int all=0;
    for(int i=0;i&lt;N;i++) all = (all&lt;&lt;1) + 1;
    all &lt;&lt;= 1; // 1-origin
    //printf(&quot;solving...\n&quot;);
    double ans = solve(all);
    if(ans==-1) puts(&quot;Impossible&quot;);
    else cout &lt;&lt; ans &lt;&lt; endl;
  }
}
</pre>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/06/19/2005-problem-d-traveling-by-stagecoach/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>(HHKB Pro) Happy Hacking Keyboard Professional 購入</title>
		<link>http://plavs.com/2010/06/17/hhkb-pro-happy-hacking-keyboard-professional-%e8%b3%bc%e5%85%a5/</link>
		<comments>http://plavs.com/2010/06/17/hhkb-pro-happy-hacking-keyboard-professional-%e8%b3%bc%e5%85%a5/#comments</comments>
		<pubDate>Thu, 17 Jun 2010 14:50:06 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[Prog]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=334</guid>
		<description><![CDATA[PFU Happy Hacking Keyboard Professional 購入しました．Pro2 ではないでーす 使用感: Delete KeyとEnterキーの位置がJISキーボードと異なるので戸惑った． やはり高級キーボードというだけあって，スムースに打てるし，疲労を感じさせない．]]></description>
			<content:encoded><![CDATA[				<p><ins datetime="2010-06-17T14:45:34+00:00">PFU Happy Hacking Keyboard Professional 購入しました．Pro2 ではないでーす</ins></p>
				<p><ins datetime="2010-06-17T14:45:34+00:00"><a href="http://plavs.com/wp-content/uploads/DVC00013.jpg"><img class="alignnone size-medium wp-image-335" title="HHKB Pro" src="http://plavs.com/wp-content/uploads/DVC00013-300x225.jpg" alt="" width="300" height="225" /></a></ins></p>
				<p><ins datetime="2010-06-17T14:45:34+00:00">使用感: Delete KeyとEnterキーの位置がJISキーボードと異なるので戸惑った．</ins></p>
				<p>やはり高級キーボードというだけあって，スムースに打てるし，疲労を感じさせない．</p>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/06/17/hhkb-pro-happy-hacking-keyboard-professional-%e8%b3%bc%e5%85%a5/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Yahoo!BB 速度が1/10になった</title>
		<link>http://plavs.com/2010/06/05/yahoobb-%e9%80%9f%e5%ba%a6%e3%81%8c110%e3%81%ab%e3%81%aa%e3%81%a3%e3%81%9f/</link>
		<comments>http://plavs.com/2010/06/05/yahoobb-%e9%80%9f%e5%ba%a6%e3%81%8c110%e3%81%ab%e3%81%aa%e3%81%a3%e3%81%9f/#comments</comments>
		<pubDate>Sat, 05 Jun 2010 12:06:26 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[Prog]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=330</guid>
		<description><![CDATA[Yahoo!BB ADSL 8Mbps を使用していますが，先週から速度が6Mbps から 0.6Mbps まで落ちました． そこで，サポートセンターにアクセスし， https://ybb.softbank.jp/support/inquiry/member/?mode=tech 最後の自由記述欄に，回線調整お願いします．と書いておきます． １営業日〜２営業日後にYahoo!BBのメルアドに，回線調整した件についてメールがきます． 私は改善されなかったので，モデム交換をお願いしました． 今日モデムが到着して元通りの速度が出ています！]]></description>
			<content:encoded><![CDATA[				<p>Yahoo!BB ADSL 8Mbps を使用していますが，先週から速度が6Mbps から 0.6Mbps まで落ちました．</p>
				<p>そこで，サポートセンターにアクセスし，</p>
				<p><a href="https://ybb.softbank.jp/support/inquiry/member/?mode=tech">https://ybb.softbank.jp/support/inquiry/member/?mode=tech</a></p>
				<p>最後の自由記述欄に，回線調整お願いします．と書いておきます．</p>
				<p>１営業日〜２営業日後にYahoo!BBのメルアドに，回線調整した件についてメールがきます．</p>
				<p>私は改善されなかったので，モデム交換をお願いしました．</p>
				<p>今日モデムが到着して元通りの速度が出ています！</p>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/06/05/yahoobb-%e9%80%9f%e5%ba%a6%e3%81%8c110%e3%81%ab%e3%81%aa%e3%81%a3%e3%81%9f/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PFUにて，HHKB Pro2のプレゼント</title>
		<link>http://plavs.com/2010/05/29/pfu%e3%81%ab%e3%81%a6%ef%bc%8chhkb-pro2%e3%81%ae%e3%83%97%e3%83%ac%e3%82%bc%e3%83%b3%e3%83%88/</link>
		<comments>http://plavs.com/2010/05/29/pfu%e3%81%ab%e3%81%a6%ef%bc%8chhkb-pro2%e3%81%ae%e3%83%97%e3%83%ac%e3%82%bc%e3%83%b3%e3%83%88/#comments</comments>
		<pubDate>Fri, 28 May 2010 15:08:54 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[Prog]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=328</guid>
		<description><![CDATA[PFUにて，Happy Hacking Keyboard Professional 2 のプレゼントキャンペーンがあっていたので応募してみた． http://www.pfu.fujitsu.com/hhkeyboard/50th_campaign/?hhkb=pr2 キャンペーン賞品 および 当選数 A賞: HHKB Professional2 特別モデル HHKB Professional2（無刻印）の製造第1号機（シリアルナンバー1番）に記念キートップ「HHKB Blue Key」を同梱！ ※白モデル／墨モデル 各1台 MacBookのキーボードは打ちにくい．HHKB Pro当たったら最高だなと！しかも無刻印じゃないかと！！！！お願いします！あたってください！]]></description>
			<content:encoded><![CDATA[				<p>PFUにて，Happy Hacking Keyboard Professional 2 のプレゼントキャンペーンがあっていたので応募してみた．</p>
				<p><a href="http://www.pfu.fujitsu.com/hhkeyboard/50th_campaign/?hhkb=pr2">http://www.pfu.fujitsu.com/hhkeyboard/50th_campaign/?hhkb=pr2</a></p>
				<h3>キャンペーン賞品 および 当選数</h3>
				<p><strong>A賞: HHKB  Professional2 特別モデル</strong><br />
				HHKB  Professional2（無刻印）の製造第1号機（シリアルナンバー1番）に記念キートップ「HHKB Blue Key」を同梱！</p>
				<p>※白モデル／墨モデル 各1台</p>
				<div><img src="http://www.pfu.fujitsu.com/hhkeyboard/images/50_campaign/q-003.jpg" alt="「HHKB Professional2＋HHKB Blue Key」 合計2名様" width="300" height="178" /></div>
				<p>MacBookのキーボードは打ちにくい．HHKB Pro当たったら最高だなと！しかも無刻印じゃないかと！！！！お願いします！あたってください！</p>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/05/29/pfu%e3%81%ab%e3%81%a6%ef%bc%8chhkb-pro2%e3%81%ae%e3%83%97%e3%83%ac%e3%82%bc%e3%83%b3%e3%83%88/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>郵便番号(KEN_ALL.LZH)</title>
		<link>http://plavs.com/2010/05/16/%e9%83%b5%e4%be%bf%e7%95%aa%e5%8f%b7ken_all-lzh/</link>
		<comments>http://plavs.com/2010/05/16/%e9%83%b5%e4%be%bf%e7%95%aa%e5%8f%b7ken_all-lzh/#comments</comments>
		<pubDate>Sat, 15 May 2010 15:23:22 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[Prog]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=326</guid>
		<description><![CDATA[日本郵便のKEN_ALL.LZHの仕様がおかしい。 こんなもの使い物にならないので、何かいいサービスないかなと探したらあった！ http://zipcloud.ibsnet.co.jp/ このサイトすごいなぁと！利用させていただくということでーす！]]></description>
			<content:encoded><![CDATA[				<p>日本郵便のKEN_ALL.LZHの仕様がおかしい。</p>
				<p>こんなもの使い物にならないので、何かいいサービスないかなと探したらあった！</p>
				<p><a href="http://zipcloud.ibsnet.co.jp/">http://zipcloud.ibsnet.co.jp/</a></p>
				<p>このサイトすごいなぁと！利用させていただくということでーす！</p>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/05/16/%e9%83%b5%e4%be%bf%e7%95%aa%e5%8f%b7ken_all-lzh/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DataGridView の行を削除する</title>
		<link>http://plavs.com/2010/05/12/datagridview-%e3%81%ae%e8%a1%8c%e3%82%92%e5%89%8a%e9%99%a4%e3%81%99%e3%82%8b/</link>
		<comments>http://plavs.com/2010/05/12/datagridview-%e3%81%ae%e8%a1%8c%e3%82%92%e5%89%8a%e9%99%a4%e3%81%99%e3%82%8b/#comments</comments>
		<pubDate>Tue, 11 May 2010 16:25:25 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=323</guid>
		<description><![CDATA[DataGridView-&#62;Rows-&#62;Clear() ではエラーになるでーす DataSetをクリア、DataTableをクリア、などの方法でできるらしいだ。 http://social.msdn.microsoft.com/Forums/ja-JP/vbexpressja/thread/684a1430-8f4e-4ff4-bc85-739e279cf331]]></description>
			<content:encoded><![CDATA[				<p>DataGridView-&gt;Rows-&gt;Clear() ではエラーになるでーす</p>
				<p>DataSetをクリア、DataTableをクリア、などの方法でできるらしいだ。</p>
				<p><a href="http://social.msdn.microsoft.com/Forums/ja-JP/vbexpressja/thread/684a1430-8f4e-4ff4-bc85-739e279cf331">http://social.msdn.microsoft.com/Forums/ja-JP/vbexpressja/thread/684a1430-8f4e-4ff4-bc85-739e279cf331</a></p>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/05/12/datagridview-%e3%81%ae%e8%a1%8c%e3%82%92%e5%89%8a%e9%99%a4%e3%81%99%e3%82%8b/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DataSet + BindingNavigator + TextBox</title>
		<link>http://plavs.com/2010/05/09/dataset-bindingnavigator-textbox/</link>
		<comments>http://plavs.com/2010/05/09/dataset-bindingnavigator-textbox/#comments</comments>
		<pubDate>Sun, 09 May 2010 05:53:18 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=320</guid>
		<description><![CDATA[Windows フォームのプログラミング 方法 : Windows フォームの BindingNavigator コントロールを使用して DataSet を移動する #using &#60;System.dll&#62; #using &#60;System.Data.dll&#62; #using &#60;System.Drawing.dll&#62; #using &#60;System.Windows.Forms.dll&#62; #using &#60;System.EnterpriseServices.dll&#62; #using &#60;System.Transactions.dll&#62; #using &#60;System.Xml.dll&#62; using namespace System; using namespace System::Collections::Generic; using namespace System::ComponentModel; using namespace System::Data; using namespace System::Drawing; using namespace System::Data::SqlClient; using namespace System::Windows::Forms; // This form demonstrates using a BindingNavigator to display // [...]]]></description>
			<content:encoded><![CDATA[				<p>Windows  フォームのプログラミング</p>
				<div>方法 : Windows フォームの  BindingNavigator コントロールを使用して DataSet を移動する</div>
				<pre class="brush: cpp;">
#using &lt;System.dll&gt;
#using &lt;System.Data.dll&gt;
#using &lt;System.Drawing.dll&gt;
#using &lt;System.Windows.Forms.dll&gt;
#using &lt;System.EnterpriseServices.dll&gt;
#using &lt;System.Transactions.dll&gt;
#using &lt;System.Xml.dll&gt;

using namespace System;
using namespace System::Collections::Generic;
using namespace System::ComponentModel;
using namespace System::Data;
using namespace System::Drawing;
using namespace System::Data::SqlClient;
using namespace System::Windows::Forms;

// This form demonstrates using a BindingNavigator to display
// rows from a database query sequentially.
public ref class Form1 : public Form
{
    // This is the BindingNavigator that allows the user
    // to navigate through the rows in a DataSet.
    BindingNavigator^ customersBindingNavigator;

    // This is the BindingSource that provides data for
    // the Textbox control.
    BindingSource^ customersBindingSource;

    // This is the TextBox control that displays the CompanyName
    // field from the the DataSet.
    TextBox^ companyNameTextBox;

public:
    Form1()
    {
        // Set up the BindingSource component.
        this-&gt;customersBindingSource = gcnew BindingSource();
        this-&gt;companyNameTextBox = gcnew TextBox();
        this-&gt;customersBindingNavigator = gcnew BindingNavigator();
        this-&gt;customersBindingNavigator-&gt;BindingSource =
            this-&gt;customersBindingSource;
        this-&gt;customersBindingNavigator-&gt;Dock = DockStyle::Top;
        this-&gt;Controls-&gt;Add(this-&gt;customersBindingNavigator);

        // Set up the TextBox control for displaying company names.
        this-&gt;companyNameTextBox-&gt;Dock = DockStyle::Bottom;
        this-&gt;Controls-&gt;Add(this-&gt;companyNameTextBox);

        // Set up the form.
        this-&gt;Size = System::Drawing::Size(800, 200);
        this-&gt;Load += gcnew EventHandler(this, &amp;Form1::Form1_Load);
    }

private:
    void Form1_Load(Object^ sender, EventArgs^ e)
    {
        // Open a connection to the database.
        // Replace the value of connectString with a valid
        // connection string to a Northwind database accessible
        // to your system.
        String^ connectString =
            &quot;Integrated Security=SSPI;Persist Security Info=False;&quot; +
            &quot;Initial Catalog=Northwind;Data Source=localhost&quot;;
        SqlConnection^ connection = gcnew SqlConnection();
        connection-&gt;ConnectionString = connectString;
        connection-&gt;Open();

        // Execute the query.
        SqlCommand^ command = gcnew SqlCommand(
            &quot;Select * From Customers&quot;, connection);
        SqlDataReader^ reader = command-&gt;ExecuteReader(
            CommandBehavior::CloseConnection);

        // Load the Customers result set into the DataSet.
        DataSet^ ds = gcnew DataSet(&quot;Northwind Customers&quot;);
        ds-&gt;Load(reader, LoadOption::OverwriteChanges,
            gcnew array&lt;String^&gt; {&quot;Customers&quot;});

        // Assign the DataSet as the DataSource for the
        // BindingSource.
        this-&gt;customersBindingSource-&gt;DataSource = ds-&gt;Tables[0];

        // Bind the CompanyName field to the TextBox control.
        this-&gt;companyNameTextBox-&gt;DataBindings-&gt;Add(gcnew Binding(&quot;Text&quot;,
            this-&gt;customersBindingSource, &quot;CompanyName&quot;, true));
    }
};
</pre>
				<p><a href="http://msdn.microsoft.com/ja-jp/library/s4b01sz7%28VS.80%29.aspx">http://msdn.microsoft.com/ja-jp/library/s4b01sz7%28VS.80%29.aspx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/05/09/dataset-bindingnavigator-textbox/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual C++.NET + MySQL</title>
		<link>http://plavs.com/2010/05/08/visual-c-net-mysql/</link>
		<comments>http://plavs.com/2010/05/08/visual-c-net-mysql/#comments</comments>
		<pubDate>Sat, 08 May 2010 04:41:49 +0000</pubDate>
		<dc:creator>yup</dc:creator>
				<category><![CDATA[C++]]></category>

		<guid isPermaLink="false">http://plavs.com/?p=318</guid>
		<description><![CDATA[Visual C++ .NET 2008 で，MySQLを扱いたい． DataSet, BindingSource, BindingNavigator, DataTable, DataSetが何なのかわからなーい ぐぐってたらいいサイトあったでーす★ http://itpro.nikkeibp.co.jp/article/COLUMN/20070320/265659/?ST=develop&#38;P=1]]></description>
			<content:encoded><![CDATA[				<p>Visual C++ .NET 2008 で，MySQLを扱いたい．</p>
				<p>DataSet, BindingSource, BindingNavigator, DataTable, DataSetが何なのかわからなーい</p>
				<p>ぐぐってたらいいサイトあったでーす★</p>
				<p><a href="http://itpro.nikkeibp.co.jp/article/COLUMN/20070320/265659/?ST=develop&amp;P=1">http://itpro.nikkeibp.co.jp/article/COLUMN/20070320/265659/?ST=develop&amp;P=1</a></p>
]]></content:encoded>
			<wfw:commentRss>http://plavs.com/2010/05/08/visual-c-net-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
