 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Insert values into database from form VB.NET</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/insert-values-into-database-from-form-vbnet/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/insert-values-into-database-from-form-vbnet/</link>
	<description></description>
	<lastBuildDate>Fri, 24 May 2013 07:13:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/insert-values-into-database-from-form-vbnet/#comment-105405</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Wed, 28 Mar 2012 17:43:11 +0000</pubDate>
		<guid isPermaLink="false">#comment-105405</guid>
		<description><![CDATA[The code you posted: does it work ? at least partially ? does it generate errors ?

Please be a little more specific about what you need help with.

&quot;&lt;i&gt;tell me what you think&lt;/i&gt;&quot;  is way too broad.]]></description>
		<content:encoded><![CDATA[<p>The code you posted: does it work ? at least partially ? does it generate errors ?</p>
<p>Please be a little more specific about what you need help with.</p>
<p>&#8220;<i>tell me what you think</i>&#8221;  is way too broad.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: darthswift00</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/insert-values-into-database-from-form-vbnet/#comment-105328</link>
		<dc:creator>darthswift00</dc:creator>
		<pubDate>Mon, 26 Mar 2012 05:38:05 +0000</pubDate>
		<guid isPermaLink="false">#comment-105328</guid>
		<description><![CDATA[Hi i do still need help im still new to this site so i do apologise if i have not said so. Do you understand my question that im having a problem with ?]]></description>
		<content:encoded><![CDATA[<p>Hi i do still need help im still new to this site so i do apologise if i have not said so. Do you understand my question that im having a problem with ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carlosdl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/insert-values-into-database-from-form-vbnet/#comment-105319</link>
		<dc:creator>carlosdl</dc:creator>
		<pubDate>Sun, 25 Mar 2012 18:37:28 +0000</pubDate>
		<guid isPermaLink="false">#comment-105319</guid>
		<description><![CDATA[Darthswift00, it is not clear whether you still need help.

Could you please confirm ?]]></description>
		<content:encoded><![CDATA[<p>Darthswift00, it is not clear whether you still need help.</p>
<p>Could you please confirm ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: darthswift00</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/insert-values-into-database-from-form-vbnet/#comment-105301</link>
		<dc:creator>darthswift00</dc:creator>
		<pubDate>Sat, 24 Mar 2012 10:02:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-105301</guid>
		<description><![CDATA[Change to that on the trnsaction table it shold be:

&lt;pre&gt;

insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
(&#039;T001&#039;,&#039;M001&#039;,&#039;A001&#039;,&#039;2012-01-10&#039;,&#039;2012-01-15&#039;)
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
(&#039;T002&#039;,&#039;M002&#039;,&#039;A002&#039;,&#039;2012-01-12&#039;,&#039;2012-01-16&#039;)
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
(&#039;T003&#039;,&#039;M003&#039;,&#039;A003&#039;,&#039;2012-01-16&#039;,&#039;2012-01-21&#039;)
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
(&#039;T004&#039;,&#039;M004&#039;,&#039;A004&#039;,&#039;2012-01-18&#039;,&#039;2012-01-23&#039;)
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
(&#039;T005&#039;,&#039;M005&#039;,&#039;A005&#039;,&#039;2012-02-02&#039;,&#039;2012-02-07&#039;)
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
(&#039;T006&#039;,&#039;M006&#039;,&#039;A006&#039;,&#039;2012-02-08&#039;,&#039;2012-02-13&#039;)


&lt;/pre&gt;]]></description>
		<content:encoded><![CDATA[<p>Change to that on the trnsaction table it shold be:</p>
<pre>

insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
('T001','M001','A001','2012-01-10','2012-01-15')
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
('T002','M002','A002','2012-01-12','2012-01-16')
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
('T003','M003','A003','2012-01-16','2012-01-21')
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
('T004','M004','A004','2012-01-18','2012-01-23')
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
('T005','M005','A005','2012-02-02','2012-02-07')
insert into trnsaction (trnsaction_id,member_id,album_id,issue_date,return_date) values 
('T006','M006','A006','2012-02-08','2012-02-13')


</pre>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/9 queries in 0.013 seconds using memcached
Object Caching 310/313 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-24 07:28:28 -->