1
vote
0answers
16 views

MySQL FTS boolean mode operator customizing

I'm using the InnoDB FTS of MySQL 5.6.10 and want to change the default behavior of the boolean operators. Note In implementing this feature, MySQL uses what is sometimes referred to as implied ...
0
votes
1answer
60 views

different result multiple query with rand boolean mysql and php

I need to give a result that differs: You can eat sandwich. You can eat sandwich but cannot eat donuts. You can eat donuts and drink. The whole thing must be pick at random. The problem is the ...
10
votes
4answers
165 views

How to check against all joins when generating a score using MYSQL

I'm finding this fairly hard to explain so please bare with me here... I'm using MYSQL to generate a score for each result returned by a query. The results are then ordered by the score. The part ...
0
votes
2answers
52 views

Select last row of mysql table and edit and change its boolean value

I am looking for the correct way to go about selecting the last row of a table and then change a value of a column(boolean) to true. I am unsure if it is possible if you can do it with one PDO query ...
0
votes
1answer
24 views

Condition to check a BIT field

...and I'm checking this field like so: if((bool)$website['IsDeleted']) { } but it ALWAYS returns an empty string regardless of the value in the MySQL field wether its 0 or 1: ["IsDeleted"]=> ...
0
votes
1answer
73 views

Simple Boolean function

I currently have a table which currently displays information about a patient and calculates their waiting time. I have a Boolean value in the patient table; Name Type Value Examined ...
-6
votes
1answer
162 views

Warning: mysqli_fetch_row() expects parameter 1 to be mysqli_result, boolean given [duplicate]

I checked your site, there are a lot of close hits, but none seem to apply. Here is my code: $dbhost = 'localhost'; $dbname = 'db'; $dbuser = 'user'; $dbpswd = 'pass'; $dbconnection = ...
0
votes
1answer
58 views

In MySQL, how do I insert 1 when string value is 'true', 0 when false, while preserving nulls

I am using an INSERT query that SELECTs from a plain-text database into a more query-friendly database. The following is simplified a lot to prevent confusion with unnecessary information, if I've ...
-1
votes
2answers
72 views

How to pass boolean argument to php function?

When I try to get the value of "sold" and "featured" I get nothing. What am I doing wrong? function list_products($sold = false, $featured = false) { global $link; $result = ...
0
votes
1answer
27 views

How to query mysql without a table?

I wonder if I can do a simple boolean check with mysql. I mean can I do something like SELECT WHERE DATE(`2013-03-25 01:22:26`) = CURDATE() to return just true or false? or a php equivalent of ...
1
vote
1answer
2k views

mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in [duplicate]

I'm have some trouble checking if an FB User_id already exists in my db (if it doesn't it should then accept user as a new one and else just load the canvas app). I ran it on my hosting server and ...
-2
votes
4answers
54 views

Code error after moving host: mysql_fetch_array() expects parameter 1 to be resource, boolean given in [duplicate]

So I have moved to a new host (from a free host) to Crazy Domains, and everything seemed fine, but some of the codes seem to be playing up. Did some research, it appears to be the fetch arrays. Now, ...
0
votes
2answers
74 views

MySQL query help… checking true or false?

Okay, I have a customer table and what I want to do is if the customer's gender is Male, the I want to concat his name with Mr. else if it is Female, the it should be concated with Ms. how can I ...
0
votes
0answers
46 views

jqxgrid boolean filter php side using mysql

How can I distinguish in server side, a boolean filter from other data type? My problem is that the php function for build the where filter query, doesn't distinguish between boolean and other data ...
2
votes
3answers
100 views

PHP mysql_connect not returning boolean

I have the following PHP code: $con = mysql_connect("localhost","name","pass") or die(mysql_error()); $db = "db"; mysql_select_db($db,$con); Now in my experience, $con should be true or false. ...
3
votes
4answers
261 views

Is it possible for a mysql query to return true/false instead of values?

I have a table: custID orderID orderComponent ===================================== 1 123 pizza 1 123 wings 1 234 breadsticks 1 239 ...
0
votes
2answers
342 views

C# use true/false from MySql database to either continue or show error

I need my app to get a true / false statement from database & do something with it. In my Database i have a row called "ban" wich is TinyInt(1) for a true / false statement. If a user types his ...
-3
votes
2answers
352 views

Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given on line 26 [duplicate]

Possible Duplicate: Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given I'm trying to get my forum system going and I keep getting this error: Warning: ...
1
vote
0answers
86 views

mysql fulltext boolean search with asterix

I have a query like below: SELECT prd_id FROM products WHERE MATCH (prd_search_field) AGAINST ('+gul* +yetistiren* +adam*' in boolean mode); This doesn't return the rows including 'gul'. ...
0
votes
0answers
107 views

checkbox form with php and mysql

I can't figure this out to save my life, I'm far from educated in php and mysql, but I'm trying here, I'd appreciate any help: What I am trying to accomplish is create a form with checkboxes, a drop ...
2
votes
1answer
180 views

BOOLEAN Search MySQL not working for certain words

I am having a problem with boolean searching, firstly I thought it was something wrong with my database/table but then i tried creating following sample table with 1 column and sample values and ...
0
votes
1answer
130 views

MySQL: Boolean fulltext, search for words that begin/end with x?

Is it possible to match against words that begin or end with the searchstring? Example: I want to find a column that contains the word "pineapple". I want to find that row by searching for "pine" or ...
2
votes
2answers
594 views

To deal with 'Boolean' values in PHP & MySQL

Currently I'm using Tinyint(1) to indicate Boolean values in my MySQL databases, which I really don't like that. So, how I could store and retrieve Boolean values in my MySQL databases via PHP? How ...
0
votes
1answer
54 views

boolean flag with multiple same records

What is the best solution for inserting/updating boolean values from my table. Every week or month, the number of point can be changed, for example current Data: ...
1
vote
2answers
440 views

Rails booleans - True and False vs 1 and 0

I recently added a new 'submitted' attribute to a Comment model in a project I'm working on. In the migration, I created the column like this: add_column :comments, :submitted, :boolean. Note: I'm ...
2
votes
2answers
128 views

false OR false = true in MySQL? Very odd behaviour

Basically, my 0 OR 0 is returning 1 - that's not really what I wanted :) I'm not really sure why because if I select 0 OR 0 I get 0.. I think this could be because is_premium_dealer is an ...
1
vote
1answer
138 views

MySQL string to set and get intersection

I have a bad-projected database which have a ID sets in text columns like "1,2,5,10". I need to get an intersection of two columns which are set by same way. I don't like to do it using PHP or another ...
0
votes
2answers
429 views

Why is this returning bool(false)?

I have this query that checks if a movement exists and supposed to return true or false. This query function movement_performed_today($class_id, $client_id){ $class_id = (int)$class_id; $client_id = ...
0
votes
1answer
86 views

MySQL data structure vs. calculated data for Checkbox type data

Assuming you have a multiple boolean fields within a common category, which database storage method is more efficient for both speed and processing (for both MySQL and PHP)? For example, if choosing ...
2
votes
3answers
160 views

How to query a complex boolean condition from MySQL table

I have the following table for personal messages: id* sender* recipient* del_by_rec del_by_send -+----------+-------------+-----------+-----------+ 2 tom beth 0 ...
0
votes
0answers
226 views

MySQL match against Boolean Mode search - apostrophe

I'm using a match against query in boolean mode to create a search feature. The search works, and returns results how I would expect them to, except that there is one problem with words with ...
0
votes
2answers
125 views

Assigning a BOOL from a MySQL result

I'm hacking together my first ruby script to read and write to/from mysql. I want to know if a certain record exists. I have tried: sql = "SELECT EXISTS(SELECT * FROM UserTrucks WHERE User = ? AND ...
0
votes
0answers
146 views

How to use ActiveAdmin with a model having a boolean primary key?

I have a table 'series' having 2 primary keys: SERIES_ID :integer(4) not null APPROVED :boolean(1) not null In the model, I defined the primary keys and appropriate ...
0
votes
2answers
369 views

PHP/Codeigniter - MySQL error on fulltext search?

I'm trying to perform a fulltext search with codeigniters built in Active Record methods. I had a "custom" query string before that i pretty much copied into codeigniter code (so to speak). Somewhere ...
4
votes
1answer
2k views

BOOLEAN or TINYINT confusion

I was designing a database for a site where I need to use a boolean datetype to store only 2 states, true or false. I am using MySQL. While designing the database using phpMyAdmin, I found that I have ...
0
votes
3answers
123 views

Checkbox value in mysql

We had a little discussion about how to save a newly introduced checkbox value inside our MySQL database. The checkbox can be 'on' or 'off' but sometimes is not shown at all. My idea is to simply save ...
0
votes
2answers
78 views

Boolean search on database with 5 million rows, very slow

I have a script that when a user searches for "Apples", there is a coloumn with related searches like "Shiny Apples", and "Rotten Apples", etc. Problem is my searches database has 5,600,000 rows and ...
0
votes
0answers
219 views

PHP return mysql array from class

Maybe a silly question but it's killing me... When I get results from a database within a function in a class, and I return that result within that function. When I include that class into my main ...
0
votes
2answers
242 views

query fails in php file but never in phpmyadmin

$query = "SELECT *, ((ACOS(SIN($lat * PI() / 180) * SIN(lat * PI() / 180) + COS($lat * PI() / 180) * COS(lat * PI() / 180) * COS(($lon - lon) * PI() / 180)) * 180 / PI()) * 60 * 1.1515) AS distance ...
5
votes
2answers
1k views

MySQL fulltext search Boolean mode confusion

I'm getting a bit confused when trying to set up a search utilizing fulltext search in boolean mode. Here is the query I'm using $query = "SELECT *, MATCH(title) AGAINST('$q' IN BOOLEAN MODE) ...
0
votes
4answers
460 views

Return a boolean value from MySQL for using it in function as parameter

I'm building a simple user registration and information update forms which have a lot of checkboxes with CodeIgniter. I store the values of checkboxes as 1 (if checked) and 0 (if not checked) in MySQL ...
2
votes
2answers
229 views

MySQL boolean search - how to filter out all results that do not contain at least 2 input strings?

Does anybody know how to narrow down the MySQL boolean Match/Against search results to retrieve only those records which contain at least 2 input words? This is the query: SELECT it_title, ...
0
votes
1answer
294 views

Return SQL subquery as boolean field?

I would like to do something like this (mix of sql with pseudocode): let's assume for this example that there is a separate phone number table: person: person_id, person_name, person_lastName ...
1
vote
3answers
643 views

PHP: syntax for using boolean variables in MYSQL database for logic

php/mysql noob with question. MYSQL does not seem to have a preferred way to store boolean values. I decided to go with Tiny(int) at the suggestion of someone on a message board who said this is ...
-4
votes
6answers
402 views

PHP giving boolean error with mysql_fetch_row [duplicate]

Possible Duplicate: PHP Error: mysql_fetch_array() expects parameter 1 to be resource, boolean given So heres what my error is: Warning: mysql_fetch_row() expects parameter 1 to be ...
0
votes
1answer
172 views

rails client side validation uniqueness for boolean value in mysql database

I'm using client_side_validation uniqueness for a column named 'user_name' with scope 'customer_id' and 'active'. I just want throw an error if the user name is already exists in the table only if the ...
0
votes
0answers
33 views

Search for # using MySQL Full Text Search

I am trying to create a simple free text search and hae hit a problem. Whenever I search for a # nothing is being returned, so for example a search for C# returns nothing. I have changed the ...
1
vote
2answers
176 views

PHP MySQL comparison always true regardless of operands and operator

For the record, I read documentation on boolean comparisons in PHP, but I do not understand how my code relates in this context. I thought I had a problem connecting to MySQL, but it turns out ...
0
votes
1answer
830 views

Insert php boolean into mysql bit column with Zend_Db

I'm using Zend Framework 1.11.4 and also Zend_Db. The problem is, I have a column for sex which has the value 0 or 1(BIT(1)), when I put false the insertion is fine, but when I put true the following ...
0
votes
3answers
376 views

mysql_query returning boolean or string?

For some reason when I run a $result=mysql_query(...) that should return an array to be parsed with mysql_fetch_array, I keep getting an error that the value returned for $result is either a string or ...

1 2