Ask a Question related to MySQL, Design and Development.
-
geetha.veeraiah@gmail.com #1
MySQL Database not retrieving the full database
Hi,
I am using MySQL and PHP for my repository. It has 500+ records. till
now it was displayiing all records in the database, but since from one
week its not displaying all 500+, its showing only 400 records..
even in command mode its retrieving only 400 records. please help me to
solve this problem. what may be the problem i am not able to traceout.
and if i give the following command it will show records in command
line. "select soft_id, soft_title, file_name from maintable where
soft_id='530';"
Waiting for reply
Geetha
geetha.veeraiah@gmail.com Guest
-
Retrieving images to flash from SQL database
I've been reading about how, with flash, read and write from SQL server database. But I only finded articles about read and write text data. I need... -
Retrieving info from database
Thanks to a lot of excellent advice from this newsgroup I have managed to get a site working which is database driven. I would now like to know if... -
clamav install on Sid fails on retrieving database
Hi, I am trying to install clamav, to be able to scan my email and files etc for viri. I am running Sid, all packages are fully updated. No funky... -
Retrieving (Data + Fieldnames) from database to array?
Hi, I'd like to poll a database and get the table contents, as well as the field names from that table. I've been to php.net but this time I... -
Database record retrieving
> They have links to actually, they do, but they just use a more complex layout, among other things. for instance, the center column would be... -
geetha.veeraiah@gmail.com #2
MySQL Database not retrieving the full database
Hi,
I am using MySQL and PHP for my repository. It has 500+ records. till
now it was displayiing all records in the database, but since from one
week its not displaying all 500+, its showing only 400 records..
even in command mode its retrieving only 400 records. please help me to
solve this problem. what may be the problem i am not able to traceout.
and if i give the following command it will show records in command
line. "select soft_id, soft_title, file_name from maintable where
soft_id='530';"
Waiting for reply
Geetha
geetha.veeraiah@gmail.com Guest
-
Jerry Stuckle #3
Re: MySQL Database not retrieving the full database
[email]geetha.veeraiah@gmail.com[/email] wrote:
How do you know you have over 500 rows in the table? It sounds to me> Hi,
>
> I am using MySQL and PHP for my repository. It has 500+ records. till
> now it was displayiing all records in the database, but since from one
> week its not displaying all 500+, its showing only 400 records..
>
> even in command mode its retrieving only 400 records. please help me to
> solve this problem. what may be the problem i am not able to traceout.
> and if i give the following command it will show records in command
> line. "select soft_id, soft_title, file_name from maintable where
> soft_id='530';"
>
> Waiting for reply
> Geetha
>
like you've only got 400 rows.
And your SELECT statement will only show row(s) which have soft_id equal
to '530', not all rows.
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
[email]jstucklex@attglobal.net[/email]
==================
Jerry Stuckle Guest
-
geetha.veeraiah@gmail.com #4
Re: MySQL Database not retrieving the full database
Hi,
There are 539 records, i can see them if i give the query like
select soft_id, soft_title from maintable where soft_id='499';
this query will show the soft_id and corresponding soft title which we
have uploaded. I can see up to 539 software one by one by using this
query, but if i give
select * from maintable;
this query retrieves only 400 software details
that means records are there, but not displaying them.
Please help me in this regard
Regards
Geetha
Jerry Stuckle wrote:> [email]geetha.veeraiah@gmail.com[/email] wrote:>> > Hi,
> >
> > I am using MySQL and PHP for my repository. It has 500+ records. till
> > now it was displayiing all records in the database, but since from one
> > week its not displaying all 500+, its showing only 400 records..
> >
> > even in command mode its retrieving only 400 records. please help me to
> > solve this problem. what may be the problem i am not able to traceout.
> > and if i give the following command it will show records in command
> > line. "select soft_id, soft_title, file_name from maintable where
> > soft_id='530';"
> >
> > Waiting for reply
> > Geetha
> >
> How do you know you have over 500 rows in the table? It sounds to me
> like you've only got 400 rows.
>
> And your SELECT statement will only show row(s) which have soft_id equal
> to '530', not all rows.
>
> --
> ==================
> Remove the "x" from my email address
> Jerry Stuckle
> JDS Computer Training Corp.
> [email]jstucklex@attglobal.net[/email]
> ==================geetha.veeraiah@gmail.com Guest
-
Dikkie Dik #5
Re: MySQL Database not retrieving the full database
If you can see a record with id 499, that does not mean that all records
with lower id values still exist (or have even existed altogether). The
query:
SELECT COUNT(0) FROM maintable
should tell you how many records there are.
Best regards
[email]geetha.veeraiah@gmail.com[/email] wrote:> Hi,
>
> There are 539 records, i can see them if i give the query like
>
> select soft_id, soft_title from maintable where soft_id='499';
> this query will show the soft_id and corresponding soft title which we
> have uploaded. I can see up to 539 software one by one by using this
> query, but if i give
>
> select * from maintable;
> this query retrieves only 400 software details
>
> that means records are there, but not displaying them.
>
> Please help me in this regard
>
> Regards
> Geetha
>
> Jerry Stuckle wrote:>>> [email]geetha.veeraiah@gmail.com[/email] wrote:>> How do you know you have over 500 rows in the table? It sounds to me>>> Hi,
>>>
>>> I am using MySQL and PHP for my repository. It has 500+ records. till
>>> now it was displayiing all records in the database, but since from one
>>> week its not displaying all 500+, its showing only 400 records..
>>>
>>> even in command mode its retrieving only 400 records. please help me to
>>> solve this problem. what may be the problem i am not able to traceout.
>>> and if i give the following command it will show records in command
>>> line. "select soft_id, soft_title, file_name from maintable where
>>> soft_id='530';"
>>>
>>> Waiting for reply
>>> Geetha
>>>
>> like you've only got 400 rows.
>>
>> And your SELECT statement will only show row(s) which have soft_id equal
>> to '530', not all rows.
>>
>> --
>> ==================
>> Remove the "x" from my email address
>> Jerry Stuckle
>> JDS Computer Training Corp.
>> [email]jstucklex@attglobal.net[/email]
>> ==================Dikkie Dik Guest



Reply With Quote

