ERLEDIGT
NEIN
NEIN
ANTWORTEN
17
17
ZUGRIFFE
720
720
EMPFEHLEN
-
30.12.11 20:47 #16
- Registriert seit
- May 2006
- Ort
- There is no place like 127.0.0.1
- Beiträge
- 3.521
Erstmal muss es funktionieren. Dann kann man schauen, ob und was man umschreiben muss. Funktioniert ein Connect? Bekommst du Fehlermeldungen?
Grüße
--
Qualität des Codes wird in WTF's/Min gemessen: Je mehr, desto schlechter der Code ;-)
-
Leider bekomme ich da smit pdo_mssql nicht in meine phpinfo
-
30.12.11 20:55 #18
- Registriert seit
- May 2006
- Ort
- There is no place like 127.0.0.1
- Beiträge
- 3.521
Die Extension heißt intern pdo_sybase nicht pdo_mssql.
EDIT: Ich habe noch was anderes entdeckt, MS hat einen eigenen Treiber für PHP + SQLServer: http://www.microsoft.com/download/en...ng=en&id=20098
Habs gerade mal getestet, die Funktionen sind jedenfalls verfügbar. In phpinfo() sind die Erweiterungen pdo_sqlsrv und sqlsrv verfügbar.
Diese Beispiel-Datei funktioniert insofern, das die Funktionen existieren, ein Connect ist halt bei mir nicht möglich:
Code php:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495
<!--===================================================================== This file is part of a Microsoft SQL Server Shared Source Application. Copyright (C) Microsoft Corporation. All rights reserved. THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. ======================================================= *--> <!--Note: The presentation formatting of the example application --> <!-- is intentionally simple to emphasize the SQL Server --> <!-- data access code.--> <html> <head> <title>AdventureWorks Product Reviews</title> </head> <body> <h1 align='center'>AdventureWorks Product Reviews</h1> <h5 align='center'>This application is a demonstration of the procedural API (SQLSRV driver) of the Microsoft Drivers for PHP for SQL Server.</h5><br/> <?php $serverName = "(local)\sqlexpress"; $connectionOptions = array("Database"=>"AdventureWorks"); /* Connect using Windows Authentication. */ $conn = sqlsrv_connect( $serverName, $connectionOptions); if( $conn === false ) die( FormatErrors( sqlsrv_errors() ) ); if(isset($_REQUEST['action'])) { switch( $_REQUEST['action'] ) { /* Get AdventureWorks products by querying against the product name.*/ case 'getproducts': $params = array(&$_POST['query']); $tsql = "SELECT ProductID, Name, Color, Size, ListPrice FROM Production.Product WHERE Name LIKE '%' + ? + '%' AND ListPrice > 0.0"; /*Execute the query with a scrollable cursor so we can determine the number of rows returned.*/ $cursorType = array("Scrollable" => SQLSRV_CURSOR_KEYSET); $getProducts = sqlsrv_query($conn, $tsql, $params, $cursorType); if ( $getProducts === false) die( FormatErrors( sqlsrv_errors() ) ); if(sqlsrv_has_rows($getProducts)) { $rowCount = sqlsrv_num_rows($getProducts); BeginProductsTable($rowCount); while( $row = sqlsrv_fetch_array( $getProducts, SQLSRV_FETCH_ASSOC)) { PopulateProductsTable( $row ); } EndProductsTable(); } else { DisplayNoProdutsMsg(); } GetSearchTerms( !null ); /* Free the statement and connection resources. */ sqlsrv_free_stmt( $getProducts ); sqlsrv_close( $conn ); break; /* Get reviews for a specified productID. */ case 'getreview': GetPicture( $_GET['productid'] ); GetReviews( $conn, $_GET['productid'] ); sqlsrv_close( $conn ); break; /* Write a review for a specified productID. */ case 'writereview': DisplayWriteReviewForm( $_POST['productid'] ); break; /* Submit a review to the database. */ case 'submitreview': /*Prepend the review so it can be opened as a stream.*/ $comments = "data://text/plain,".$_POST['comments']; $stream = fopen( $comments, "r" ); $tsql = "INSERT INTO Production.ProductReview (ProductID, ReviewerName, ReviewDate, EmailAddress, Rating, Comments) VALUES (?,?,?,?,?,?)"; $params = array(&$_POST['productid'], &$_POST['name'], date("Y-m-d"), &$_POST['email'], &$_POST['rating'], &$stream); /* Prepare and execute the statement. */ $insertReview = sqlsrv_prepare($conn, $tsql, $params); if( $insertReview === false ) die( FormatErrors( sqlsrv_errors() ) ); /* By default, all stream data is sent at the time of query execution. */ if( sqlsrv_execute($insertReview) === false ) die( FormatErrors( sqlsrv_errors() ) ); sqlsrv_free_stmt( $insertReview ); GetSearchTerms( true ); /* Display a list of reviews, including the latest addition. */ GetReviews( $conn, $_POST['productid'] ); sqlsrv_close( $conn ); break; /* Display a picture of the selected product.*/ case 'displaypicture': $tsql = "SELECT Name FROM Production.Product WHERE ProductID = ?"; $getName = sqlsrv_query($conn, $tsql, array(&$_GET['productid'])); if( $getName === false ) die( FormatErrors( sqlsrv_errors() ) ); if ( sqlsrv_fetch( $getName ) === false ) die( FormatErrors( sqlsrv_errors() ) ); $name = sqlsrv_get_field( $getName, 0); DisplayUploadPictureForm( $_GET['productid'], $name ); sqlsrv_close( $conn ); break; /* Upload a new picture for the selected product. */ case 'uploadpicture': $tsql = "INSERT INTO Production.ProductPhoto (LargePhoto) VALUES (?); SELECT SCOPE_IDENTITY() AS PhotoID"; $fileStream = fopen($_FILES['file']['tmp_name'], "r"); $uploadPic = sqlsrv_prepare($conn, $tsql, array( array(&$fileStream, SQLSRV_PARAM_IN, SQLSRV_PHPTYPE_STREAM(SQLSRV_ENC_BINARY), SQLSRV_SQLTYPE_VARBINARY('max')))); if( $uploadPic === false ) die( FormatErrors( sqlsrv_errors() ) ); if( sqlsrv_execute($uploadPic) === false ) die( FormatErrors( sqlsrv_errors() ) ); /*Skip the open result set (row affected). */ $next_result = sqlsrv_next_result($uploadPic); if( $next_result === false ) die( FormatErrors( sqlsrv_errors() ) ); /* Fetch the next result set. */ if( sqlsrv_fetch($uploadPic) === false) die( FormatErrors( sqlsrv_errors() ) ); /* Get the first field - the identity from INSERT. */ $photoID = sqlsrv_get_field($uploadPic, 0); /* Associate the new photoID with the productID. */ $tsql = "UPDATE Production.ProductProductPhoto SET ProductPhotoID = ? WHERE ProductID = ?"; $reslt = sqlsrv_query($conn, $tsql, array(&$photoID, &$_POST['productid'])); if($reslt === false ) die( FormatErrors( sqlsrv_errors() ) ); GetPicture( $_POST['productid']); DisplayWriteReviewButton( $_POST['productid'] ); GetSearchTerms (!null); sqlsrv_close( $conn ); break; }//End Switch } else { GetSearchTerms( !null ); } function GetPicture( $productID ) { echo "<table align='center'><tr align='center'><td>"; echo "<img src='photo.php?productId=".$productID."' height='150' width='150'/></td></tr>"; echo "<tr align='center'><td><a href='?action=displaypicture& productid=".$productID."'>Upload new picture.</a></td></tr>"; echo "</td></tr></table></br>"; } function GetReviews( $conn, $productID ) { $tsql = "SELECT ReviewerName, CONVERT(varchar(32), ReviewDate, 107) AS [ReviewDate], Rating, Comments FROM Production.ProductReview WHERE ProductID = ? ORDER BY ReviewDate DESC"; /*Execute the query with a scrollable cursor so we can determine the number of rows returned.*/ $cursorType = array("Scrollable" => SQLSRV_CURSOR_KEYSET); $getReviews = sqlsrv_query( $conn, $tsql, array(&$productID), $cursorType); if( $getReviews === false ) die( FormatErrors( sqlsrv_errors() ) ); if(sqlsrv_has_rows($getReviews)) { $rowCount = sqlsrv_num_rows($getReviews); echo "<table width='50%' align='center' border='1px'>"; echo "<tr bgcolor='silver'><td>$rowCount Reviews</td></tr></table>"; while ( sqlsrv_fetch( $getReviews ) ) { $name = sqlsrv_get_field( $getReviews, 0 ); $date = sqlsrv_get_field( $getReviews, 1 ); $rating = sqlsrv_get_field( $getReviews, 2 ); /* Open comments as a stream. */ $comments = sqlsrv_get_field( $getReviews, 3, SQLSRV_PHPTYPE_STREAM(SQLSRV_ENC_CHAR)); DisplayReview($productID, $name, $date, $rating, $comments ); } } else { DisplayNoReviewsMsg(); } DisplayWriteReviewButton( $productID ); sqlsrv_free_stmt( $getReviews ); } /*** Presentation and Utility Functions ***/ function BeginProductsTable($rowCount) { /* Display the beginning of the search results table. */ $headings = array("Product ID", "Product Name", "Color", "Size", "Price"); echo "<table align='center' cellpadding='5'>"; echo "<tr bgcolor='silver'>$rowCount Results</tr><tr>"; foreach ( $headings as $heading ) { echo "<td>$heading</td>"; } echo "</tr>"; } function DisplayNoProdutsMsg() { echo "<h4 align='center'>No products found.</h4>"; } function DisplayNoReviewsMsg() { echo "<h4 align='center'>There are no reviews for this product.</h4>"; } function DisplayReview( $productID, $name, $date, $rating, $comments) { /* Display a product review. */ echo "<table style='WORD-BREAK:BREAK-ALL' width='50%' align='center' border='1' cellpadding='5'>"; echo "<tr> <td>ProductID</td> <td>Reviewer</td> <td>Date</td> <td>Rating</td> </tr>"; echo "<tr> <td>$productID</td> <td>$name</td> <td>$date</td> <td>$rating</td> </tr> <tr> <td width='50%' colspan='4'>"; fpassthru( $comments ); echo "</td></tr></table><br/><br/>"; } function DisplayUploadPictureForm( $productID, $name ) { echo "<h3 align='center'>Upload Picture</h3>"; echo "<h4 align='center'>$name</h4>"; echo "<form align='center' action='adventureworks_demo.php' enctype='multipart/form-data' method='POST'> <input type='hidden' name='action' value='uploadpicture'/> <input type='hidden' name='productid' value='$productID'/> <table align='center'> <tr> <td align='center'> <input id='fileName' type='file' name='file'/> </td> </tr> <tr> <td align='center'> <input type='submit' name='submit' value='Upload Picture'/> </td> </tr> </table> </form>"; } function DisplayWriteReviewButton( $productID ) { echo "<table align='center'><form action='adventureworks_demo.php' enctype='multipart/form-data' method='POST'> <input type='hidden' name='action' value='writereview'/> <input type='hidden' name='productid' value='$productID'/> <input type='submit' name='submit' value='Write a Review'/> </p></td></tr></form></table>"; } function DisplayWriteReviewForm( $productID ) { /* Display the form for entering a product review. */ echo "<h5 align='center'>Name, E-mail, and Rating are required fields.</h5>"; echo "<table align='center'> <form action='adventureworks_demo.php' enctype='multipart/form-data' method='POST'> <input type='hidden' name='action' value='submitreview'/> <input type='hidden' name='productid' value='$productID'/> <tr> <td colspan='5'>Name: <input type='text' name='name' size='50'/></td> </tr> <tr> <td colspan='5'>E-mail: <input type='text' name='email' size='50'/></td> </tr> <tr> <td>Rating: 1<input type='radio' name='rating' value='1'/></td> <td>2<input type='radio' name='rating' value='2'/></td> <td>3<input type='radio' name='rating' value='3'/></td> <td>4<input type='radio' name='rating' value='4'/></td> <td>5<input type='radio' name='rating' value='5'/></td> </tr> <tr> <td colspan='5'> <textarea rows='20' cols ='50' name='comments'>[Write comments here.]</textarea> </td> </tr> <tr> <td colspan='5'> <p align='center'><input type='submit' name='submit' value='Submit Review'/> </td> </tr> </form> </table>"; } function EndProductsTable() { echo "</table><br/>"; } function GetSearchTerms( $success ) { /* Get and submit terms for searching the database. */ if (is_null( $success )) { echo "<h4 align='center'>Review successfully submitted.</h4>";} echo "<h4 align='center'>Enter search terms to find products.</h4>"; echo "<table align='center'> <form action='adventureworks_demo.php' enctype='multipart/form-data' method='POST'> <input type='hidden' name='action' value='getproducts'/> <tr> <td><input type='text' name='query' size='40'/></td> </tr> <tr align='center'> <td><input type='submit' name='submit' value='Search'/></td> </tr> </form> </table>"; } function PopulateProductsTable( $values ) { /* Populate Products table with search results. */ $productID = $values['ProductID']; echo "<tr>"; foreach ( $values as $key => $value ) { if ( 0 == strcasecmp( "Name", $key ) ) { echo "<td><a href='?action=getreview&productid=$productID'>$value</a></td>"; } elseif( !is_null( $value ) ) { if ( 0 == strcasecmp( "ListPrice", $key ) ) { /* Format with two digits of precision. */ $formattedPrice = sprintf("%.2f", $value); echo "<td>$$formattedPrice</td>"; } else { echo "<td>$value</td>"; } } else { echo "<td>N/A</td>"; } } echo "<td> <form action='adventureworks_demo.php' enctype='multipart/form-data' method='POST'> <input type='hidden' name='action' value='writereview'/> <input type='hidden' name='productid' value='$productID'/> <input type='submit' name='submit' value='Write a Review'/> </td></tr> </form></td></tr>"; } function FormatErrors( $errors ) { /* Display errors. */ echo "Error information: <br/>"; foreach ( $errors as $error ) { echo "SQLSTATE: ".$error['SQLSTATE']."<br/>"; echo "Code: ".$error['code']."<br/>"; echo "Message: ".$error['message']."<br/>"; } } ?> </body> </html> The photo.php script returns a product photo for a specified ProductID. This script is called from the adventureworks_demo.php script. Put the following code in a file named photo.php: Copy Code <?php /*===================================================================== This file is part of a Microsoft SQL Server Shared Source Application. Copyright (C) Microsoft Corporation. All rights reserved. THIS CODE AND INFORMATION ARE PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE. ======================================================= */ $serverName = "(local)\sqlexpress"; $connectionInfo = array( "Database"=>"AdventureWorks"); /* Connect using Windows Authentication. */ $conn = sqlsrv_connect( $serverName, $connectionInfo); if( $conn === false ) { echo "Could not connect.\n"; die( print_r( sqlsrv_errors(), true)); } /* Get the product picture for a given product ID. */ $tsql = "SELECT LargePhoto FROM Production.ProductPhoto AS p JOIN Production.ProductProductPhoto AS q ON p.ProductPhotoID = q.ProductPhotoID WHERE ProductID = ?"; $params = array(&$_REQUEST['productId']); /* Execute the query. */ $stmt = sqlsrv_query($conn, $tsql, $params); if( $stmt === false ) { echo "Error in statement execution.</br>"; die( print_r( sqlsrv_errors(), true)); } /* Retrieve the image as a binary stream. */ $getAsType = SQLSRV_PHPTYPE_STREAM(SQLSRV_ENC_BINARY); if ( sqlsrv_fetch( $stmt ) ) { $image = sqlsrv_get_field( $stmt, 0, $getAsType); fpassthru($image); } else { echo "Error in retrieving data.</br>"; die(print_r( sqlsrv_errors(), true)); } /* Free the statement and connectin resources. */ sqlsrv_free_stmt( $stmt ); sqlsrv_close( $conn ); ?>
Geändert von saftmeister (30.12.11 um 21:15 Uhr)
Grüße
--
Qualität des Codes wird in WTF's/Min gemessen: Je mehr, desto schlechter der Code ;-)
Ähnliche Themen
-
MSSQL Probleme mit Verbindung von java applet aus
Von Dolch im Forum JavaAntworten: 5Letzter Beitrag: 03.06.08, 10:38 -
MSSQL Probleme mit Verbindung von java applet aus
Von Dolch im Forum Relationale DatenbanksystemeAntworten: 4Letzter Beitrag: 31.05.08, 15:25 -
MSSQL Probleme mit RDA in Visual Basic
Von Loipe im Forum Relationale DatenbanksystemeAntworten: 0Letzter Beitrag: 21.12.07, 18:58 -
MSSQL Probleme bei NULL und COUNT
Von volker2 im Forum Relationale DatenbanksystemeAntworten: 6Letzter Beitrag: 17.08.06, 13:40 -
MSSQL C# Einfügen von Abhängigkeiten, Probleme mit ID Vergleich
Von Kai_Jack im Forum .NET DatenverwaltungAntworten: 12Letzter Beitrag: 20.08.05, 18:29






Zitieren
Login






[PHP][Snippet] Array zu XML konvertieren