Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
4answers
136 views

How should I be saving .doc documents to a SQL Server database

I am saving a .doc file to a SQL Server database as varbinary(max) using the C# code below. I am able to save the file, but when I retrieve the file back and want to display the contents on the web ...
2
votes
1answer
264 views

Set the DbParameter.DbType of a null value in a generic way?

I've got a problem with SQL update statements when I pass null values (or better let's say DbNull values) to a DbParameter object. When I pass the DbNull value to the Value property, the DbType of the ...
2
votes
1answer
474 views

Assigning an empty binary value to a varbinary(MAX) column creates a column 8000 bytes long

I have a table with a varbinary(max) column, i am trying to assign to that column a zero-lengh binary buffer, but instead of getting a zero-length value in the table, i am getting an 8000 bytes long ...
1
vote
1answer
327 views

WPF - Convert file to Byte[] to BitmapSource using JpegBitmapDecoder

I need to read a jpg file and latyer display it in an Image controll. The following works perfectly: imgTwo.Source = FetchImage(@"C:\Image075.jpg"); public BitmapSource FetchImage(string URLlink) { ...
1
vote
2answers
445 views

To convert varbinary(max) to xml format

002CB992AF8E3FEF80BCBFF3F501D2F065CABFE1A1FFEC58B197CF8FFB96F6A82CDA3CFD1022FCBC358E7B3F328E3F328E3F328E56B0361B479B78FB2198C77BC3C9B61F59C79F5BEBF84D04B83F328FFF2F308F035FE015C980FE3F77D83928591F0000 ...
1
vote
1answer
340 views

Problem inserting binary data through SQL query (SQL Server 2008)

These is the query i have found for inserting binary data (using varbinary) which is working perfectly CREATE TABLE Employees ( Id int, Name varchar(50) not null, Photo varbinary(max) not ...
1
vote
1answer
365 views

Is there a tool to load files into varbinary(max) fields?

I was contemplating the creation of a tool to load varbinary(max) fields in a SQL Server 2008 database with files as selected from a open file dialog. Is there any such tool or equivalent that I ...
1
vote
1answer
411 views

TSQL in Memory VarBinary to Text File?

With SQL Server 2008, I have a stored procedure that accepts a VarBinary parameter. While the parameter is in memory, I would like to write it to the %temp% directory of the SQL Server. How can I go ...
0
votes
0answers
60 views

how to convert varbinary datatype and inserting into datatable

In my database i have a column with the datatype varbinary(MAX). I i'm trying to pass it into a datatable but get stuck on typeconversion. private DataTable getData(int id) { ...
0
votes
0answers
69 views

“String data, right truncation” in varbinary(max) field

If I use the following string as a connection string to my (local) SQL Server database: "Driver={SQL Server Native Client ...
0
votes
1answer
138 views

Retrieve varbinary(MAX) from SQL Server to byte[] in C#

I'm trying to get a varbinary(MAX) from SQL Server to a byte[] variable in C#. How can I do this? Thanks
0
votes
1answer
235 views

inserting a File as Varbinary(MAX) in SQL Server 2008

I'm trying to insert values to my table which contains varbinary(MAX), and the file I try to insert is byte[] public DataTable add1(string docName , byte[] doc) { DBAdaptor db = new DBAdaptor(); ...
0
votes
1answer
77 views

SQL: Update table with a picture from folder, by id #

I have a table at the moment with columns ( id#(int), picture(varbinary(MAX) ), and I have a folder on my HDD with a ton of pictures. The pictures in the folder are named by the 'id' I want to match ...
0
votes
1answer
173 views

Saving a generated PNG file to SQL Server varbinary(max)

I've created a drawing app in Silverlight that generates a png file from an InkPresenter control when the user hits a "Save" button. I used code from the following article to accomplish the png ...
0
votes
1answer
186 views

Problem with STGeomCollFromWKB reading from varbinary(max)

I have imported a csv file containing spatial area information in varchar, then converted varchar(max) values to varbinary(max) by adding '0x' to varchar(max) values prior to conversion. By then, ...
0
votes
5answers
180 views

C# : Saving an Image into DB

Can someone give me some advice on how to save an image file into DB in C#? I will be saving a lot of images so what's the best way to reduce the space it will be needing? I'm currently using ...
0
votes
1answer
912 views

Retrieving binary data [varbinary(max)] from SQL Server 2008 using JSP

Here is the query I am using to create and insert binary data in SQL Server 2008 Create query: CREATE TABLE Employees ( Id int, Photo varbinary(max) not null, Name varchar(50) not null, Sound ...
0
votes
0answers
360 views

Read VarBinary(MAX) .jpg From SQL Server 2008 with PHP

I need to read an image (.jpg) that is stored into a VarBinary(MAX) field in SQL Server 2008. But when I try the following code, it creates the image.jpg but just build the first part of the picture. ...
0
votes
4answers
85 views

Is it possible to have a nvarchar(max) and a varbinar(max) fields in same table

I am using SQL Server 2008 R2. I have a table which has several fields including a nvarchar(max) field. When I try and add a new field of type varbinary(max) I get an error message: "Saving changes ...
-1
votes
1answer
78 views

How can I make a download link which downloads data directly from a DB in ASP.NET? [closed]

Possible Duplicate: How to Download A file stored in SQL DB in Binary Format I stored some MS word docs in SQL Server. When I wanna download them, I save them as a file on server first then ...