Tagged Questions
0
votes
1answer
135 views
PHP - MySQL- Table doesn't exist
I have created a table using php. When i go to access that table, i get the error -table doesnt exist. I have given all permissions from to the user when creating table. table name is in small letters ...
1
vote
1answer
199 views
Need to check if table exists in SQlite with JS
I haven't been able to find whether a table exists in my DB. I open/create it with JS like this:
DEMODB = openDatabase(shortName, version, displayName, maxSize);
and then:
...
-1
votes
4answers
3k views
Check if value exists In MySQL
i have this table
id | name | city
------------------
1 | n1 | c1
2 | n2 | c2
3 | n3 | c3
4 | n4 | c4
and i want to check if c7 is exists under city or not
if yes do something
else do ...
0
votes
3answers
323 views
Check HTML page for particular table ID and element using jQuery
Does jQuery have a method of determining if a particular table exists in a HTML document and alert(); me whether it does or does not exist?
The particular tables' existence I'm looking for in the ...
5
votes
7answers
15k views
check if MySQL table exists or not [duplicate]
Possible Duplicate:
MySQL check if a table exists without throwing an exception
I have a dynamic mysql query builder in my project that creates select queries from different tables.
I need ...
0
votes
4answers
1k views
Check if a table exists in an oracle sql database with c#
this code:
SELECT TABLE_NAME FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_NAME='xxx'
The above code throws an exception:
ORA-00900: invalid SQL statement
What do I wrong? The above code worked long ...
14
votes
12answers
18k views
MySQL > Table doesn't exist. But it does (or it should)
I did change the datadir of a MySQL installation and following some steps it worked fine. Every base I had was moved correctly but one.
I can connect and USE the database, even SHOW TABLES returns me ...
0
votes
1answer
231 views
in mysql, how to avoid selection if a table exists
let's say I run the following query:
CREATE TEMPORARY TABLE IF NOT EXISTS FISH SELECT 'a';
it will create a temporary table with 'a' in it. Now, if I run the query again, the table will not be ...
4
votes
3answers
1k 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 ...
0
votes
2answers
5k views
check if table exists SQL
Hi i have a query as below,
INSERT INTO CarnetMaster.GlassLookupCapacitySpecs
(ID, CODE, NVIC, RELEASE, DISCON, DRV, TORQUE, KW, BORESTROKE, VINNUMBER, WIDTH, WHEELBASE, SEATS, COMPRATIO, TOWCAP, ...
2
votes
4answers
2k views
Perl - If table does not exist
I'm currently using the following which works but throws an error every time the table is created (as it is first trying to insert into a db which does not exist and returning false).
$result = ...
-1
votes
1answer
255 views
How to formulate T-SQL to exclude duplicates?
I am trying to develop a query to just return non-duplicate records so that I can add these to my database, but I keep getting the duplicate record error.
I tried ur solution but am still getting ...
1
vote
2answers
142 views
check if a table exsist in where
This query generates an error because table2 doesn't exist:
Select * FROM table WHERE table2.id IS NOT NULL
Is there anything like this for check the table2 before apply the check on the id?
...
9
votes
9answers
8k views
Check if a database table exists using PHP/PDO
I want to check if a table with a specific name exists in a database I've connected to using PHP and PDO.
It has to work on all database backends, like MySQL, SQLite, etc.
2
votes
3answers
4k views
Best way to check that a list of items exists in an SQL database column?
If I have a list of items, say
apples
pairs
pomegranites
and I want to identify any that don't exist in the 'fruit' column in an SQL DB table.
Fast performance is the main concern.
Needs to be ...
