Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Free Pascal
»
Database
(Moderators:
FPK
,
Tomas Hajny
) »
fpweb and sqlquery
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Ann: DeCoperators
by
Thaddy
[
Today
at 07:37:29 am]
I hope FreePascal can sup...
by
Handoko
[
Today
at 07:20:36 am]
How to merge multiple cla...
by
nikel
[
Today
at 04:44:46 am]
Strange happenings with T...
by
mas steindorff
[
Today
at 03:58:33 am]
Weird error
by
xiyi0616
[
Today
at 03:47:04 am]
Can't pass string to TEdi...
by
mas steindorff
[
Today
at 03:45:21 am]
AI assisted translation o...
by
MathMan
[April 12, 2026, 11:48:54 pm]
Remote desktop software i...
by
MathMan
[April 12, 2026, 10:50:37 pm]
Bad Sandwich
by
Guva
[April 12, 2026, 09:55:25 pm]
FPC Unleashed (inline var...
by
440bx
[April 12, 2026, 09:38:20 pm]
ZeosDB and sqlite3
by
dseligo
[April 12, 2026, 09:06:22 pm]
The ever re-appearing /= ...
by
Thaddy
[April 12, 2026, 08:07:09 pm]
Some Lazarus Graphics Rel...
by
Boleeman
[April 12, 2026, 03:45:30 pm]
Some Lazarus Utils N Stuf...
by
Boleeman
[April 12, 2026, 03:39:45 pm]
Ann: Deinline: a de-inlin...
by
Fred vS
[April 12, 2026, 03:17:40 pm]
Little bit...
by
jamie
[April 12, 2026, 01:04:11 pm]
BAScript - Simple scripti...
by
Ñuño_Martínez
[April 12, 2026, 01:00:21 pm]
NiceGrid component for La...
by
Alexandr R
[April 12, 2026, 11:02:54 am]
Idea to solve a circular ...
by
jamie
[April 12, 2026, 10:55:07 am]
Status of Fresnel Project...
by
Thaddy
[April 12, 2026, 08:47:30 am]
Help with OLD code
by
Thaddy
[April 12, 2026, 08:17:11 am]
Can /my/ AI help me with ...
by
MathMan
[April 12, 2026, 07:33:14 am]
Lazarus Image Editor
by
Boleeman
[April 12, 2026, 03:46:20 am]
Splitting Picture into Qu...
by
Boleeman
[April 12, 2026, 02:43:50 am]
fp-h2pas: New C header tr...
by
BildatBoffin
[April 11, 2026, 07:22:29 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: fpweb and sqlquery (Read 5375 times)
dasa2
New member
Posts: 9
fpweb and sqlquery
«
on:
June 14, 2021, 10:19:02 pm »
I am building an HTTP server application with fpweb and want to run a sqlquery to verify that the username exist in db but getting an access violation when i try to run my sqlquery. What am i doing wrong here?
with SQLQuery1 do -> SQLQuery1 = <TSQLQUERY> = Cannot access memory at address 0x170
Code: Pascal
[Select]
[+]
[-]
unit
umain
;
{$mode objfpc}{$H+}
interface
uses
SysUtils
,
Classes
,
httpdefs
,
fpHTTP
,
fpWeb
,
SQLDB
,
DB
,
SQLite3Conn
,
httproute
;
type
{ TFPWebModule1 }
TFPWebModule1
=
class
(
TFPWebModule
)
SQLConnector1
:
TSQLConnector
;
SQLTransaction1
:
TSQLTransaction
;
SQLQuery1
:
TSQLQuery
;
procedure
DoStart
(
ARequest
:
TRequest
;
AResponse
:
TResponse
)
;
private
public
end
;
var
FPWebModule1
:
TFPWebModule1
;
implementation
{$R *.lfm}
{ TFPWebModule1 }
procedure
TFPWebModule1
.
DoStart
(
ARequest
:
TRequest
;
AResponse
:
TResponse
)
;
var
user
:
String
;
begin
user
:
=
ARequest
.
ContentFields
.
Values
[
'user'
]
;
if
user
=
EmptyStr
then
with
AResponse
.
Contents
do
begin
Add
(
'<form action="'
+
ARequest
.
URI
+
'" method="POST"'
)
;
Add
(
'<label for="user">User:</label>'
)
;
Add
(
'<input type="text" name="user" id="user" />'
)
;
Add
(
'<input type="submit" value="Check user" />'
)
;
Add
(
'</form>'
)
;
end
else
begin
with
SQLQuery1
do
begin
Close
(
)
;
Clear
(
)
;
SQL
.
Text
:
=
'SELECT username, password FROM user WHERE username='
+
QuotedStr
(
user
)
;
SQLConnection
.
Connected
:
=
True
;
SQLTransaction
.
Active
:
=
True
;
SQLQuery1
.
Active
:
=
True
;
Open
(
)
;
end
;
if
SQLQuery1
.
RecordCount
=
1
then
AResponse
.
Content
:
=
'user: '
+
user
+
'!'
else
AResponse
.
Content
:
=
'Bad login'
;
end
;
end
;
initialization
RegisterHTTPModule
(
'TFPWebModule1'
,
TFPWebModule1
)
;
HTTPRouter
.
RegisterRoute
(
'*'
,
@
FPWebModule1
.
DoStart
)
;
end
.
«
Last Edit: June 14, 2021, 10:58:59 pm by dasa2
»
Logged
iLya2IK
New Member
Posts: 45
Re: fpweb and sqlquery
«
Reply #1 on:
June 15, 2021, 04:25:23 pm »
I think, that you have not created an instance of the class and are trying to access it.
Look carefully - SQLQuery1 is not even exist
Logged
egsuh
Hero Member
Posts: 1774
Re: fpweb and sqlquery
«
Reply #2 on:
June 16, 2021, 04:04:13 am »
What does
TSQLQuery.Clear
do? Aren't you trying to
SQLQuery1.SQL.Clear;
?
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Free Pascal
»
Database
(Moderators:
FPK
,
Tomas Hajny
) »
fpweb and sqlquery
TinyPortal
© 2005-2018