Skip to content

Script timeout passed error on MAMP phpmyadmin

I’m trying to upload this sql file that’s 225MB to phpmyadmin with MAMP. However, I keep getting this error Script timeout passed, if you want to finish import, please resubmit the same file and import will resume. I’ve changed the php.ini file in MAMP like so: I’ve also changed the se…

ORA-00936 error when running through java class

I am required to use the OracleDataSource for a school project. I have created and tested my query on Oracle Developer and I get the proper output. When I try executing the query through my java code …

How to deal: QSqlQuery::exec() returns false

I’m using Qt and sqlite3. The problem is: QSqlQuery::exec() returns false. I thought it is caused by QSqlDatabase::open() because it always returns true! I found that actually does not matter what i …

Select sum if and having count

I have 3 tables table artist with artist_id, name; table album with album_id, artist_id, name; table songs with song_id, artist_id, album_id, (few more things but I don’t think they are necessary for this problem); I want to select a table with the name of the artist, number of albums with equal or more…