Tagged Questions
Exists is a keyword or function in many languages, especially in SQL.
223
votes
11answers
111k views
Is there an “exists” function for jQuery
So I know that you can do:
if ($(selector).length>0) {
// Do something
}
But is there a more elegant method?
23
votes
4answers
597 views
what does “exists” mean in Haskell type system?
I'm struggling to understand the exists keyword in relation to Haskell type system. As far as I know, there is no such keyword in Haskell by default, but:
There are extensions which add them, in ...
17
votes
8answers
6k views
Best way to test if a row exists in a MySQL table
I'm trying to find out if a row exists in a table. Using MySQL, is it better to do a query like this:
SELECT COUNT(*) AS total FROM table1 WHERE ...
and check to see if the total is non-zero or is ...
17
votes
2answers
24k views
How to check if mysql database exists
Is it possible to check if a (MySQL) database exists after having made a connection.
I know how to check if a table exists in a DB, but I need to check if the DB exists. If not I have to call another ...
17
votes
1answer
4k views
is_file or file_exists in PHP
I need to check if a file is on HDD at a specified location ($path.$file_name).
Which is the difference between is_file() and file_exists() functions and which is better/faster to use in PHP?
16
votes
2answers
11k views
LINQ - Where not exists
What is the equivalent of following statement in LINQ:
Select t1.appname, t1.julianDte, t1.cat
From table1 t1
Where NOT EXISTS
( Select *
from table t2
where t1.cat = t2.cat AND ...
13
votes
10answers
24k views
how to check if a directory exists in a makefile
I need to generate a directory in my makefile and I would like to not get the "directory already exists error" over and over even though I can easily ignore it.
I mainly use mingw/msys but would like ...
11
votes
4answers
8k views
If element exists, do X (jQuery)
I currently do this to check if an elements exists:
if ($(".element1").length > 0 || $(".element2").length > 0 {
...stuff...
}
Is there a better way to rewrite the same? I mean, ".length" ...
11
votes
4answers
10k views
How to check if a file exists and is readable in C++?
I've got a fstream my_file("test.txt"), but I don't know if test.txt exists. In case it exists, I would like to know if I can read it, too. How to do that?
I use Linux.
10
votes
11answers
8k views
SQL: Return “true” if list of records exists?
An alternative title might be:
Check for existence of multiple rows?
Using a combination of SQL and C# I want a method to return true if all products in a list exist in a table. If it can be done ...
10
votes
3answers
8k views
How to check if a file exists on a server using c# and the WebClient class
In my application I use the WebClient class to download files from a Webserver by simply calling the DownloadFile method. Now I need to check whether a certain file exists prior to downloading it (or ...
9
votes
6answers
229 views
Which is faster, EXISTS before or after the INSERT?
I have an SP in SQL Server which runs hundreds of times a minute, and needs to check incoming traffic against a database. At the moment it does the following
INSERT INTO table
SELECT @value1,@value2 ...
8
votes
5answers
1k views
Check if twitter username exists
Is there a way to check if a twitter username exists?
Without being authenticated with OAuth or the twitter basic authentication?
8
votes
4answers
3k views
How can you check to see if a file exists (on the remote server) in Capistrano?
Like many others I've seen in the Googleverse, I fell victim to the File.exists? trap, which of course checks your local file system, not the server you are deploying to.
I found one result that used ...
8
votes
7answers
2k views
Actionscript3: Does variable exist?
I'm a little bit new to Actionscript, but I can't figure this one out. I've done a lot of searching on this topic and haven't found a clear answer. I've tried the following solutions that people ...
7
votes
3answers
247 views
check if a div exists with jquery [closed]
Possible Duplicate:
Is there an “exists” function for jQuery
yes, i know this has been asked a lot.
but, it confuses me, since the results on google for this search,
shows ...
7
votes
3answers
546 views
The purpose of SQL's EXISTS and NOT EXISTS
Every now and then I see these being used, but it never seems to be anything that can't be performed as equally well, if not better, by using a normal join or subquery.
I see them as being misleading ...
7
votes
6answers
270 views
SQL-Query: EXISTS in Subtable
I have two tables tabData and tabDataDetail.
I want all idData(PK) from Parent-Table(tabData) that have only rows in Child-Table(tabDataDetail, FK is fiData) with:
fiActionCode=11 alone
or
...
7
votes
4answers
6k views
Best way to check if object exists in Entity Framework?
What is the best way to check if an object exists in the database from a performance point of view? I'm using Entity Framework 1.0 (ASP.NET 3.5 SP1).
6
votes
3answers
5k views
Javascript check if element exists in the dom
Hello good people of stack overflow,
I would like to pick your brain. My question is this: how do you test an element for existence without the use of the getElementById method. I have setup a live ...
6
votes
5answers
9k views
SQLite - INSERT IF NOT EXISTS ELSE UPDATE?
I've found a few "would be" solutions for the classic "How do I insert a new record or update one if it already exists" but I cannot get any of them to work in SQLite.
I have a table defined as ...
6
votes
5answers
499 views
Check if multiple strings exist in another string
How can I check if any of the strings in an array exists in another string?
Like:
a = ['a', 'b', 'c']
str = "a123"
if a in str:
print "some of the strings found in str"
else:
print "no strings ...
6
votes
4answers
1k views
jQuery: Check if jQuery object contains exact DOM element
I have a reference to a DOM element, and a jQuery object which is the result of a selector, and I want to check if that specific DOM element is in that jQuery object. Short of looping through the ...
5
votes
5answers
1k views
JavaScript check if variable exists - Which method is better?
Which method of checking if a variable has been initialized is better/correct?
(Assuming the variable could hold anything (string, int, object, function, etc.))
if (elem) {
or
if (typeof(elem) !== ...
5
votes
3answers
3k views
Check if an include (or require) exists
How do you check if an include / require_once exists before you call it, I tried putting it in an error block, but PHP didn't like that.
I think file_exists() would work with some effort, however ...
5
votes
6answers
30k views
MySql - Create Table If Not Exists Else Truncate?
Here is the updated question:
the current query is doing something like:
$sql1 = "TRUNCATE TABLE fubar";
$sql2 = "CREATE TEMPORARY TABLE IF NOT EXISTS fubar SELECT id, name FROM barfu";
The first ...
4
votes
2answers
44 views
Verify .mat file exists and is not Corrupt - Matlab
I have 2 independent Matlab workers, with FIRST getting/saving data and SECOND reading it (and doing some calculations etc).
FIRST saves data as .mat file on the hard-disk while SECOND reads it from ...
4
votes
2answers
189 views
jQuery element exists event
Is there an event or simple function for a calling a callback once a specific element exists on the page.
I am not asking how to check if an element exists.
as an example
...
4
votes
4answers
808 views
Android Calendar
I am trying to put items into a calendar and can't really find out how to code it. This is what I have so far but it inserts it into the main calendar.
String calName;
String calId = null;
...
4
votes
5answers
130 views
Tricky SQL Problem
I have a table like this ...
Key Seq Val
A 1 123
A 4 129
A 9 123
A 10 105
B 3 100
B 6 101
B 12 102
I want to find cases (like ...
4
votes
4answers
314 views
Is EXISTS more efficient than COUNT(*)>0?
I'm using MySQL 5.1, and I have a query that's roughly of the form:
select count(*) from mytable where a = "foo" and b = "bar";
In my program, the only thing that it checks is whether this is zero ...
4
votes
1answer
1k views
How can I test if a filename matching a pattern exists in Perl?
Can I do something like this in Perl? Meaning pattern match on a file name and check whether it exists.
if(-e "*.file")
{
<Do something>
}
I know the longer solution of ...
4
votes
6answers
2k views
Checking if a directory exist in Unix (system call)
I am not able to found a solution to my problem online.
I would like to call a function in Unix, pass in the path of a directory, and know if it exists. opendir() returns an error if a directory does ...
4
votes
2answers
397 views
Oracle EXISTS query is not working as expected - DB Link bug?
I'm completely baffled by the results of this query:
select count(*) from my_tab mt
where mt.stat = '2473'
and mt.name= 'Tom'
and exists (select * from company_users@colink.world cu,
...
4
votes
2answers
792 views
Shell script to test whether a directory exists and if not create it?
I am trying to create a script to detect whether a directory exists, and if it does not, to create it.
How can I do that?
I did some digging and found a clue:
test -d directory
...will return ...
4
votes
3answers
4k views
NHibernate: CreateCriteria and Exists clause
How can I write the following SQL using CreateCriteria:
SELECT * FROM FooBar fb
WHERE EXISTS (SELECT FooBarId FROM Baz b WHERE b.FooBarId = fb.Id)
4
votes
6answers
1k views
Is File.Exists an expensive operation?
Re: http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx
Does anyone know if this is a particularly slow or locking operation which could impact server performance in a large ...
4
votes
5answers
417 views
Additional hash lookup using 'exists'?
I sometimes access a hash like this:
if(exists $ids{$name}){
$id = $ids{$name};
}
Is that good practice? I'm a bit concerned that it contains two lookups where really one should be done. Is ...
4
votes
6answers
12k views
C# Cannot check Session exists?
I get an error when I do the following:
if(Session["value"] != null)
{
// code
}
The error i get is this:
Object reference not set to an instance of an object.
Why is this? I always check my ...
3
votes
4answers
86 views
JavaScript if var exists
I want my code so that if a specific var exists it will perform an action, else it will be ignored and move along. The problem with my code is, if the specific var does not exist it causes an error, ...
3
votes
3answers
113 views
What is easier to read in EXISTS subqueries? [closed]
Its a question of readability. There is no difference in performance.
Old versions of SQL Server were silly enough to look up meta data, but not any more.
SELECT foo FROM bar WHERE EXISTS (SELECT * ...
3
votes
1answer
66 views
Slow query when used as EXISTS subquery
I have the following query:
SELECT I.InsuranceID
FROM Insurance I
INNER JOIN JobDetail JD ON I.AccountID = JD.AccountID
WHERE I.InsuranceLookupID IS NULL
AND JD.JobID = 28
It executes in about a ...
3
votes
1answer
121 views
IF EXISTS in T-SQL
If we have a SELECT statement inside an IF EXISTS, does the execution stops as soon as it finds a record in the table? For an e.g.
IF EXISTS(SELECT * FROM table1 WHERE Name='John' )
return 1
...
3
votes
3answers
374 views
How do you use a T-SQL variable within an if OBJECT_ID to check if a table exists?
What I am trying to do with the following code is have it grab all the database names then loop through those databases check to see if the table tblAdminLogin exists and if it does update the ...
3
votes
2answers
746 views
Sql Server 2005 - Insert if not exists
There is lots of information in the internet regarding this common "problem".
Solutions like:
IF NOT EXISTS() BEGIN INSERT INTO (...) END
are not thread-safe in my opinion and you will probably ...
3
votes
5answers
3k views
C++ - Determining if directory (not a file) exists in Linux
How would I determine if a directory (not a file) existed using C++ in Linux? I tried using the stat() function but it returned positive when a file was found. I only want to find if the inputted ...
3
votes
2answers
2k views
Ruby on Rails - Check if a directory/file/symlink exists with one command
Is there a single way of detecting if a directory/file/symlink or.... entity (more generalized) exists? I need a single function because I need to check an array of paths that could be directories, ...
3
votes
4answers
145 views
Query with multiple EXIST
I've got a database of rooms and equipments. I want to query the database and return a list of rooms with e.g. tv, radio, sat and fridge (eq1, eq2, eq3, ...., eqN).
I have the following SELECT ...
3
votes
5answers
127 views
sql not exist problem
Having a bit of trouble dealing with not exist clause in a querie.
I have three tables:
Meal
no_meal integer
type_meal varchar(255)
Consumed
no_meal integer
designation varchar(255)
quantity ...
3
votes
2answers
1k views
Magento: addAttributeToFilter but ignore for products that don't have this attribute?
I'm trying to show add some filters on my store, but they have a nasty side effect.
Suppose I have product type A and B. Now I want to only show A where color = blue/red.
$collection = ...