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
Practical Ways to Help La...
by
Handoko
[
Today
at 03:35:08 am]
Who avalible TvisualPlani...
by
eldonfsr
[
Today
at 02:27:07 am]
Why isn't Lazarus / Free ...
by
Joanna from IRC
[
Today
at 12:38:52 am]
FPC 3.2.2 + NASM Windows ...
by
munair
[May 13, 2025, 11:49:04 pm]
Include Informative Line ...
by
munair
[May 13, 2025, 11:36:15 pm]
BGRAGtkBitmap
by
Fred vS
[May 13, 2025, 10:44:48 pm]
Help Wanted
by
HotShoe
[May 13, 2025, 10:21:47 pm]
Simple Sine Table Generat...
by
Gigatron
[May 13, 2025, 09:11:57 pm]
Some links from Lazarus H...
by
PascalDragon
[May 13, 2025, 09:08:50 pm]
3D Dot Ball
by
Gigatron
[May 13, 2025, 09:06:56 pm]
How to use MySQL by PHP ?
by
Packs
[May 13, 2025, 09:06:12 pm]
Pdf file size is huge wit...
by
PascalDragon
[May 13, 2025, 09:00:02 pm]
problem gdb13.1 with laza...
by
Fred vS
[May 13, 2025, 08:52:49 pm]
how to update from Lazaro...
by
wp
[May 13, 2025, 08:03:19 pm]
libmicrohttpd simple exam...
by
nomorelogic
[May 13, 2025, 07:59:38 pm]
Binary Matrix Effect
by
Gigatron
[May 13, 2025, 07:35:53 pm]
Codetools bug
by
440bx
[May 13, 2025, 06:58:36 pm]
Problems with Word
by
w click
[May 13, 2025, 05:00:50 pm]
Break program and debug
by
MarkMLl
[May 13, 2025, 04:37:48 pm]
[SOLVED] .Text property o...
by
CM630
[May 13, 2025, 03:38:09 pm]
LAMW build errorr: cannot...
by
mirce.vladimirov
[May 13, 2025, 02:25:06 pm]
Lazarus Release 4.0
by
Jonax
[May 13, 2025, 02:09:18 pm]
TBCFluentProgressRing bug
by
hedgehog
[May 13, 2025, 01:59:51 pm]
[SOLVED] How to "Jump To"...
by
Markus
[May 13, 2025, 01:58:55 pm]
Can copy area ?
by
wp
[May 13, 2025, 01:06:25 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: fpweb and sqlquery (Read 5190 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: 1600
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