| Thread | Last Post | Replies |
|
| Whats the most portable way to identify field existence? | 27 Sep 2007 11:26 GMT | 1 |
Thats field not table - I just want to see if a particular field exists in a specified table and for the method to work reliably on as many mySQL versions as possible. Obviously the most efficient would be best - I can't see anything in the
|
| Compare every word in paragraph with every row in database | 26 Sep 2007 18:21 GMT | 2 |
My problem is I want to compare every word in large paragraph with every row in database.But this technique use to much process and slow down query performance.e.g. My paragraph:
|
| Don't get all records from SQL-table | 24 Sep 2007 11:43 GMT | 2 |
Following script stops after a while (appr. 1 minute) without an error- message: // Loop 12 Times: $conn=odbc_connect("database1","","");
|
| SQL question and query result | 21 Sep 2007 11:59 GMT | 1 |
I am new to this SQL. Can someone answer this question for me? 1. Given the following schema of an employees table: *employees (* * empid integer primary key, -- employee id number*
|
| help with db_host | 20 Sep 2007 16:52 GMT | 1 |
I have inherited a system for which I not only need to maintain php code, but also server as the system administrator. I need to run some blog software and I need to know how to discover what my db_host is set to or how to set my db_host.
|
| php5 mysql5.0 win problems | 16 Sep 2007 15:38 GMT | 2 |
I have problem with my php/sql code because id (auto inc., primary) row. ( $sql = "INSERT INTO ".$_CONF['tprefix']."schedule_scores VALUES "; $sql .= "('NULL','$newdate','$newtime','$newlocation','$team1_id',";
|
| session_start problem in php5 | 16 Sep 2007 09:32 GMT | 1 |
Some of my php files start with <?php session_start(); ?> Up to recently this was no problem. Recently my provider upgraded from php4 to php5. From then I get this message: Warning: session_start() [function.session-start]: SAFE MODE
|
| Unique constraint for the columns does not work when one of values is null. | 14 Sep 2007 16:11 GMT | 1 |
I have a table with a unique constraint on two integer columns. Works fine, but one of the two columns can be null and then the constraint does not work. 1 2 : OK
|
| How to enforce an ENUM ? | 14 Sep 2007 15:24 GMT | 2 |
I have a table with an ENUM row. If I insert a new row (using PHP5, MySQL5 and PDO for database connections) with a value that is not in the ENUM list, no error, no warning, no exception ... The row is inserted but the field where
|
| Problem Getting MS SQL Data With Single Quotes | 13 Sep 2007 20:39 GMT | 1 |
I'm having difficulty getting data out of MS SQL Server via a PHP database call. When I look in the database, it crashes on the line where there is a single quote in the database. I've seen several articles about addslashes/stripslashes and str_replace for MS SQL.
|
| SQL Query Problem | 13 Sep 2007 13:38 GMT | 1 |
I am having a problem with a search. Below is the code: $colname_rs_product = "-1"; if (isset($_GET['search'])) { $colname_rs_product = (get_magic_quotes_gpc()) ? $_GET['search'] :
|
| Counting problem with Query | 13 Sep 2007 11:50 GMT | 5 |
Here's the problem: I have meeting minutes that need to be paged through via my website. I have created a developer server on my local machine and when I run the PHP code against the MySQL table that I imported from my ISP's website everything
|
| Learning MySQL | 09 Sep 2007 21:27 GMT | 2 |
I'm new to the world of programming and all, what I would like to know is how to create MySQL databases and resources that would help an aspiring programmer like myself at getting the hang of the whole world of MySQL, I love the idea of writing dynamic websites and such are ther
|
| search script problem | 09 Sep 2007 14:33 GMT | 3 |
I've written my first search script and I have 2 problems. First, I'm getting duplicate results because I have identical questions related to different topic_id's (aka categories). Second, if a search term isn't found, it's
|
| Error with < in SQL | 06 Sep 2007 09:42 GMT | 12 |
I have started using the new mysql_* extensions. Here is the code I am trying to run: $temp2 = "SELECT * FROM assignments2 WHERE daydue < '247' && progress != '100'";
|