This article by Budi Kurniawan at ONDotNet.com gives a clear and concise explanation with an excellent example of creating and using custom .NET controls.
This article by Budi Kurniawan at ONDotNet.com gives a clear and concise explanation with an excellent example of creating and using custom .NET controls.
String to Byte Array
String strSource = ... System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding(); Byte[] arrDest = encoding.GetBytes(strSource);
Byte Array to String
Byte[] arrSource = ... System.Text.ASCIIEncoding encoding = new System.Text.ASCIIEncoding(); String strDest = encoding.GetString(arrSource);
Summary of .NET Collections
“The only winning strategy is not to play.”
-M.A.D. Magazine
This post at Slashdot.org talks about how Column Stores or Column-oriented DBMS are getting more popular, especially in the data warehousing market. A column-oriented DBMS stores its content by column rather than by row. Read more about it here.
A single logical operation on data is called a transaction. The ACID set of properties guarantee that database transactions are processed reliably:
(Reference: ACID at Wikipedia)
“If wealth is lost, nothing is lost
If health is lost, something is lost,
If character data is lost, everything is lost”
-Anonymous
A great playwright with a Shakespearean name once said, “All the world’s a database, And all the men and women merely records”.
Data[bases] drive[s] the world. They are the sum of human knowledge, and all around the world many an overworked DBA (DataBase Administrator) spend endless, sleepless nights just keeping these things running. There is currently talk going on of Transforming the Web into a database.
Here is the sum of my database knowledge.
References:
Resources:
“In nature, there are neither rewards nor punishments, only consequences.”
-R. C. Ingersoll
“The world is round, and the place which may seem like the end may also be the beginning.”
– Ivy Baker Priest
“IMPOSSIBLE IS NOTHING”
-Adidas Advertisement
I believe that given enough resources, nothing is impossible. After all, man walked on the Moon, didn’t he? And yes, desire and motivation are resources.