Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
0 votes
0 answers
51 views

How do upload images to Jfrog with layers larger than 2GB when using an external database

We are currently encountering issues with our JFrog Installation. Our JFrog is running in Kubernetes, and initially, we had it running with regular PVCs and no problems. However, when we attempted to ...
user26302400's user avatar
0 votes
1 answer
42 views

Load picture from SQL and set it as a picturebox image in C# [closed]

I am using this code to load an image from SQL and set it as a picturebox image. but the code does not work. I use "image"/"varbinary(Max)" for Logo image in SQL Server. byte[] ...
user12235025's user avatar
-1 votes
1 answer
86 views

Saving an image to a SQL Server

I wish to save an image to a SQL Server database. The image is loaded into a DevExpress picture box, and can find the full path and name of the image using filename = userPicture(...
Clamont's user avatar
  • 11
0 votes
2 answers
63 views

how to display local database image in browser w react js

new Product { Id = 2, CategoryId = 2, BrandId=5, ProductName = "Galaxy S23", Stock = 20, Price = 24999, ...
Serkan Gün's user avatar
-1 votes
1 answer
183 views

XImage fromStream returns 'Parameter Not Valid'

I cannot seem to work out why my image byte array when retrieved from my SQL database is not able to be read as a valid stream using XImage.FromSource(). I have used the same method of saving and ...
TryingAgain's user avatar
0 votes
1 answer
109 views

Specific Effects of using nvarbinary vs nvarchar for storing images

I have seen the statement that if you are storing images in a column in a SQL Server database, you should use varbinary instead of nvarchar. Which makes 100% sense to store binary data as varbinary ...
Dancin Dave's user avatar
0 votes
0 answers
23 views

Unable to upload image to SQL Server using express-fileupload

I am using node.js, express, express-fileupload and SQL Server. I am trying to upload images of signatures into the SQL Server database table. When I use the code below, I get an error Cannot bulk ...
kbdev's user avatar
  • 61
-1 votes
1 answer
274 views

Stored procedure to insert image into SQL Server

I want to store signatures in a SQL Server database table as VARBINARY(MAX). I use the following T-Sql to insert a signature: INSERT INTO Signatures (UserID_FK, [Signature]) SELECT 2, BulkColumn FROM ...
kbdev's user avatar
  • 61
1 vote
1 answer
993 views

How to convert the content of an Image to text in SQL Server 2019

I'm querying a database and payload data is stored in an image column in Microsoft SQL Server 2019. I want to read the actual text value of this column. I wrote following query: SELECT CAST(PAYLOAD AS ...
stromanneke's user avatar
3 votes
1 answer
2k views

Could not connect in container because "The evaluation period has expired" [closed]

I have the following image installed on my Docker: mcr.microsoft.com/mssql/server:2022-latest. From it I created a container, and in that container I created my database. Today I suddenly received the ...
Guilherme Sanches's user avatar
0 votes
1 answer
152 views

Pull SQL varbinary(max) to Xamarin image

I have a Xamarin application that reads images from a SQL Server database, the column that holds the image data index is 4. I have created a class that contain a member called image, which is an Image ...
Abed ElHameed Jaber's user avatar
0 votes
0 answers
346 views

SQL Server select rows where column of type image contains a substring

Have a table where two columns of type image. These contain XML formatted messages. Some turn out to be invalid XML. I would like to find all records where either of the 2 columns contain '&' that ...
kishjeff's user avatar
  • 121
-1 votes
1 answer
580 views

(C#) How do I send an image file from an ASP.NET MVC 5 web form to my SQL database?

I'm trying to insert an image file that a user uploads from a web form into my SQL database so that it shows up on my Index page next to their information. All of the other information sends and shows ...
Juan Pocurull's user avatar
0 votes
0 answers
792 views

How to insert a pdf or image to SQL server

I'm trying to add an img from my own computer for testing and I need to upload an img or pdf to a column in SQL Server as a varbinary data type. the table has 6 columns; description, img, date, etc.. ...
Elvin Castillo's user avatar
0 votes
1 answer
1k views

Retrieve image type data from SQL Server via API and display in Blazor Net6 C#

I have SQL Server image type data that I am trying to retrieve via a Web API (Net6) and display in Blazor web assembly. I can get back of string of data, but I am having no luck getting it into the ...
user13814551's user avatar

15 30 50 per page
1
2 3 4 5
22