Alaric ![](images/flags/Czech Republic.png)
Journeyman
![*](images/star.gif)
Posts: 227
Likes Given: 7
Likes Received: 9 in 4 posts
Joined: Oct 2012
Reputation: 7
![]()
|
MYSQL - table in sphere memory
Hey fellas,
I've got an issue with SQL command.
Table: id(int,A_I, primary key), login(varchar(16)),heslo(varchar(16)),email(varchar(80)), and some 6 more columns... first name, last name, hash, date, approved, approved_client.
Quote:1, When I query this command "SELECT login FROM accounts WHERE approved='1'"
DB.ROW.NUMROWS = 1
DB.ROW.NUMCOLS = 1
DB.ROW.0.0 = :actual login name:
DB.ROW.0.login = :actual login name:
=> it works.
Quote:2, "SELECT login,heslo FROM accounts WHERE approved='1'"
DB.ROW.NUMROWS = 1
DB.ROW.NUMCOLS = 2
DB.ROW.0.0 = :actual login name:
DB.ROW.0.login = :actual login name:
DB.ROW.0.1 = :actual heslo:
DB.ROW.0.heslo = <--------------- returns nothing
=> it somehow works with indexes.
Quote:3, "SELECT login,heslo,email FROM accounts WHERE approved='1'"
DB.ROW.NUMROWS = 1
DB.ROW.NUMCOLS = 3
DB.ROW.0.0 = :actual login name:
DB.ROW.0.login = :actual login name:
DB.ROW.0.1 = :actual heslo:
DB.ROW.0.heslo = <--------------- returns nothing
DB.ROW.0.2 = <--------------- returns nothing
DB.ROW.0.email = <--------------- returns nothing
=> can't access data from more than 2 columns
Release 0.56c, 31. August
Ideas what might be the problem? When I use "SELECT *", it says it has 10 columns but I can access only the first column with index or name and the second only with index.
(This post was last modified: 09-26-2014 07:17 PM by Alaric.)
|
|
09-26-2014 07:14 PM |
|
|
Ben ![](images/flags/Canada.png)
Sphere Developer
![*](images/star.gif) ![*](images/star.gif) ![*](images/star.gif) ![*](images/star.gif) ![*](images/star.gif)
Posts: 612
Likes Given: 2
Likes Received: 123 in 70 posts
Joined: Mar 2010
Reputation: 18
SphereCommunity
![](http://forum.spherecommunity.net/Community.png)
|
|
09-27-2014 03:52 AM |
|
|
Alaric ![](images/flags/Czech Republic.png)
Journeyman
![*](images/star.gif)
Posts: 227
Likes Given: 7
Likes Received: 9 in 4 posts
Joined: Oct 2012
Reputation: 7
![]()
|
RE: MYSQL - table in sphere memory
I don't set anything. It's the output. It was just information what it returns. Not declaration.
Real code:
Code:
DB.QUERY "SELECT id,login,heslo,email FROM `ucty_zadosti`"
IF <DB.ROW.NUMROWS>
serv.b DEBUG: <DB.ROW.0.0>
serv.b DEBUG: <DB.ROW.0.1>
serv.b DEBUG: <DB.ROW.0.2>
serv.b DEBUG: <DB.ROW.0.3>
serv.b DEBUG: <DB.ROW.0.id>
serv.b DEBUG: <DB.ROW.0.login>
serv.b DEBUG: <DB.ROW.0.heslo>
serv.b DEBUG: <DB.ROW.0.email>
ENDIF
output:
Code:
DEBUG: 115
DEBUG: Alaric
DEBUG:
DEBUG:
DEBUG: 115
DEBUG:
DEBUG:
DEBUG:
(This post was last modified: 09-27-2014 05:34 AM by Alaric.)
|
|
09-27-2014 05:19 AM |
|
|
Extreme ![](images/flags/Brazil.png)
Grandmaster Poster
![*](images/star.gif) ![*](images/star.gif) ![*](images/star.gif)
Posts: 1,141
Likes Given: 217
Likes Received: 90 in 77 posts
Joined: May 2012
Reputation: 20
SphereCommunity
![](http://i.imgur.com/NUZSt.png)
|
|
09-27-2014 06:07 AM |
|
|