python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Unable to insert data from the JSON in to the SQL server table
I am trying to create a SSIS package that makes a call to the REST API and insert the responses into the Azure SQL server table. For this I am using the script task and ADO.NET connection manager. The...
user4912134
Votes: 0
Answers: 1
How do I add a Calculated [bit] Data Type field to a SQL Table?
I would like to add a [bit] field that is calculated from a Boolean [int] field
SQL Table looks as follow:
CREATE TABLE [dbo].[AutoIndexBoolean](
[RowID] [int] NOT NULL,
[Boolean] [int] NULL,
...
Evan
Votes: 0
Answers: 1
LINQ select duplicate object values
I have a table:
Name | account info| AccountNumber
-----| ------------| ------
abc | IT | 3000
bdc | Desk | 2000
sed | Kitchen | 3000
afh | work | 4000
hsfs | home ...
Jeff
Votes: 0
Answers: 3
Linq query С# ASP.NET Core
I'm executing a sql script using:
SqlCommand command = new SqlCommand(sqlQuery, connection);
connection.Open();
SqlDataReader reader = command.ExecuteReader();
if(reader.HasRows)
{
while(reader.Rea...
Jeff
Votes: 0
Answers: 1