|
Friday, July 10, 2009 - 4 Posts by 2 People
Developer in Zen Cart has to deal with a lot of code like:
PHP Code: $query = $db -> Execute
( "SELECT * FROM products" );
while(! $query -> EOF ) {
echo $query -> fields [ 'products_id
I strongly prefer the
while(!$query->EOF)
construct, because it's a simple test of the setting
|
|
Tuesday, August 25, 2009 - 7 Posts by 2 People
Hi there!
I want to query an access database with variable data defined by the user. The "Search
" criteria would be in a textbox. I made a query like
SELECT askID, Question FROM chita WHERE (askID
) ChitaTableAdapter.searchrec(ChitaDataSet1.chita)Did you name the query as "Searchrec" ?
thats exactly how i have...
|
|
Tuesday, August 11, 2009 - 11 Posts by 2 People
I have a query (see query below) which counts the results from two sub queries unioned
. The indivudial sub queries are executing faster ( less than a sec) but the whole query is running for ever...
is the performance if you use UNION ALL and COUNT(*)? Can you post your final query?I tried just changing
|
|
Sunday, November 01, 2009 - 5 Posts by 3 People
Warning: mysql_query() [function.mysql-query]: Unable to save result set in /home/... on line 353
mysql-query() the right one is mysql_query()
and second is your project have not sufficient
Warning: mysql_query() [function.mysql-query]: Unable to save result set in /home/... on line 353
execute command denied ...
|
|
Wednesday, April 15, 2009 - 19 Posts by 2 People
Using to display some data. the first query is a basic query with some joins where i get a lot of data
. my problem occurs in the second query. i want to use some of the results of the first query
So the first query gives you the name of the table you have to query? To refer to a value
|
|
Saturday, January 21, 2006 - 4 Posts by 4 People
Query Failed: ::MySQL error 1065: Query was empty
i can access all other pages accept home page
of relationship), and I open the try to access the new module, I received that Query error.
Any
i installed CRM many times when ever faced any prob i can resolve it even
but today i get one prob
Query Failed: ::MySQL ...
|
|
Thursday, April 09, 2009 - 11 Posts by 2 People
Is there anyway of running a query which has been previously created from with another query???
Im
not talkin about defining a sub query within a query.
I just mean referencing and running an outside
You can use a pre-existing query within a new query in the same way you would use a table
|
|
Monday, July 14, 2008 - 3 Posts by 2 People
E.g
query="select something "
api.fql_query(query,cbk);
function cbk(result, exception
e.g
query="select something "
api.fql_query(query,cbk);
function cbk(result, exception)
{
// What is result object...
Xml
Mido Wazzan -- ASP.NET ApplicationsThank for your response. Is XML object or XML string ?
function callbk(result, exception...
|
|
Tuesday, April 18, 2006 - 5 Posts by 3 People
ARB_occlusion_query instead of NV_occlusion_query
I think it's wise to have a fallback to NV
_occlusion_query if ARB_occlusion_query is not availble. Because on ATI Mobilty 9000 cards ATI have stated
_occlusion_query instead of NV_occlusion_query)
Because previous occlusion query implementation used...
|
|
Saturday, June 25, 2005 - 5 Posts
Is there any way to extend the max length of query string from 128 characters in the mysql_query
API call. I get a syntax error with the query string truncated at 128 characters.
postings.
Below is my php code snippet.
$query = "SELECT bookid FROM review ORDER BY modified DESC
|

)