I want to use a parameterized query to retrieve data. I received error below.
I have three textboxes. First is a TranNumber, second is Address, third is City and State.
This is what I put in s...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21814074.htm...
I have a parameterized Query that I want to execute in ASP.NET but it is not returning any records (but not giving me any errors either). Here is the relevent code:
'************** START ...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_22616241.html
How to use DAO (CDaoRecordset) to call a parameterized query in MS Access? Can this be done? CDaoRecordset doesn't seem to work on predifined queries in Access, only on whole tables. Have previo...
http://www.experts-exchange.com/Programming/System/Windows__Programming/MFC/Q_10085900.htm...
Zones:
Windows MFCDate Answered: 10/04/1998 Rating: 8.0 Views: 0
I have been searching the net for a good example that can provide the complete code, including opening the database connection and calling a pre defined query (with parameters) within the database ...
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_20984760.htm...
Zones:
ASPDate Answered: 05/10/2004 Rating: 8.4 Views: 0
Hi experts,
this is a continuation of an previous question
http://www.experts-exchange.com/Programming/Programming_Languages/Dot_Net/ASP_DOT_NET/Q_21390327.html
---------------------------
...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21390452.html
Hi experts,
Would you look at two different INSERT Queries and help me find out why one works and other does not.
first one that works
==========================================
Dim Cmd2 As...
http://www.experts-exchange.com/Programming/Languages/.NET/ASP.NET/Q_21390836.html
How do I do parameter query in MsSQL? It is working in Oracle.
Set objDB = Server.CreateObject("ADODB.Connection")
objDB.Open dbConnectionString
Set objCmd = Server.CreateObject("ADODB....
http://www.experts-exchange.com/Web_Development/Web_Languages-Standards/ASP/Q_21761925.htm...
Zones:
ASPDate Answered: 03/07/2006 Rating: 9.2 Views: 0
if I were using a MS SQL table I could create a parameterized query by saying:
SELECT OrderID, CustomerID, RepresenitiveID, OrderDate
FROM [Order]
WHERE (CustomerID = @Customer...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_21762846.htm...
I am receiving the below error when running the below query in Query Analyzer. I am not good at all with SQL and am hoping someone can expalin to me how I can make this snytax correct for use as a ...
http://www.experts-exchange.com/Programming/Languages/SQL_Syntax/Q_22762881.html
The query (qryNameOfTheQuery) SQL looks like this (where prmUser and prmTimeInterval are also the name of two text boxes on the form):
PARAMETERS prmUser Text ( 255 ), prmTimeInterval Long;
SELEC...
http://www.experts-exchange.com/Microsoft/Development/MS_Access/Access_Coding-Macros/Q_232...