Jump to content

Error Using _SQLite_Escape


sampy
 Share

Recommended Posts

Hello Community,

When i update Autoit on the last version, i have an error in my old script writed in 2.x

This is my Log:

"C:\Program Files (x86)\AutoIt3\Include\SQLite.au3" (894) : ==> Variable used without being declared.:
Func _SQLite_Escape($sString, $iBuffSize = Default)
Func _SQLite_Escape($sString, $iBuffSize = Default)^ ERROR

And this is my code:

_SQLite_Exec(-1, "INSERT INTO Stat VALUES ("&_SQLite_Escape($stmail)&","&_SQLite_Escape($stdal)&","&_SQLite_Escape($stal)&","&_SQLite_Escape($stanno)&","&_SQLite_Escape($stgrup)&","&_SQLite_Escape($stadu)&","&_SQLite_Escape($stbam)&","&_SQLite_Escape($stcog)&","&_SQLite_Escape($stnom)&","&_SQLite_Escape($stcell)&","&_SQLite_Escape($stricev)&","&_SQLite_Escape($stdatarisp)&","&_SQLite_Escape($stdiff)&","&_SQLite_Escape($strispda)&","&_SQLite_Escape($storig)&","&_SQLite_Escape($sttipo)&","&_SQLite_Escape('NO')&","&_SQLite_Escape(1)&","&_SQLite_Escape($numprev)&")")

 

Thank you!!

Link to comment
Share on other sites

_SQLite_Escape() is outdated (and buggy, my bad!). Please replace _SQLite_Escape by _SQLite_FastEscape and everything will smile again.

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

I've tried to reproduce the error to no avail. Inefficient and redundant as it is, _SQLite_Escape() refuses to raise the error mentionned.

I very strongly recommend using _SQLite_FastEscape() for escaping possible single quotes in literal string values.

If you find the function name too long, you can always name it otherwise:

Local $Esc = _SQLite_FastEscape
_SQLite_Exec($hDB, "insert into T values (" & $Esc("I'm a string") & ")")

This wonderful site allows debugging and testing regular expressions (many flavors available). An absolute must have in your bookmarks.
Another excellent RegExp tutorial. Don't forget downloading your copy of up-to-date pcretest.exe and pcregrep.exe here
RegExp tutorial: enough to get started
PCRE v8.33 regexp documentation latest available release and currently implemented in AutoIt beta.

SQLitespeed is another feature-rich premier SQLite manager (includes import/export). Well worth a try.
SQLite Expert (freeware Personal Edition or payware Pro version) is a very useful SQLite database manager.
An excellent eBook covering almost every aspect of SQLite3: a must-read for anyone doing serious work.
SQL tutorial (covers "generic" SQL, but most of it applies to SQLite as well)
A work-in-progress SQLite3 tutorial. Don't miss other LxyzTHW pages!
SQLite official website with full documentation (may be newer than the SQLite library that comes standard with AutoIt)

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...