Tagged Questions
0
votes
1answer
51 views
SQL Error: The data types text and nvarchar are incompatible in the equal to operator.`in C#
This code was working perfectly fine, today I tried to execute it, and now I am facing this exception:
I have this SQL error :
Exception Details: System.Data.SqlClient.SqlException: The data ...
0
votes
2answers
57 views
How to display progress bar while executing big SQLCommand VB.Net
I have this big SQL command that usually returns 20 000 - 100 000 rows of data.
But as soon as i call the executeMyQuery function, the program hangs for a few seconds depending on how large the return ...
0
votes
3answers
37 views
How do I enter content in a richtext editor to a database in c#?
I am trying to build a simple CMS as a project to help me learn and improve my asp.net and c# skills. I have set up my web form and am entering the content into the database using the following code:
...
0
votes
1answer
29 views
Connect to mdb without knowing the cols?
I have a mdb file with a lot of data.
I don't know the names of the tables or the cols inside.
I need to build a c# app that will show some details on this db. What is the options to view the ...
-2
votes
2answers
23 views
SQL Error mesage relating to length of identifier [closed]
I get the following error, but not quite sure what it means:
Error message: System.Data.SqlClient.SqlException: The identifier that
starts with '[DEFAULT], 1 AS rowJoiner FROM ...
5
votes
1answer
57 views
Entity Framework 5 and SQL Queries
I am facing serious performance issues... My query is supposed to filter Products with SQL directly in database. When I execute this code, it doesn't, and it returns all products and filters them in ...
0
votes
0answers
19 views
Dependent drop down lists in form view
I am trying to create two drop down lists in a form view where the values that are displayed in the second drop down are dependent upon the first drop down.The first list contains the class numbers ...
2
votes
1answer
84 views
LINQ - Not returning the same value as SQL Server
I have a really weird issue.
I have this query:
var systemAppEntityViewModelFieldCustom_SecurityByUserList = (from t in coreEntityModel.SystemAppEntityViewModelFieldCustom_SecurityByUser
...
0
votes
0answers
35 views
how to authenticate for internal and external users
In my application I have a login page. I want this login page to appear only to the external users. Internal users should directly go to the application using windows sign information. So, if external ...
0
votes
1answer
22 views
Comparing InnoDb and MyIsam MySql Tables for Equality
I am trying to compare two MySql tables from two separate databases, one uses a MyIsam engine and the other uses an InnoDb engine.
I need to be able to quickly determine whether the tables store ...
2
votes
3answers
77 views
NULL value checking
I am trying to run the following code but the error occurin says you have error near the @tid. The parameter is supposed to be taking NULL value.
public static DataTable ...
0
votes
1answer
37 views
.NET web service with many requests
i have a .net web-service in some server.
this web-service gets lots of requests per day.
there is an android project that allot of people using it and exchange data with this ws.
something like 20 ...
1
vote
2answers
33 views
Move rows from table to table
I try to move rows that expired from one table to another with this:
MySqlConnection connect = new MySqlConnection(connectionStringMySql);
MySqlCommand cmd = new MySqlCommand();
cmd.Connection = ...
1
vote
1answer
32 views
Persisting Object Graph to SQL Server in a single transaction
I am having an issue coming up with a solution that I think must be a common problem to be solved by anyone writing to a database. I keep thinking that there is an obvious solution that I'm ...
2
votes
1answer
34 views
Why is my datatable cell returning a null value?
I have an access database and a stored query. Here is my query...
SELECT MAX(CLNG(RIGHT(ProjectNum, 6))) AS LastDigits
FROM project_master_query
WHERE ((ProjectNum LIKE (IIF([@priorityDefID] = 4, ...
1
vote
3answers
42 views
Getting error “A network-related or instance-specific error occurred while establishing a connection to SQL Server…”
Normally, I'd be able to figure this out. But, what I have going on is I have an MVC4 app that, in its current state, will NOT connect to any kind of data source. I believe that MVC, out of the box, ...
1
vote
1answer
30 views
Detached criteria - how to to specify join conditions
I am trying to retrieve some data from database using Nhibernate detached criteria. The problem is that I dont know how to specify the join conditions in Detached criteria. Please find my code below,
...
2
votes
0answers
45 views
SQL Express client memory usage differs to SQL Enterprise client memory usage
I am experiencing a big difference in .Net application memory usage using the same app against two copies of the same database. The only difference is that in scenario 1 I am using a local copy of ...
2
votes
1answer
59 views
Why the AsQueryable following by Any leads to select without Where clasue?
I am using Entity framework 4 and I have the following piece of code:
public decimal GetSchoolSuccessRate(EvaluationComparationFilter filter)
{
return this.GetSuccessRate(x => x.TestCampaignId ...
0
votes
1answer
71 views
How do I convert a nested SQL select statement with multiple aggregate functions into LINQ?
I have a table where each row contains a team id, a user id and a boolean value indicating whether or not that user is a representative. Users can be representatives for more than one team and teams ...
2
votes
3answers
98 views
Passing comma delimited parameter to stored procedure in SQL
If I pass call my stored procedure from T-SQL:
exec [dbo].[StoredProcedureName] '''Vijay'', ''Rana'', 1, 0'
in SQL Server Mgmt Studio, it works fine but when I call it from my application it gives ...
0
votes
0answers
16 views
J2SE SDK configuration in oracle sql developer
I installed oracle sql developer in my machine. When I try to open sqldeveloper.exe, I get a popup that prompts me to select a file path for java.exe
I have java.exe at C:\Program ...
0
votes
0answers
35 views
SQL change static connection string if there is no connection
I have static class, which return connection string like:
public static string cString()
{
//(...)
string connString = String.empty;
//check if it have to read connString from file or ...
0
votes
1answer
29 views
Notify running Windows app when line is inserted in sql table
I need to have a Windows application (that I am writing) somehow get information that a new record has been added to a certain SQL table. The SQL Server is MS SQL Server 2008, and the Windows app is ...
1
vote
4answers
140 views
How to use List<int> as SQL parameter in C# [duplicate]
I am trying to use List< int> as SQL parameter using this code:
var listID= new List<int>() { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
using (var sqlConnection = new ...
0
votes
1answer
18 views
What does PluralizingEntitySetNameConvention do?
I'm learning code first and I'm going over the default conventions (http://msdn.microsoft.com/en-us/library/gg696316(v=vs.103).aspx), and I'm wondering what PluralizingEntitySetNameConvention does. I ...
1
vote
1answer
28 views
SQL analogue of SelectMany
Good day!
I'm using mssql and want to do something like SelectMany() is .NET .
I have a table with some codes. Also I have stored function that gets code and returns several records. So, the goal is ...
0
votes
0answers
67 views
How to extract result returned from tableadapter query that returns multiple values in vb.net
Ok here goes,
I have a tableadapter query that executes the following
SELECT SNAME, SDOB, SCODE AS SBAR
FROM SVALUES
GROUP BY SCODE, SNAME, SDOB
HAVING (SCODE = ?)
And ...
1
vote
1answer
84 views
How to use DataAdapter with SqlTransaction in C#?
I need to create 2 buttons, one for starting a transaction (startButton) and one for committing a transaction (commitButton).
I got stuck trying to implement it for the SELECT command.
When I press ...
1
vote
2answers
68 views
Fast serialization and deserialization using dynamically emitted POCOs
I am currently serializing SQL table rows into a binary format for efficient storage. I serialize/deserialize the binary data into a List<object> per row. I'm trying to upgrade this to use ...
1
vote
1answer
58 views
System Data SqlClient SqlException
I have to execute an updating query :
using (SqlCommand sqlCmd = new SqlCommand("UPDATE Test SET Testedpiece = Testedpiece + 1 and Rate = (Testedpiece * 100) / Totalpiece WHERE IDSuperlot = ...
-2
votes
0answers
26 views
Function that Converts SQLDataType into .Net Type [closed]
Do you have any code for this function?
Function GetNetType(sqltype As SqlDataType) as Type
'code
End Function
A function that converts a sqldatatype into (String,Int,Int64,TimeSpan). Can ...
0
votes
1answer
50 views
Insertion query C# sql server
I have an insertion query in this function :
public string Insert_Piece(List<Piece> liste)
{
this.Connect();
using (connexion)
{
...
0
votes
2answers
97 views
Dynamic Queries: Change table name in LINQ-to-Entities query
Long time lurker, recent newcomer.
Been struggling a bit with queries with LINQ-to-Entities. I am using Visual Studio Express 2012 for Web and Entity Framework 4.0. Bear with me, it's a long ...
0
votes
2answers
107 views
How to use Where clause with datetime in SQL Server 2008
I have written this query:
SELECT *
FROM w_tbl
WHERE DID NOT IN (SELECT DId FROM tbl_Assign)
AND CAST(MeasDateTime AS Date) = @dta
ORDER BY
CAST(MeasDateTime as DATE) DESC
So as you can ...
1
vote
2answers
78 views
Fetch multiple values from same form
I have a form in which I am gathering information from the user. Based on the value of one of the dropdowns, I am showing a panel to the user. This panel contains textboxes, dropdowns etc.
Suppose the ...
0
votes
3answers
62 views
Syntax Error on a Sql Parametrized update command - c#
It's my first SQL Parametrized update command in c# and i have a syntax error when i exectued my update.
Here is my code :
string maRequete = "UPDATE " + strNomTable + " set "
+ "evetype = ...
0
votes
1answer
43 views
Sql Parameters and No command text is defined for the command object error
I would like to create my first SQL Parameters command with c#, and i have an error : "No command text is defined for the commande object"
Here is my code :
string maRequete = "UPDATE " + ...
2
votes
1answer
74 views
“PublicKeyToken <..> is not a valid extension type.” Error?
I added an UPDATE statement to my application which works fine. It updates the database correctly and other than the four error messages, I am seeing no problems. What does this mean?
Error 1 ...
0
votes
1answer
40 views
Queries - SQL vs. SharePoint
I want to be able to quantify the difference in performance between SQL and SharePoint when executing queries. I know that SQL is faster, but I want some way to quantify this without have to right 2 ...
2
votes
1answer
34 views
Multiple NHibernate sessions in one Transanction
I need to enlist several NHibernate sessions in one transaction. Currently I do the following:
1) Create a SQL connection, dbConn;
2) Call ISession session = ...
0
votes
1answer
95 views
Search on gridView does nothing
I have a gridVIew which has a datasource of a table in Access database.
I want to add search functionality on this gridview. I added a textBox and search button. My Code is
protected void ...
1
vote
3answers
85 views
Which is better approach to stop sql injection
I have database function which select data on different where condition's.There is two possible approach to achieve this.
First
public string select(string name)
{
string s = null;
...
1
vote
2answers
32 views
DataReader Name Based Lookups - What's actually happening under the hood that makes them so much slower than ordinal based lookups in loops?
It makes sense that a name-based lookup might be a little slower with multiple matching rules than one that is an integer index. However, I have a hard-time believing that this explains a 3% (or 5-7% ...
0
votes
0answers
73 views
Oracle / ADO.NET - ORA: 00904 “Invalid Identifier” error when calling from C#
I'm trying to do a bog-standard select statement from an oracle database using ADO.NET, and getting the following:
Oracle.DataAccess.Client.OracleException : ORA-00904: : invalid identifier
The ADO ...
0
votes
2answers
38 views
Oracle Parametrized Query from .Net
So this is the error I have been getting: ORA-01036: illegal variable name/number
All I am doing is trying to update the table with these values. The values are not null and each of the variables in ...
1
vote
2answers
101 views
The best way to insert foxpro 6 table by C#
I have an assignment that will insert records to a foxpro table.
There is a column called “submitid”, but it is not a primary key. I will have to insert a number by increment of max(submitid) + 1.
...
1
vote
7answers
293 views
Web App to SQL Server Not Connecting ( Error Locating Server/Instance Specified)
I know this is an often asked question, but I'm still receiving this error and I have tried:
Using localhost, the IP address and the instance name in the
connection string
Changing the SQL Server ...
0
votes
0answers
56 views
Overlapping nullable foreign keys in LINQ to SQL associations
I'm dealing with a common address object in LINQ to SQL that contains a country and a state, both of which participate in foreign key relationships to country and state tables. The country will always ...
0
votes
1answer
44 views
Display Column information from database into my dropdown
I am trying to display Column information from database into my dropdown. After selecting the item in the dropdown (1) the next dropdown (2) must show the list of items present in selected field..net





