0
votes
1answer
18 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
76 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
35 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
30 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
28 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
42 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
58 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
67 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
82 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
10 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
31 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
26 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
137 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
55 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
75 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
62 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
50 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
87 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
100 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
77 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
57 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
37 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
67 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
36 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
86 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
84 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
31 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
65 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
37 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
95 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
281 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
49 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
43 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
1
vote
1answer
66 views

Writing SQL queries without table access full

TL;DR I'm using EntityFramework 5.0 with Oracle and need to query a table for two columns only using index with NVL of two columns. Details after hours of attempts... I'll try to organize it as ...
0
votes
3answers
61 views

ASP.NET + SQL Server user management - best practices? [closed]

I'm wondering how to approach the topic of user organizations in ASP.NET WebForms application and SQL Server 2008. Create SQL Servers in-built Logins / Users or Create a Username / User and ...
0
votes
1answer
38 views

DBlink(s) which one is safer: public link or private link?

I'm trying to think of security problems using private/public dblinks. You can see what I'm talking about in the picture below So, as shown in the picture (right option is public and left one is ...
1
vote
3answers
454 views

.Net SHA1CryptoServiceProvider not matching SQL Hashbytes

After converting some plaintext passwords stored in SQL using Hashbytes can't seem to get .Net to generate a proper matching hash. SQL used to convert the passwords: UPDATE Users SET UserPassword = ...
15
votes
13answers
12k views

How to Troubleshoot Intermittent SQL Timeout Errors

We've been having a few instances per day where we get a slew of SQL Timeout errors from multiple applications (System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior ...
-2
votes
2answers
217 views

Display sql table bottom to up

How to display sql table, bottom to top in my aspx page? Just like facebook wall. Last comment shows on top. I want c# code for it.
2
votes
7answers
6k views

Simulating MySql's password() encryption using .NET or MS SQL

I'm updating an old ASP/MySql webapp to ASP.NET/MS SQL. We would like to keep the logins from the old website working in the new app. Unfortunately the passwords were stored in the MySql DB using ...
4
votes
5answers
5k views

Creating safe SQL statements as strings

I'm using C# and .NET 3.5. I need to generate and store some T-SQL insert statements which will be executed later on a remote server. For example, I have an array of Employees: new Employee[] { ...
117
votes
9answers
115k views

What is the syntax for an inner join in linq to sql?

I'm writing a linq to sql statement & I'm just after the standard syntax for a normal inner join with an 'on' clause in C#. ie how do you represent this in LINQ to SQL?: select * from table1 ...

1 2 3 4 5 45