-
as seen on SQL Authority
- Search for 'SQL Authority'
Jacob Sebastian is a SQL Server MVP, Author, Speaker and Trainer. Jacob is one of the top rated expert community. Jacob wrote the book The Art of XSD – SQL Server XML Schema Collections and wrote the XML Chapter in SQL Server 2008 Bible. See his Blog | Profile. He is currently researching on…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
FileStream fileStream = new FileStream(filePath, FileMode.Open, FileAccess.Read);
Arguments: << path Debugging resource
strings are unavailable. Often the key
and arguments provide sufficient
information to diagnose the problem.
See
http://go.microsoft.com/fwlink/?linkid=106663&Version=4…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I've configured a db w/ a FileStream group and have a table w/ File type on it. When attempting to insert a streamed file and after I create the table row, my query to read the filepath out and the buffer returns a null file path. I can't seem to figure out why though. Here is the table creation script:
…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi all
Am I missing something or does System.IO.Filestream not read unicode txt files containing Hebrew?
Thanks
Jonathan
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Is the following pattern of multi-threaded calls acceptable to a .Net FileStream?
Several threads calling a method like this:
ulong offset = whatever; // different for each thread
byte[] buffer = new byte[8192];
object state = someState; // unique for each call, hence also for each thread
lock(theFile)
{
…
>>> More