diff --git a/comp/src/gb.web/.component b/comp/src/gb.web/.component index de6bf7ccd..fa7a8221c 100644 --- a/comp/src/gb.web/.component +++ b/comp/src/gb.web/.component @@ -1,5 +1,5 @@ [Component] Key=gb.web -Version=3.10.90 +Version=3.11.90 Authors=BenoƮt Minisini Include=gb.util.web diff --git a/comp/src/gb.web/.project b/comp/src/gb.web/.project index b4cb3b17a..d6335a017 100644 --- a/comp/src/gb.web/.project +++ b/comp/src/gb.web/.project @@ -1,7 +1,7 @@ # Gambas Project File 3.0 Title=Web applications tools Startup=Main -Version=3.10.90 +Version=3.11.90 VersionFile=1 Component=gb.db Component=gb.web diff --git a/comp/src/gb.web/.src/SqliteSessionManager.class b/comp/src/gb.web/.src/SqliteSessionManager.class index c852b0ec4..9a3ce1e27 100644 --- a/comp/src/gb.web/.src/SqliteSessionManager.class +++ b/comp/src/gb.web/.src/SqliteSessionManager.class @@ -295,7 +295,7 @@ Public Sub Exist(Key As String) As Boolean If $cDelete.Exist(Key) Then Return If $cValues.Exist(Key) Then Return True - Return $hConn.Exec("SELECT 1 FROM values WHERE sKey = &1", Key).Available + Return $hConn.Exec("SELECT 1 FROM \"values\" WHERE sKey = &1", Key).Available End