Z
Zytan
I ran through the VB Guided Tour some time ago. In particular, the
"Managing Your Records: Using Data in Your Program" section:
http://msdn2.microsoft.com/en-us/library/t25kbx0s(VS.80).aspx
This explains how to create a SQL database, which is stored as an .mdf
file:
http://msdn2.microsoft.com/en-us/library/ms172599(VS.80).aspx
It is just 4 or 5 addresses being stored.
However, the database is 2,240 KB in size! To store 5 addresses? So,
I searched through the database, and I was SHOCKED to find about 120
KB of private IM conversations in there...
I predict the following occured: Firstly, the IM client released
memory without first clearing it. (A privacy violation, since other
programs can now read it.) SQL grabbed this memory, about 2 MB more
than would be reasonable, and didn't clear it. (A privacy violation,
since it will store this information until it is overwritten, and it
could contain personal information from your PC.) Then SQL filled a
small amount of this memory with the 5 addresses, and saved the entire
2.2 MB block. Funny how accidents always exposed several wrongs,
never just one.
I am shocked.
Question: How do I create a .mdf SQL file that DOESN'T contain un-
erased blocks of memory from my PERSONAL computer? (I am using VB
2005 Express)
Zytan
"Managing Your Records: Using Data in Your Program" section:
http://msdn2.microsoft.com/en-us/library/t25kbx0s(VS.80).aspx
This explains how to create a SQL database, which is stored as an .mdf
file:
http://msdn2.microsoft.com/en-us/library/ms172599(VS.80).aspx
It is just 4 or 5 addresses being stored.
However, the database is 2,240 KB in size! To store 5 addresses? So,
I searched through the database, and I was SHOCKED to find about 120
KB of private IM conversations in there...
I predict the following occured: Firstly, the IM client released
memory without first clearing it. (A privacy violation, since other
programs can now read it.) SQL grabbed this memory, about 2 MB more
than would be reasonable, and didn't clear it. (A privacy violation,
since it will store this information until it is overwritten, and it
could contain personal information from your PC.) Then SQL filled a
small amount of this memory with the 5 addresses, and saved the entire
2.2 MB block. Funny how accidents always exposed several wrongs,
never just one.
I am shocked.
Question: How do I create a .mdf SQL file that DOESN'T contain un-
erased blocks of memory from my PERSONAL computer? (I am using VB
2005 Express)
Zytan