HELP - C# Poem???

mjs301

New member
Joined
Aug 13, 2003
Messages
3
Hi someone sent me this, what is it?

string strDataSource="";
strDataSource +=
System.Configuration.ConfigurationSettings.AppSett
ings["DSN"];
SqlConnection
sddbConnection = new SqlConnection(strDataSource);
sddbConnection.Open();

// string strCategoryInfo
= "";
string strSqlCategoryInfo
= "select * from tblcategory where id = 1";
SqlCommand myCommandClone
= new SqlCommand(strSqlCategoryInfo,
sddbConnection);
SqlDataReader
drCategoryInfo = myCommandClone.ExecuteReader();

while (drCategoryInfo.Read
() == true)
{
strCodebehind +=
drCategoryInfo["categoryurl"] + ".cs" ;
strInherits +=
strNamespace + "." +drCategoryInfo["inherits"];
}
MariaMessage.Close();
 
hahaaaaaaaaa - it looks that way doesnt it?
oh well - my fault. i meant to tell the person i knew c++ but he read it as c#. This is c# right? can you at least answer that?!?!
 
thanks Mutant Forum Leader. I will go hit the books. Hey do you guys at least help with homework??? jk. byeeeee
 
Back
Top