<?xml version="1.0"  ?>
<rss version="2.0">
  <channel>
    <title>Dreamsoft Technologies | Forums</title>
    <link>http://www.dreamsoft.co.in/forum/index.php</link>
    <description><![CDATA[]]></description>
    <language>en</language>
    <pubDate>Tue, 26 Jul 2011 06:12:12 -0400</pubDate>
    <lastBuildDate>Tue, 26 Jul 2011 06:12:12 -0400</lastBuildDate>
    <category>Dreamsoft Technologies | Forums</category>
    <generator>Phorum 5.1.25</generator>
    <ttl>60</ttl>
    <item>
      <title>[What we do?] Hi there...</title>
      <link>http://www.dreamsoft.co.in/forum/read.php?3,226,226#msg-226</link>
      <author>steve88</author>
      <description><![CDATA[I am new to this forum and looking for something new and informative through this forum..]]></description>
      <category>What we do?</category>
      <guid isPermaLink="true">http://www.dreamsoft.co.in/forum/read.php?3,226,226#msg-226</guid>
      <pubDate>Tue, 26 Jul 2011 06:12:12 -0400</pubDate>
    </item>
    <item>
      <title>[PHP] Solution to Warning: Cannot modify header information - headers already sent</title>
      <link>http://www.dreamsoft.co.in/forum/read.php?4,7,7#msg-7</link>
      <author>dream</author>
      <description><![CDATA[Hi All,<br />
<br />
This is the most common headache for all PHP-Developers. <br />
<br />
&quot;Warning: Cannot modify header information - headers already sent&quot;<br />
<br />
A simple solution would be to add:<br />
obstart();<br />
<br />
function at the top of the PHP page.]]></description>
      <category>PHP</category>
      <guid isPermaLink="true">http://www.dreamsoft.co.in/forum/read.php?4,7,7#msg-7</guid>
      <pubDate>Tue, 22 Apr 2008 22:29:52 -0400</pubDate>
    </item>
    <item>
      <title>[.NET] Difference between MS Sql and Mysql objects/functions/connection strings used in ASP.NET</title>
      <link>http://www.dreamsoft.co.in/forum/read.php?14,5,5#msg-5</link>
      <author>ram</author>
      <description><![CDATA[Hey all!<br />
<br />
It's my first POST here and hope to do it right.<br />
During my last project i found some difficulty in converting an asp.net project from MS Sql database to Mysql.<br />
<br />
Here are list of some differences that i wanted to share with you all:-<br />
<br />
a) -&gt;In MS Sql<br />
     add key=&quot;DBConnectionString&quot;  value=&quot;workstation id=workstationID;packet size=4096;user id=userID;data source=SourceAddress;persist security info=True;initial catalog=name;password=pwd&quot; <br />
<br />
  -&gt;In Mysql<br />
    add key=&quot;DBConnectionString&quot;  value=&quot;Driver={MySQL ODBC 3.51 Driver}; Server=localhost;Database=databasename;uid=userID;pwd=mypassword;option=3&quot;<br />
<br />
b) -&gt;In MS Sql<br />
     Imports System.Data.SqlClient<br />
<br />
   -&gt;In Mysql<br />
     Imports System.Data.Odbc<br />
<br />
c) -&gt;In MS Sql<br />
     Dim myConnection As SqlConnection<br />
     Dim myCommand As SqlCommand<br />
<br />
   -&gt;In Mysql<br />
     Dim myConnection As OdbcConnection<br />
     Dim myCommand As OdbcCommand<br />
<br />
If you are using StoredProcedures then here are the list of diffrences between MS sql and Mysql:-<br />
<br />
d) -&gt;In MS Sql<br />
      Dim DsLogin As New DataSet<br />
      OpenDBConnection()<br />
      Dim myDataAdapter As New SqlDataAdapter(&quot;spGetLoginInformation&quot;, OranjConnString)<br />
      myDataAdapter.SelectCommand.CommandType = CommandType.StoredProcedure<br />
      Dim ParmUserName As New SqlParameter(&quot;@UserName&quot;, SqlDbType.VarChar, 15)<br />
      ParmUserName.Value = xUserName<br />
      myDataAdapter.SelectCommand.Parameters.Add(ParmUserName)<br />
      Dim ParmPwd As New SqlParameter(&quot;@Pwd&quot;, SqlDbType.VarChar, 15)<br />
      ParmPwd.Value = xPassword<br />
      myDataAdapter.SelectCommand.Parameters.Add(ParmPwd)<br />
      myDataAdapter.Fill(DsLogin, &quot;LoginInfo&quot;)<br />
      CloseDBConnection()<br />
<br />
   -&gt;In Mysql<br />
      Dim DsLogin As New DataSet<br />
      OpenDBConnection()<br />
      Dim myDataAdapter As New OdbcDataAdapter(&quot;call spGetLoginInformation(?,?)&quot;, OranjConnString)<br />
      myDataAdapter.SelectCommand.CommandType = CommandType.StoredProcedure<br />
      Dim ParmUserName As New OdbcParameter(&quot;?at_UserName&quot;, OdbcType.VarChar, 15)<br />
      ParmUserName.Value = xUserName<br />
      myDataAdapter.SelectCommand.Parameters.Add(ParmUserName)<br />
      Dim ParmPwd As New OdbcParameter(&quot;?at_Pwd &quot;, OdbcType.NVarChar, 15)<br />
      ParmPwd.Value = xPassword<br />
      myDataAdapter.SelectCommand.Parameters.Add(ParmPwd)<br />
      myDataAdapter.Fill(DsLogin, &quot;LoginInfo&quot;)<br />
      CloseDBConnection()<br />
<br />
Note(Mysql):-call spGetLoginInformation(?,?)- No. of question marks equal to number of variables.<br />
<br />
e)    -&gt;In MS Sql<br />
        fieldname = &quot;ISNULL( Max(iuserID ) ,0) + 1   &quot;<br />
<br />
      -&gt;In Mysql<br />
        fieldname = &quot;IFNULL(Max(iuserID ),0)+1&quot;<br />
<br />
Find more in next...]]></description>
      <category>.NET</category>
      <guid isPermaLink="true">http://www.dreamsoft.co.in/forum/read.php?14,5,5#msg-5</guid>
      <pubDate>Mon, 03 Mar 2008 06:35:17 -0500</pubDate>
    </item>
    <item>
      <title>[PHP] PHP - As Simple as it gets</title>
      <link>http://www.dreamsoft.co.in/forum/read.php?4,4,4#msg-4</link>
      <author>azy</author>
      <description><![CDATA[Hi all<br />
<br />
When I was told by my boss that I would have to study PHP for my upcoming project, I said to myself  “new language… its gonna take months…”, But when I started it off, it went like a breeze.<br />
<br />
Yes, PHP (PHP Hypertext Processor), is one of the easiest server side scripting languages to learn. What has it got?... Hundreds of functions (used a few hundred myself ), Easy session and cookie handling, Object Oriented Programming Concepts (PHP5) and loads more… the best part is, PHP syntax is just like that of C and PERL.  The second best is that it can be embedded anywhere in your HTML code… yes, “ANYWHERE”.<br />
<br />
W3Schools.com (Kindergarten of all web developers) is the 1st place I went to check it out. 2 days and I started with manual coding. In a week’s time, I was half way through it. All you need to get started in PHP is a server (I use APACHE) and a text editor (Like notepad or better, a web development software like Dreamweaver ). And if you know C or PERL, you are half way through already!!! . You can start off  if you like web development ( Play with it a little, making new things and stuff ).. make it a part time job ( PHP Freelancers are IN DEMAND )  or make a career out if it. It is currently rated the 4th most popular language after Java, C and Visual Basic… and its growing FAST!!! <br />
<br />
Please give your comments and suggestions regarding this tiny article… (MY first ever… so there could be mistakes… Please point them out). And I invite one and all to continue this post giving your views, or articles of your own. Looking forward to type in more. <br />
<br />
Next article on 7th March...<br />
<br />
Regards<br />
<br />
Abdul Aziz Sulaiman]]></description>
      <category>PHP</category>
      <guid isPermaLink="true">http://www.dreamsoft.co.in/forum/read.php?4,4,4#msg-4</guid>
      <pubDate>Fri, 29 Feb 2008 01:24:22 -0500</pubDate>
    </item>
    <item>
      <title>[Upcoming Products] Dreamsoft Publisher Max</title>
      <link>http://www.dreamsoft.co.in/forum/read.php?2,3,3#msg-3</link>
      <author>dream</author>
      <description><![CDATA[Hi All,<br />
<br />
I would like to announce a product that we are developing called Dreamsoft Publisher Max. Its a subscription management system for publications, magazines, newspapers etc. <br />
<br />
The feature list is as follows:<br />
Feature List:<br />
<br />
    1&gt; User Friendly software<br />
<br />
    2&gt; Multiple Publications in multiple languages supported<br />
<br />
    3&gt; Multiple Publishers supported<br />
<br />
    3&gt; Subscription Management<br />
<br />
    4&gt; Manage active subscribers and expired subscribers<br />
<br />
    5&gt; Convert expired subscribers to active subscribers<br />
<br />
    6&gt; Manage contacts, addresses<br />
<br />
    7&gt; Unlimited address storage capability<br />
<br />
    8&gt; Print Addresses to Envelopes or Labels sorted by Area, Pin or Country<br />
<br />
    9&gt; Powerful search, allowing contacts, subscribers to be quickly found<br />
<br />
    10&gt; Backup and Restore data<br />
<br />
    11&gt; Notification of Expired subscribers in the current month or a date range<br />
<br />
    12&gt; Task Management<br />
<br />
    13&gt; Demographics<br />
<br />
    14&gt; Intuitive Wizards for tasks such as setting up the software, taking<br />
    backups, restoring backups<br />
<br />
    15&gt; Microsoft UI Guidelines maintained to ensure user comfort.<br />
<br />
    16&gt; Data entry made ergonomic to reduce strain on the user.<br />
<br />
<br />
Screenshots and other material will be made available soon on this page. A demo will be posted on this for public testing as soon.<br />
<br />
Support Team,<br />
Dreamsoft Technologies.]]></description>
      <category>Upcoming Products</category>
      <guid isPermaLink="true">http://www.dreamsoft.co.in/forum/read.php?2,3,3#msg-3</guid>
      <pubDate>Sun, 10 Feb 2008 21:41:58 -0500</pubDate>
    </item>
  </channel>
</rss>

