Hi,
ADOPwdQuery.FieldByName('Name').AsString
if i try this it returns the field but with a lot of space after the name
it returns exactly the amount of charecters in the field - name.
so my...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_10555321.html
I write a class inherit from TAdoQuery.
In this class, I add a property to TAdoQuery's parameters object,
but this property is cann't show in Object inspector,why?????
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_20249279.html
what is the syntax of checking if the current queryfield is an integer, double, a string or a Date/time? I use an MSAccess database
pseudocode:
for i := 0 to FieldCountForMyQuery
if Query.f...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_20863984.html
hi,
i'm using delphi5, connecting to MS SQL Server 2000.
when i set my TADOQuery to CursorLocation=clUseServer, CursorType=ctDynamic i can make a very fast query that represents a huge number...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_21743806.html
hi
i have a problem with TADOQuery,
i made a Query in my form like this :
var SQuery:TADOQuery;
SDataSource;TDataSource;
begin
SQuery:=TADOQuery.create(nil);
SQuery.connection:=my...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_21890357.html
Hi there,
I got this statement
SELECT * FROM sites WHERE stitle LIKE %:S0%
but when I run it, I always get the error Parameter :S0 not found.
If I do
SELECT * FROM sites WHERE stitle=:S...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_21991448.html
Hello Guys,
I have a dbgrid with a dbcheck in it, when I give a double click on the field, it checks or unchecks the field, it depends on the
state of my field.
My problem is that after cha...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_22156804.html
I have a programatically made TAdoQuery. I want to do something when the BeforePost event is triggered. How do I do this since I don't have it on my form?
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_22831258.html
I'm getting a Syntax error when trying to run the SQL Query with TADOQuery.
I don't know hwat I'm doing wrong. Here's the code:
ADOQuery1.SQL.Add('select * from products where (Price) <= "' +...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_22874810.html
How can I close a TADOQuery which query result is empty(o record)?
My program(mssql 2000;windows 2000 server; Delphi5 sp1):
tbLogin is a TADOQuery component.
tbLogin.SQL.Text:=Format...
http://www.experts-exchange.com/Programming/Languages/Pascal/Delphi/Q_11501758.html