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
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Why isn't Lazarus / Free ...
by
korba812
[
Today
at 12:41:41 am]
TListView - please advis...
by
TRon
[
Today
at 12:01:23 am]
Randomally generated code
by
rvk
[April 28, 2025, 11:06:58 pm]
Updating and redrawing SV...
by
PawelO
[April 28, 2025, 11:00:19 pm]
Something kind of funny a...
by
Bart
[April 28, 2025, 10:23:09 pm]
coded DBUG?
by
440bx
[April 28, 2025, 10:20:02 pm]
EOF Problem
by
OC DelGuy
[April 28, 2025, 09:38:57 pm]
hwnd type error
by
TBMan
[April 28, 2025, 09:10:31 pm]
'Events' Quiry
by
J-G
[April 28, 2025, 07:31:06 pm]
New shader examples for r...
by
Guva
[April 28, 2025, 07:18:51 pm]
Liverpool's wins are fib...
by
Thaddy
[April 28, 2025, 05:47:57 pm]
Why there is no build-in ...
by
Seenkao
[April 28, 2025, 05:41:52 pm]
Lazarus Install Question
by
440bx
[April 28, 2025, 04:28:40 pm]
Spiral search of an image
by
user5
[April 28, 2025, 04:05:34 pm]
[SOLVED] Testing with SQL...
by
1HuntnMan
[April 28, 2025, 03:53:35 pm]
Fpcupdeluxe
by
Philippe1
[April 28, 2025, 03:09:12 pm]
[Solved] Check if URL is ...
by
d2010
[April 28, 2025, 02:23:01 pm]
"Object Oriented Programm...
by
d.ioannidis
[April 28, 2025, 02:22:24 pm]
[solved with GENIUS demo]...
by
Nicole
[April 28, 2025, 01:53:07 pm]
Ctrl-V doesn't work anymo...
by
TRon
[April 28, 2025, 12:30:26 pm]
TStringGrid: what is the ...
by
Handoko
[April 28, 2025, 12:08:57 pm]
UUIDv7 library and demo
by
Thaddy
[April 28, 2025, 11:38:15 am]
macOS 15.4 Breaks All Com...
by
Hansaplast
[April 28, 2025, 11:35:27 am]
ShowModal has a bug in Li...
by
TRon
[April 28, 2025, 11:34:11 am]
Reducing the saturation o...
by
MarkMLl
[April 28, 2025, 11:11:47 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: fpweb and sqlquery (Read 5175 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: 1594
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