Doctrine_Connection_Mysql.html 72.6 KB
Newer Older
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 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231
<div id="right">
<b>Classes:</b><br />
  <div class="package">
		    		<a href="../Doctrine/Doctrine.html">Doctrine</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Access.html">Doctrine_Access</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Adapter.html">Doctrine_Adapter</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Adapter_Db2_Exception.html">Doctrine_Adapter_Db2_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Adapter_Exception.html">Doctrine_Adapter_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Adapter_Statement.html">Doctrine_Adapter_Statement</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_AuditLog.html">Doctrine_AuditLog</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_AuditLog_Listener.html">Doctrine_AuditLog_Listener</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Collection.html">Doctrine_Collection</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Collection_Exception.html">Doctrine_Collection_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Collection_Iterator.html">Doctrine_Collection_Iterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Collection_Iterator_Expandable.html">Doctrine_Collection_Iterator_Expandable</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Collection_Iterator_Normal.html">Doctrine_Collection_Iterator_Normal</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Collection_Iterator_Offset.html">Doctrine_Collection_Iterator_Offset</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Collection_Offset.html">Doctrine_Collection_Offset</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Column.html">Doctrine_Column</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Compiler.html">Doctrine_Compiler</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Compiler_Exception.html">Doctrine_Compiler_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Configurable.html">Doctrine_Configurable</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection.html">Doctrine_Connection</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Common.html">Doctrine_Connection_Common</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Db2.html">Doctrine_Connection_Db2</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Exception.html">Doctrine_Connection_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Firebird.html">Doctrine_Connection_Firebird</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Firebird_Exception.html">Doctrine_Connection_Firebird_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Informix.html">Doctrine_Connection_Informix</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Informix_Exception.html">Doctrine_Connection_Informix_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Mock.html">Doctrine_Connection_Mock</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Module.html">Doctrine_Connection_Module</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Mssql.html">Doctrine_Connection_Mssql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Mssql_Exception.html">Doctrine_Connection_Mssql_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Mysql.html">Doctrine_Connection_Mysql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Mysql_Exception.html">Doctrine_Connection_Mysql_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Oracle.html">Doctrine_Connection_Oracle</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Oracle_Exception.html">Doctrine_Connection_Oracle_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Pgsql.html">Doctrine_Connection_Pgsql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Pgsql_Exception.html">Doctrine_Connection_Pgsql_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Profiler.html">Doctrine_Connection_Profiler</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Profiler_Exception.html">Doctrine_Connection_Profiler_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Sqlite.html">Doctrine_Connection_Sqlite</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Sqlite_Exception.html">Doctrine_Connection_Sqlite_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_Statement.html">Doctrine_Connection_Statement</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Connection_UnitOfWork.html">Doctrine_Connection_UnitOfWork</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_DataDict.html">Doctrine_DataDict</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_DataDict_Exception.html">Doctrine_DataDict_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_DataDict_Informix.html">Doctrine_DataDict_Informix</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_DataType.html">Doctrine_DataType</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Db.html">Doctrine_Db</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Event.html">Doctrine_Event</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_EventListener.html">Doctrine_EventListener</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_EventListener_Chain.html">Doctrine_EventListener_Chain</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_EventListener_Exception.html">Doctrine_EventListener_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Exception.html">Doctrine_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export.html">Doctrine_Export</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Exception.html">Doctrine_Export_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Firebird.html">Doctrine_Export_Firebird</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Frontbase.html">Doctrine_Export_Frontbase</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Mssql.html">Doctrine_Export_Mssql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Mysql.html">Doctrine_Export_Mysql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Oracle.html">Doctrine_Export_Oracle</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Pgsql.html">Doctrine_Export_Pgsql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Reporter.html">Doctrine_Export_Reporter</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Schema.html">Doctrine_Export_Schema</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Schema_Xml.html">Doctrine_Export_Schema_Xml</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Schema_Yml.html">Doctrine_Export_Schema_Yml</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Export_Sqlite.html">Doctrine_Export_Sqlite</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression.html">Doctrine_Expression</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Driver.html">Doctrine_Expression_Driver</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Exception.html">Doctrine_Expression_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Firebird.html">Doctrine_Expression_Firebird</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Informix.html">Doctrine_Expression_Informix</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Mock.html">Doctrine_Expression_Mock</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Mssql.html">Doctrine_Expression_Mssql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Mysql.html">Doctrine_Expression_Mysql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Oracle.html">Doctrine_Expression_Oracle</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Pgsql.html">Doctrine_Expression_Pgsql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Expression_Sqlite.html">Doctrine_Expression_Sqlite</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_File.html">Doctrine_File</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_File_Index.html">Doctrine_File_Index</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Formatter.html">Doctrine_Formatter</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hook.html">Doctrine_Hook</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hook_Equal.html">Doctrine_Hook_Equal</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hook_Integer.html">Doctrine_Hook_Integer</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hook_Parser.html">Doctrine_Hook_Parser</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hook_Parser_Complex.html">Doctrine_Hook_Parser_Complex</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hook_WordLike.html">Doctrine_Hook_WordLike</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hydrate.html">Doctrine_Hydrate</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hydrate_Array.html">Doctrine_Hydrate_Array</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hydrate_Exception.html">Doctrine_Hydrate_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Hydrate_Record.html">Doctrine_Hydrate_Record</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import.html">Doctrine_Import</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Builder.html">Doctrine_Import_Builder</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Builder_BaseClass.html">Doctrine_Import_Builder_BaseClass</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Builder_Exception.html">Doctrine_Import_Builder_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Exception.html">Doctrine_Import_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Firebird.html">Doctrine_Import_Firebird</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Informix.html">Doctrine_Import_Informix</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Mssql.html">Doctrine_Import_Mssql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Mysql.html">Doctrine_Import_Mysql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Oracle.html">Doctrine_Import_Oracle</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Pgsql.html">Doctrine_Import_Pgsql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Reader.html">Doctrine_Import_Reader</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Reader_Db.html">Doctrine_Import_Reader_Db</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Reader_Exception.html">Doctrine_Import_Reader_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Reader_Xml_Propel.html">Doctrine_Import_Reader_Xml_Propel</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Schema.html">Doctrine_Import_Schema</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Schema_Xml.html">Doctrine_Import_Schema_Xml</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Schema_Yml.html">Doctrine_Import_Schema_Yml</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Import_Sqlite.html">Doctrine_Import_Sqlite</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_IntegrityMapper.html">Doctrine_IntegrityMapper</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Lib.html">Doctrine_Lib</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Locking_Exception.html">Doctrine_Locking_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Locking_Manager_Pessimistic.html">Doctrine_Locking_Manager_Pessimistic</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Manager.html">Doctrine_Manager</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Manager_Exception.html">Doctrine_Manager_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node.html">Doctrine_Node</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_AdjacencyList.html">Doctrine_Node_AdjacencyList</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_AdjacencyList_LevelOrderIterator.html">Doctrine_Node_AdjacencyList_LevelOrderIterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_AdjacencyList_PostOrderIterator.html">Doctrine_Node_AdjacencyList_PostOrderIterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_AdjacencyList_PreOrderIterator.html">Doctrine_Node_AdjacencyList_PreOrderIterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_Exception.html">Doctrine_Node_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_MaterializedPath.html">Doctrine_Node_MaterializedPath</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_MaterializedPath_LevelOrderIterator.html">Doctrine_Node_MaterializedPath_LevelOrderIterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_MaterializedPath_PostOrderIterator.html">Doctrine_Node_MaterializedPath_PostOrderIterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_MaterializedPath_PreOrderIterator.html">Doctrine_Node_MaterializedPath_PreOrderIterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_NestedSet.html">Doctrine_Node_NestedSet</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_NestedSet_LevelOrderIterator.html">Doctrine_Node_NestedSet_LevelOrderIterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_NestedSet_PostOrderIterator.html">Doctrine_Node_NestedSet_PostOrderIterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Node_NestedSet_PreOrderIterator.html">Doctrine_Node_NestedSet_PreOrderIterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Null.html">Doctrine_Null</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Object.html">Doctrine_Object</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Plugin.html">Doctrine_Plugin</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query.html">Doctrine_Query</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Abstract.html">Doctrine_Query_Abstract</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Check.html">Doctrine_Query_Check</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Condition.html">Doctrine_Query_Condition</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Exception.html">Doctrine_Query_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Filter.html">Doctrine_Query_Filter</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Filter_Chain.html">Doctrine_Query_Filter_Chain</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_From.html">Doctrine_Query_From</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Groupby.html">Doctrine_Query_Groupby</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Having.html">Doctrine_Query_Having</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_JoinCondition.html">Doctrine_Query_JoinCondition</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Limit.html">Doctrine_Query_Limit</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Offset.html">Doctrine_Query_Offset</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Orderby.html">Doctrine_Query_Orderby</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Parser.html">Doctrine_Query_Parser</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Part.html">Doctrine_Query_Part</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Select.html">Doctrine_Query_Select</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Set.html">Doctrine_Query_Set</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Query_Where.html">Doctrine_Query_Where</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_RawSql.html">Doctrine_RawSql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_RawSql_Exception.html">Doctrine_RawSql_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Record.html">Doctrine_Record</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Record_Abstract.html">Doctrine_Record_Abstract</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Record_Exception.html">Doctrine_Record_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Record_Filter.html">Doctrine_Record_Filter</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Record_Iterator.html">Doctrine_Record_Iterator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Record_Listener.html">Doctrine_Record_Listener</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Record_Listener_Chain.html">Doctrine_Record_Listener_Chain</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Record_State_Exception.html">Doctrine_Record_State_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Relation.html">Doctrine_Relation</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Relation_Association.html">Doctrine_Relation_Association</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Relation_Association_Self.html">Doctrine_Relation_Association_Self</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Relation_Exception.html">Doctrine_Relation_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Relation_ForeignKey.html">Doctrine_Relation_ForeignKey</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Relation_LocalKey.html">Doctrine_Relation_LocalKey</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Relation_Nest.html">Doctrine_Relation_Nest</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Relation_Parser.html">Doctrine_Relation_Parser</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Relation_Parser_Exception.html">Doctrine_Relation_Parser_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Schema.html">Doctrine_Schema</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Schema_Column.html">Doctrine_Schema_Column</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Schema_Database.html">Doctrine_Schema_Database</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Schema_Exception.html">Doctrine_Schema_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Schema_Object.html">Doctrine_Schema_Object</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Schema_Relation.html">Doctrine_Schema_Relation</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Schema_Table.html">Doctrine_Schema_Table</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search.html">Doctrine_Search</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Analyzer.html">Doctrine_Search_Analyzer</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Analyzer_Exception.html">Doctrine_Search_Analyzer_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Analyzer_Standard.html">Doctrine_Search_Analyzer_Standard</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Exception.html">Doctrine_Search_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Indexer.html">Doctrine_Search_Indexer</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Indexer_Dir.html">Doctrine_Search_Indexer_Dir</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Indexer_Exception.html">Doctrine_Search_Indexer_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Listener.html">Doctrine_Search_Listener</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Parser.html">Doctrine_Search_Parser</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Query.html">Doctrine_Search_Query</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Record.html">Doctrine_Search_Record</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Scorer.html">Doctrine_Search_Scorer</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Search_Template.html">Doctrine_Search_Template</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence.html">Doctrine_Sequence</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence_Db2.html">Doctrine_Sequence_Db2</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence_Exception.html">Doctrine_Sequence_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence_Firebird.html">Doctrine_Sequence_Firebird</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence_Informix.html">Doctrine_Sequence_Informix</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence_Mssql.html">Doctrine_Sequence_Mssql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence_Mysql.html">Doctrine_Sequence_Mysql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence_Oracle.html">Doctrine_Sequence_Oracle</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence_Pgsql.html">Doctrine_Sequence_Pgsql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Sequence_Sqlite.html">Doctrine_Sequence_Sqlite</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Table.html">Doctrine_Table</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Table_Exception.html">Doctrine_Table_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Table_Repository.html">Doctrine_Table_Repository</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Table_Repository_Exception.html">Doctrine_Table_Repository_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Template.html">Doctrine_Template</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Template_NestedSet.html">Doctrine_Template_NestedSet</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Template_Searchable.html">Doctrine_Template_Searchable</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Template_Taggable.html">Doctrine_Template_Taggable</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Template_Versionable.html">Doctrine_Template_Versionable</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Tokenizer.html">Doctrine_Tokenizer</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction.html">Doctrine_Transaction</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction_Exception.html">Doctrine_Transaction_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction_Firebird.html">Doctrine_Transaction_Firebird</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction_Informix.html">Doctrine_Transaction_Informix</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction_Mock.html">Doctrine_Transaction_Mock</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction_Mssql.html">Doctrine_Transaction_Mssql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction_Mysql.html">Doctrine_Transaction_Mysql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction_Oracle.html">Doctrine_Transaction_Oracle</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction_Pgsql.html">Doctrine_Transaction_Pgsql</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Transaction_Sqlite.html">Doctrine_Transaction_Sqlite</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Tree.html">Doctrine_Tree</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Tree_AdjacencyList.html">Doctrine_Tree_AdjacencyList</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Tree_Exception.html">Doctrine_Tree_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Tree_MaterializedPath.html">Doctrine_Tree_MaterializedPath</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Tree_NestedSet.html">Doctrine_Tree_NestedSet</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Util.html">Doctrine_Util</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator.html">Doctrine_Validator</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Country.html">Doctrine_Validator_Country</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Creditcard.html">Doctrine_Validator_Creditcard</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Date.html">Doctrine_Validator_Date</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Email.html">Doctrine_Validator_Email</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Enum.html">Doctrine_Validator_Enum</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_ErrorStack.html">Doctrine_Validator_ErrorStack</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Exception.html">Doctrine_Validator_Exception</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_HtmlColor.html">Doctrine_Validator_HtmlColor</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Ip.html">Doctrine_Validator_Ip</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Minlength.html">Doctrine_Validator_Minlength</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Nospace.html">Doctrine_Validator_Nospace</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Notblank.html">Doctrine_Validator_Notblank</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Notnull.html">Doctrine_Validator_Notnull</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Range.html">Doctrine_Validator_Range</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Regexp.html">Doctrine_Validator_Regexp</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Unique.html">Doctrine_Validator_Unique</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Unsigned.html">Doctrine_Validator_Unsigned</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_Validator_Usstate.html">Doctrine_Validator_Usstate</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_View.html">Doctrine_View</a>    	 <br />
	    		<a href="../Doctrine/Doctrine_View_Exception.html">Doctrine_View_Exception</a>    	 <br />
	  </div>
  <div class="package">
	Doctrine_Cache<br />	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Cache/Doctrine_Cache.html">Doctrine_Cache</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Cache/Doctrine_Cache_Apc.html">Doctrine_Cache_Apc</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Cache/Doctrine_Cache_Array.html">Doctrine_Cache_Array</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Cache/Doctrine_Cache_Db.html">Doctrine_Cache_Db</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Cache/Doctrine_Cache_Driver.html">Doctrine_Cache_Driver</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Cache/Doctrine_Cache_Exception.html">Doctrine_Cache_Exception</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Cache/Doctrine_Cache_Memcache.html">Doctrine_Cache_Memcache</a>    </span>	 <br />
	  </div>
  <div class="package">
	Doctrine_Adapter<br />	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Adapter/Doctrine_Adapter_Db2.html">Doctrine_Adapter_Db2</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Adapter/Doctrine_Adapter_Mock.html">Doctrine_Adapter_Mock</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Adapter/Doctrine_Adapter_Mysqli.html">Doctrine_Adapter_Mysqli</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Adapter/Doctrine_Adapter_Oracle.html">Doctrine_Adapter_Oracle</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_Adapter/Doctrine_Adapter_Statement_Mock.html">Doctrine_Adapter_Statement_Mock</a>    </span>	 <br />
	  </div>
  <div class="package">
	Doctrine_DataDict<br />	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_DataDict/Doctrine_DataDict_Firebird.html">Doctrine_DataDict_Firebird</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_DataDict/Doctrine_DataDict_Mssql.html">Doctrine_DataDict_Mssql</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_DataDict/Doctrine_DataDict_Mysql.html">Doctrine_DataDict_Mysql</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_DataDict/Doctrine_DataDict_Oracle.html">Doctrine_DataDict_Oracle</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_DataDict/Doctrine_DataDict_Pgsql.html">Doctrine_DataDict_Pgsql</a>    </span>	 <br />
	    <span style="padding-left: 1em;">		<a href="../Doctrine/Doctrine_DataDict/Doctrine_DataDict_Sqlite.html">Doctrine_DataDict_Sqlite</a>    </span>	 <br />
	  </div>
</div>

<div id="content">
<h1>Class: Doctrine_Connection_Mysql</h1>
Source Location: /Doctrine/Connection/Mysql.php<br /><br />

<h2 class="class-name">Class Doctrine_Connection_Mysql</h2>

<a name="sec-description"></a>
<div class="info-box">
	<div class="info-box-title">Class Overview</div>
	<div class="nav-bar">
					<span class="disabled">Class Overview</span> |
						
					<a href="#sec-inherited">Inherited Properties, Constants, and Methods</a>
			|											<a href="#sec-var-summary">Properties Summary</a> | <a href="#sec-vars">Properties Detail</a>
						|											<a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a>
											</div>
	<div class="info-box-body">
		<table width="100%" border="0">
		<tr><td valign="top" width="60%" class="class-overview">

        		<p align="center" class="short-description"><strong>Doctrine_Connection_Mysql
</strong></p>

		<p class="notes">
			Located in <a class="field" href="_Doctrine---Connection---Mysql.php.html">/Doctrine/Connection/Mysql.php</a> [<span class="field">line <a href="../__filesource/fsource_Doctrine__DoctrineConnectionMysql.php.html#a34">34</a></span>]
		</p>

		
		<pre><a href="../Doctrine/Doctrine_Object.html">Doctrine_Object</a>
   |
   --<a href="../Doctrine/Doctrine_Configurable.html">Doctrine_Configurable</a>
      |
      --<a href="../Doctrine/Doctrine_Connection.html">Doctrine_Connection</a>
         |
         --<a href="../Doctrine/Doctrine_Connection_Common.html">Doctrine_Connection_Common</a>
            |
            --Doctrine_Connection_Mysql</pre>

		
				<strong>Author(s):</strong>
		<ul>
		  			 			 <li>Lukas Smith &lt;<a href="mailto:smith@pooteeweet.org">smith@pooteeweet.org</a>&gt; (PEAR MDB2 library)</li>
			 		  			 			 <li>Konsta Vesterinen &lt;<a href="mailto:kvesteri@cc.hut.fi">kvesteri@cc.hut.fi</a>&gt;</li>
			 		  			 		  			 		  			 		  			 		  		</ul>
		
		
<strong>Information Tags:</strong><br />
<table border="0" cellspacing="0" cellpadding="0">
					<tr><td><strong>Version:</strong>&nbsp;&nbsp;</td><td>$Revision: 1773 $</td></tr>
				<tr><td><strong>Link:</strong>&nbsp;&nbsp;</td><td>www.phpdoctrine.com</td></tr>
				<tr><td><strong>Since:</strong>&nbsp;&nbsp;</td><td>1.0</td></tr>
				<tr><td><strong>License:</strong>&nbsp;&nbsp;</td><td><a href="http://www.opensource.org/licenses/lgpl-license.php">LGPL</a></td></tr>
	</table>
		</td>

				<td valign="top" width="20%" class="class-overview">
		<p align="center" class="short-description"><strong><a href="#sec_vars">Properties</a></strong></p>
		<ul>
		  		  <li><a href="../Doctrine/Doctrine_Connection_Mysql.html#var$driverName">$driverName</a></li>
		  		</ul>
		</td>
		
				<td valign="top" width="20%" class="class-overview">
		<p align="center" class="short-description"><strong><a href="#sec_methods">Methods</a></strong></p>
		<ul>
		  		  <li><a href="../Doctrine/Doctrine_Connection_Mysql.html#method__construct">__construct</a></li>
		  		  <li><a href="../Doctrine/Doctrine_Connection_Mysql.html#methodreplace">replace</a></li>
		  		  <li><a href="../Doctrine/Doctrine_Connection_Mysql.html#methodsetCharset">setCharset</a></li>
		  		</ul>
		</td>
		
		</tr></table>
		<div class="top">[ <a href="#top">Top</a> ]</div>
	</div>
</div>


	<a name="sec-inherited"></a>
	<div class="info-box">
		<div class="info-box-title">Inherited Properties, Constants, and Methods</div>
		<div class="nav-bar">
			<a href="#sec-description">Class Overview</a> |
						|			<span class="disabled">Inherited Properties, Constants, and Methods</span>
			|												<a href="#sec-var-summary">Properties Summary</a> | <a href="#sec-vars">Properties Detail</a>
								|															<a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a>
											    				</div>
		<div class="info-box-body">
			<table cellpadding="2" cellspacing="0" class="class-table">
				<tr>
					<th class="class-table-header" width="30%">Inherited Properties</th>
					<th class="class-table-header" width="40%">Inherited Methods</th>
					<th class="class-table-header" width="30%">Inherited Constants</th>
				</tr>
				<tr>
					<td width="30%">
													<p>Inherited From <span class="classname"><a href="../Doctrine/Doctrine_Connection.html">Doctrine_Connection</a></span></p>
							<blockquote>
								<dl>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$availableDrivers">Doctrine_Connection::$availableDrivers</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$dbh">Doctrine_Connection::$dbh</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$isConnected">Doctrine_Connection::$isConnected</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$modules">Doctrine_Connection::$modules</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$options">Doctrine_Connection::$options</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$pendingAttributes">Doctrine_Connection::$pendingAttributes</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$properties">Doctrine_Connection::$properties</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$serverInfo">Doctrine_Connection::$serverInfo</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$supported">Doctrine_Connection::$supported</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$tables">Doctrine_Connection::$tables</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#var$_count">Doctrine_Connection::$_count</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																	</dl>
							</blockquote>
													<p>Inherited From <span class="classname"><a href="../Doctrine/Doctrine_Configurable.html">Doctrine_Configurable</a></span></p>
							<blockquote>
								<dl>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#var$attributes">Doctrine_Configurable::$attributes</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#var$parent">Doctrine_Configurable::$parent</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#var$_impl">Doctrine_Configurable::$_impl</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																	</dl>
							</blockquote>
													<p>Inherited From <span class="classname"><a href="../Doctrine/Doctrine_Object.html">Doctrine_Object</a></span></p>
							<blockquote>
								<dl>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Object.html#var$_null">Doctrine_Object::$_null</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																	</dl>
							</blockquote>
											</td>
					<td width="40%">
													<p>Inherited From <span class="classname"><a href="../Doctrine/Doctrine_Connection_Common.html">Doctrine_Connection_Common</a></span></p>
							<blockquote>
								<dl>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection_Common.html#methodmodifyLimitQuery">Doctrine_Connection_Common::modifyLimitQuery()</a></span>
										</dt>
										<dd>
											<span class="method-definition">Adds an driver-specific LIMIT clause to the query</span>
										</dd>
																	</dl>
							</blockquote>
													<p>Inherited From <span class="classname"><a href="../Doctrine/Doctrine_Connection.html">Doctrine_Connection</a></span></p>
							<blockquote>
								<dl>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#method__construct">Doctrine_Connection::__construct()</a></span>
										</dt>
										<dd>
											<span class="method-definition">the constructor</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodaddTable">Doctrine_Connection::addTable()</a></span>
										</dt>
										<dd>
											<span class="method-definition">addTable  adds a Doctrine_Table object into connection registry</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodbeginTransaction">Doctrine_Connection::beginTransaction()</a></span>
										</dt>
										<dd>
											<span class="method-definition">beginTransaction  Start a transaction or set a savepoint.</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodclear">Doctrine_Connection::clear()</a></span>
										</dt>
										<dd>
											<span class="method-definition">clear  clears all repositories</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodclose">Doctrine_Connection::close()</a></span>
										</dt>
										<dd>
											<span class="method-definition">close  closes the connection</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodcommit">Doctrine_Connection::commit()</a></span>
										</dt>
										<dd>
											<span class="method-definition">commit  Commit the database changes done during a transaction that is in  progress or release a savepoint. This function may only be called when  auto-committing is disabled, otherwise it will fail.</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodconnect">Doctrine_Connection::connect()</a></span>
										</dt>
										<dd>
											<span class="method-definition">connect  connects into database</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodconvertBooleans">Doctrine_Connection::convertBooleans()</a></span>
										</dt>
										<dd>
											<span class="method-definition">convertBooleans  some drivers need the boolean values to be converted into integers  when using DQL API</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodcount">Doctrine_Connection::count()</a></span>
										</dt>
										<dd>
											<span class="method-definition">returns the count of initialized table objects</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodcreate">Doctrine_Connection::create()</a></span>
										</dt>
										<dd>
											<span class="method-definition">create  creates a record</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methoddriverName">Doctrine_Connection::driverName()</a></span>
										</dt>
										<dd>
											<span class="method-definition">converts given driver name</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methoderrorCode">Doctrine_Connection::errorCode()</a></span>
										</dt>
										<dd>
											<span class="method-definition">errorCode  Fetch the SQLSTATE associated with the last operation on the database handle</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methoderrorInfo">Doctrine_Connection::errorInfo()</a></span>
										</dt>
										<dd>
											<span class="method-definition">errorInfo  Fetch extended error information associated with the last operation on the database handle</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodevictTables">Doctrine_Connection::evictTables()</a></span>
										</dt>
										<dd>
											<span class="method-definition">evictTables  evicts all tables</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodexec">Doctrine_Connection::exec()</a></span>
										</dt>
										<dd>
											<span class="method-definition">exec</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodexecute">Doctrine_Connection::execute()</a></span>
										</dt>
										<dd>
											<span class="method-definition">execute</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodfetchAll">Doctrine_Connection::fetchAll()</a></span>
										</dt>
										<dd>
											<span class="method-definition">fetchAll</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodfetchArray">Doctrine_Connection::fetchArray()</a></span>
										</dt>
										<dd>
											<span class="method-definition">fetchArray</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodfetchAssoc">Doctrine_Connection::fetchAssoc()</a></span>
										</dt>
										<dd>
											<span class="method-definition">fetchAssoc</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodfetchBoth">Doctrine_Connection::fetchBoth()</a></span>
										</dt>
										<dd>
											<span class="method-definition">fetchBoth</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodfetchColumn">Doctrine_Connection::fetchColumn()</a></span>
										</dt>
										<dd>
											<span class="method-definition">fetchColumn</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodfetchOne">Doctrine_Connection::fetchOne()</a></span>
										</dt>
										<dd>
											<span class="method-definition">fetchOne</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodfetchRow">Doctrine_Connection::fetchRow()</a></span>
										</dt>
										<dd>
											<span class="method-definition">fetchRow</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodflush">Doctrine_Connection::flush()</a></span>
										</dt>
										<dd>
											<span class="method-definition">flush  saves all the records from all tables  this operation is isolated using a transaction</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodgetAttribute">Doctrine_Connection::getAttribute()</a></span>
										</dt>
										<dd>
											<span class="method-definition">getAttribute  retrieves a database connection attribute</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodgetAvailableDrivers">Doctrine_Connection::getAvailableDrivers()</a></span>
										</dt>
										<dd>
											<span class="method-definition">returns an array of available PDO drivers</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodgetDbh">Doctrine_Connection::getDbh()</a></span>
										</dt>
										<dd>
											<span class="method-definition">returns the database handler of which this connection uses</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodgetIterator">Doctrine_Connection::getIterator()</a></span>
										</dt>
										<dd>
											<span class="method-definition">returns an iterator that iterators through all  initialized table objects</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodgetManager">Doctrine_Connection::getManager()</a></span>
										</dt>
										<dd>
											<span class="method-definition">returns the manager that created this connection</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodgetName">Doctrine_Connection::getName()</a></span>
										</dt>
										<dd>
											<span class="method-definition">getName  returns the name of this driver</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodgetTable">Doctrine_Connection::getTable()</a></span>
										</dt>
										<dd>
											<span class="method-definition">returns a table object for given component name</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodgetTables">Doctrine_Connection::getTables()</a></span>
										</dt>
										<dd>
											<span class="method-definition">returns an array of all initialized tables</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodgetTransactionLevel">Doctrine_Connection::getTransactionLevel()</a></span>
										</dt>
										<dd>
											<span class="method-definition">get the current transaction nesting level</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodhasTable">Doctrine_Connection::hasTable()</a></span>
										</dt>
										<dd>
											<span class="method-definition">hasTable  whether or not this connection has table $name initialized</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodincrementQueryCount">Doctrine_Connection::incrementQueryCount()</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodinsert">Doctrine_Connection::insert()</a></span>
										</dt>
										<dd>
											<span class="method-definition">Inserts a table row with specified data.</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodlastInsertId">Doctrine_Connection::lastInsertId()</a></span>
										</dt>
										<dd>
											<span class="method-definition">lastInsertId</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodprepare">Doctrine_Connection::prepare()</a></span>
										</dt>
										<dd>
											<span class="method-definition">prepare</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodquery">Doctrine_Connection::query()</a></span>
										</dt>
										<dd>
											<span class="method-definition">query  queries the database using Doctrine Query Language  returns a collection of Doctrine_Record objects</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodqueryOne">Doctrine_Connection::queryOne()</a></span>
										</dt>
										<dd>
											<span class="method-definition">query  queries the database using Doctrine Query Language and returns  the first record found</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodquote">Doctrine_Connection::quote()</a></span>
										</dt>
										<dd>
											<span class="method-definition">quote  quotes given input parameter</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodquoteIdentifier">Doctrine_Connection::quoteIdentifier()</a></span>
										</dt>
										<dd>
											<span class="method-definition">Quote a string so it can be safely used as a table or column name</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodreplace">Doctrine_Connection::replace()</a></span>
										</dt>
										<dd>
											<span class="method-definition">Execute a SQL REPLACE query. A REPLACE query is identical to a INSERT  query, except that if there is already a row in the table with the same  key field values, the REPLACE query just updates its values instead of  inserting a new row.</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodrethrowException">Doctrine_Connection::rethrowException()</a></span>
										</dt>
										<dd>
											<span class="method-definition">rethrowException</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodrollback">Doctrine_Connection::rollback()</a></span>
										</dt>
										<dd>
											<span class="method-definition">rollback</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodselect">Doctrine_Connection::select()</a></span>
										</dt>
										<dd>
											<span class="method-definition">queries the database with limit and offset  added to the query and returns a PDOStatement object</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodsetAttribute">Doctrine_Connection::setAttribute()</a></span>
										</dt>
										<dd>
											<span class="method-definition">setAttribute  sets an attribute</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodsetCharset">Doctrine_Connection::setCharset()</a></span>
										</dt>
										<dd>
											<span class="method-definition">Set the charset on the current connection</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodsetDateFormat">Doctrine_Connection::setDateFormat()</a></span>
										</dt>
										<dd>
											<span class="method-definition">Set the date/time format for the current connection</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodstandaloneQuery">Doctrine_Connection::standaloneQuery()</a></span>
										</dt>
										<dd>
											<span class="method-definition">standaloneQuery</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#methodsupports">Doctrine_Connection::supports()</a></span>
										</dt>
										<dd>
											<span class="method-definition">supports</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#method__get">Doctrine_Connection::__get()</a></span>
										</dt>
										<dd>
											<span class="method-definition">__get  lazy loads given module and returns it</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Connection.html#method__toString">Doctrine_Connection::__toString()</a></span>
										</dt>
										<dd>
											<span class="method-definition">returns a string representation of this object</span>
										</dd>
																	</dl>
							</blockquote>
													<p>Inherited From <span class="classname"><a href="../Doctrine/Doctrine_Configurable.html">Doctrine_Configurable</a></span></p>
							<blockquote>
								<dl>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodaddListener">Doctrine_Configurable::addListener()</a></span>
										</dt>
										<dd>
											<span class="method-definition">addListener</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodaddRecordListener">Doctrine_Configurable::addRecordListener()</a></span>
										</dt>
										<dd>
											<span class="method-definition">addRecordListener</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodgetAttribute">Doctrine_Configurable::getAttribute()</a></span>
										</dt>
										<dd>
											<span class="method-definition">returns the value of an attribute</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodgetAttributes">Doctrine_Configurable::getAttributes()</a></span>
										</dt>
										<dd>
											<span class="method-definition">getAttributes  returns all attributes as an array</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodgetCacheDriver">Doctrine_Configurable::getCacheDriver()</a></span>
										</dt>
										<dd>
											<span class="method-definition">getCacheDriver</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodgetImpl">Doctrine_Configurable::getImpl()</a></span>
										</dt>
										<dd>
											<span class="method-definition">getImpl  returns the implementation for given class</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodgetListener">Doctrine_Configurable::getListener()</a></span>
										</dt>
										<dd>
											<span class="method-definition">getListener</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodgetParent">Doctrine_Configurable::getParent()</a></span>
										</dt>
										<dd>
											<span class="method-definition">getParent  returns the parent of this component</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodgetRecordListener">Doctrine_Configurable::getRecordListener()</a></span>
										</dt>
										<dd>
											<span class="method-definition">getListener</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodsetAttribute">Doctrine_Configurable::setAttribute()</a></span>
										</dt>
										<dd>
											<span class="method-definition">setAttribute  sets a given attribute</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodsetEventListener">Doctrine_Configurable::setEventListener()</a></span>
										</dt>
										<dd>
											<span class="method-definition"></span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodsetImpl">Doctrine_Configurable::setImpl()</a></span>
										</dt>
										<dd>
											<span class="method-definition">setImpl  binds given class to given template name</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodsetListener">Doctrine_Configurable::setListener()</a></span>
										</dt>
										<dd>
											<span class="method-definition">setListener</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodsetParent">Doctrine_Configurable::setParent()</a></span>
										</dt>
										<dd>
											<span class="method-definition">sets a parent for this configurable component  the parent must be configurable component itself</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Configurable.html#methodsetRecordListener">Doctrine_Configurable::setRecordListener()</a></span>
										</dt>
										<dd>
											<span class="method-definition">setListener</span>
										</dd>
																	</dl>
							</blockquote>
													<p>Inherited From <span class="classname"><a href="../Doctrine/Doctrine_Object.html">Doctrine_Object</a></span></p>
							<blockquote>
								<dl>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Object.html#methodgetNullObject">Doctrine_Object::getNullObject()</a></span>
										</dt>
										<dd>
											<span class="method-definition">getNullObject  returns the null object associated with this object</span>
										</dd>
																			<dt>
											<span class="method-definition"><a href="../Doctrine/Doctrine_Object.html#methodinitNullObject">Doctrine_Object::initNullObject()</a></span>
										</dt>
										<dd>
											<span class="method-definition">initNullObject  initializes the null object</span>
										</dd>
																	</dl>
							</blockquote>
											</td>
					<td width="30%">
											</td>
				</tr>
			</table>
			<br /><div class="top">[ <a href="#top">Top</a> ]</div>
		</div>
	</div>


	<a name="sec-var-summary"></a>
	<div class="info-box">
		<div class="info-box-title">Property Summary</span></div>
		<div class="nav-bar">
			<a href="#sec-description">Class Overview</a> |
										<a href="#sec-inherited">Inherited Properties and Methods</a>
				|						<span class="disabled">Property Summary</span> | <a href="#sec-vars">Properties Detail</a>
												<a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a>
											    				</div>
		<div class="info-box-body">
			<div class="var-summary">
			<table border="0" cellspacing="0" cellpadding="0" class="var-summary">
																			<div class="var-title">
					<tr><td class="var-title"><span class="var-type-summary">string</span>&nbsp;&nbsp;</td>
					<td class="var-title"><a href="#$driverName" title="details" class="var-name-summary">$driverName</a>&nbsp;&nbsp;</td>
					<td class="var-summary-description"></td></tr>
				</div>
										</table>
			</div>
			<br /><div class="top">[ <a href="#top">Top</a> ]</div>
		</div>
	</div>

	<a name="sec-method-summary"></a>
	<div class="info-box">
		<div class="info-box-title">Method Summary</span></div>
		<div class="nav-bar">
			<a href="#sec-description">Class Overview</a> |
										<a href="#sec-inherited">Inherited Properties and Methods</a>
				|															<a href="#sec-var-summary">Properties Summary</a> | <a href="#sec-vars">Properties Detail</a>
											    					<span class="disabled">Method Summary</span> | <a href="#sec-methods">Methods Detail</a>
		</div>
		<div class="info-box-body">
			<div class="method-summary">
				<table border="0" cellspacing="0" cellpadding="0" class="method-summary">
																																								<div class="method-definition">
											<tr><td class="method-definition"><span class="method-result">Doctrine_Connection_Mysql</span>&nbsp;&nbsp;</td>
										<td class="method-definition"><a href="#__construct" title="details" class="method-name">__construct</a>()&nbsp;&nbsp;</td>
					<td class="method-definition">the constructor</td></tr>
				</div>
																<div class="method-definition">
											<tr><td class="method-definition"><span class="method-result">integer</span>&nbsp;&nbsp;</td>
										<td class="method-definition"><a href="#replace" title="details" class="method-name">replace</a>()&nbsp;&nbsp;</td>
					<td class="method-definition">Execute a SQL REPLACE query. A REPLACE query is identical to a INSERT  query, except that if there is already a row in the table with the same  key field values, the REPLACE query just updates its values instead of  inserting a new row.</td></tr>
				</div>
																<div class="method-definition">
											<tr><td class="method-definition"><span class="method-result">void</span>&nbsp;&nbsp;</td>
										<td class="method-definition"><a href="#setCharset" title="details" class="method-name">setCharset</a>()&nbsp;&nbsp;</td>
					<td class="method-definition">Set the charset on the current connection</td></tr>
				</div>
												</table>
			</div>
			<br /><div class="top">[ <a href="#top">Top</a> ]</div>
		</div>
	</div>

	<a name="sec-vars"></a>
	<div class="info-box">
		<div class="info-box-title">Properties</div>
		<div class="nav-bar">
			<a href="#sec-description">Class Overview</a> |
										<a href="#sec-inherited">Inherited Properties and Methods</a>
				|										<a href="#sec-var-summary">Property Summary</a> | <a href="#sec-vars">Properties Detail</a>
			
							|
									<a href="#sec-method-summary">Method Summary</a> | <a href="#sec-methods">Methods Detail</a>
												</div>
		<div class="info-box-body">
			<a name="var$driverName" id="$driverName"><!-- --></A>
<div class="evenrow">

	<div class="var-header">
		<span class="var-title">
			<span class="var-type">string</span>&nbsp;&nbsp;
			<span class="var-name">$driverName</span>
			 = <span class="var-default"> 'Mysql'</span>			<span class="smalllinenumber">[line <a href="../__filesource/fsource_Doctrine__DoctrineConnectionMysql.php.html#a39">39</a>]</span>
		</span>
	</div>

		<strong>API Tags:</strong><br />
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="indent"><strong>Access:</strong>&nbsp;&nbsp;</td><td>protected</td>
  </tr>
</table>
<br />


			<hr class="separator" />
		<div class="notes">Redefinition of:</div>
		<dl>
			<dt><a href="../Doctrine/Doctrine_Connection.html#var$driverName">Doctrine_Connection::$driverName</a></dt>
					</dl>
	
		<br />
	<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
		</div>
	</div>

	<a name="sec-methods"></a>
	<div class="info-box">
		<div class="info-box-title">Methods</div>
		<div class="nav-bar">
			<a href="#sec-description">Class Overview</a> |
										<a href="#sec-inherited">Inherited Properties and Methods</a>
				|						                |
									<a href="#sec-var-summary">Property Summary</a> | <a href="#sec-vars">Properties Detail</a>
																	| <a href="#sec-method-summary">Method Summary</a> | <span class="disabled">Methods Detail</span>
					</div>
		<div class="info-box-body">
			<a name='method_detail'></a>

<a name="method__construct" id="__construct"><!-- --></a>
<div class="oddrow">

<div class="method-header">
	<span class="method-title">Constructor __construct</span>&nbsp;&nbsp;<span class="smalllinenumber">[line <a href="../__filesource/fsource_Doctrine__DoctrineConnectionMysql.php.html#a46">46</a>]</span>
</div>
<br />

	<div class="function">
    <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code-border">
    <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">&nbsp;
		<code>Doctrine_Connection_Mysql __construct(
<a href="../Doctrine/Doctrine_Manager.html">Doctrine_Manager</a>
$manager, PDO|<a href="../Doctrine/Doctrine_Adapter.html">Doctrine_Adapter</a>
$adapter&nbsp;
)</code>
    </td></tr></table>
    </td></tr></table><br /></div>

	<p align="center" class="short-description"><strong>the constructor
</strong></p>

			<strong>Parameters:</strong><br />
			<table border="0" cellspacing="0" cellpadding="0">
					<tr><td class="indent">
				<span class="var-type"><a href="../Doctrine/Doctrine_Manager.html">Doctrine_Manager</a></span>&nbsp;&nbsp;</td>
				<td>
				<span class="var-name">$manager:&nbsp;</span></td>
				<td>
							</td></tr>
					<tr><td class="indent">
				<span class="var-type">PDO|<a href="../Doctrine/Doctrine_Adapter.html">Doctrine_Adapter</a></span>&nbsp;&nbsp;</td>
				<td>
				<span class="var-name">$adapter:&nbsp;</span></td>
				<td>
				<span class="var-description"> database handler</span>			</td></tr>
				</table>

	<br />
	<strong>API Tags:</strong><br />
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="indent"><strong>Access:</strong>&nbsp;&nbsp;</td><td>public</td>
  </tr>
</table>
<br />


			<hr class="separator" />
		<div class="notes">Redefinition of:</div>
		<dl>
			<dt><a href="../Doctrine/Doctrine_Connection.html#method__construct">Doctrine_Connection::__construct()</a></dt>
						<dd>the constructor</dd>
					</dl>
		
		<br />
	<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<a name="methodreplace" id="replace"><!-- --></a>
<div class="evenrow">

<div class="method-header">
	<span class="method-title">replace</span>&nbsp;&nbsp;<span class="smalllinenumber">[line <a href="../__filesource/fsource_Doctrine__DoctrineConnectionMysql.php.html#a167">167</a>]</span>
</div>
<br />

	<div class="function">
    <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code-border">
    <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">&nbsp;
		<code>integer replace(
string
$table, 
$fields, 
$keys&nbsp;
)</code>
    </td></tr></table>
    </td></tr></table><br /></div>

	<p align="center" class="short-description"><strong>Execute a SQL REPLACE query. A REPLACE query is identical to a INSERT  query, except that if there is already a row in the table with the same  key field values, the REPLACE query just updates its values instead of  inserting a new row.
</strong></p>
<span class="description"><p>The REPLACE type of query does not make part of the SQL standards. Since  practically only MySQL implements it natively, this type of query is  emulated through this method for other DBMS using standard types of  queries inside a transaction to assure the atomicity of the operation.</p></span>
			<strong>Parameters:</strong><br />
			<table border="0" cellspacing="0" cellpadding="0">
					<tr><td class="indent">
				<span class="var-type">string</span>&nbsp;&nbsp;</td>
				<td>
				<span class="var-name">$table:&nbsp;</span></td>
				<td>
				<span class="var-description"> name of the table on which the REPLACE query will   be executed.</span>			</td></tr>
					<tr><td class="indent">
				<span class="var-type">array</span>&nbsp;&nbsp;</td>
				<td>
				<span class="var-name">$fields:&nbsp;</span></td>
				<td>
				<span class="var-description"> <p>associative array that describes the fields and the   values that will be inserted or updated in the specified table. The   indexes of the array are the names of all the fields of the table. The   values of the array are also associative arrays that describe the   values and other properties of the table fields.</p><p>Here follows a list of field properties that need to be specified:</p><p>value:           Value to be assigned to the specified field. This value may be           of specified in database independent type format as this           function can perform the necessary datatype conversions.</p><p>Default:           this property is required unless the Null property           is set to 1.</p><p>type           Name of the type of the field. Currently, all types Metabase           are supported except for clob and blob.</p><p>Default: no type conversion</p><p>null           Boolean property that indicates that the value for this field           should be set to null.</p><p>The default value for fields missing in INSERT queries may be           specified the definition of a table. Often, the default value           is already null, but since the REPLACE may be emulated using           an UPDATE query, make sure that all fields of the table are           listed in this function argument array.</p><p>Default: 0</p><p>key           Boolean property that indicates that this field should be           handled as a primary key or at least as part of the compound           unique index of the table that will determine the row that will           updated if it exists or inserted a new row otherwise.</p><p>This function will fail if no key field is specified or if the           value of a key field is set to null because fields that are           part of unique index they may not be null.</p><p>Default: 0</p></span>			</td></tr>
					<tr><td class="indent">
				<span class="var-type">array</span>&nbsp;&nbsp;</td>
				<td>
				<span class="var-name">$keys:&nbsp;</span></td>
				<td>
							</td></tr>
				</table>

	<br />
	<strong>API Tags:</strong><br />
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="indent"><strong>Return:</strong>&nbsp;&nbsp;</td><td>the number of affected rows</td>
  </tr>
  <tr>
    <td class="indent"><strong>Access:</strong>&nbsp;&nbsp;</td><td>public</td>
  </tr>
</table>
<br />


			<hr class="separator" />
		<div class="notes">Redefinition of:</div>
		<dl>
			<dt><a href="../Doctrine/Doctrine_Connection.html#methodreplace">Doctrine_Connection::replace()</a></dt>
						<dd>Execute a SQL REPLACE query. A REPLACE query is identical to a INSERT  query, except that if there is already a row in the table with the same  key field values, the REPLACE query just updates its values instead of  inserting a new row.</dd>
					</dl>
		
		<br />
	<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
<a name="methodsetCharset" id="setCharset"><!-- --></a>
<div class="oddrow">

<div class="method-header">
	<span class="method-title">setCharset</span>&nbsp;&nbsp;<span class="smalllinenumber">[line <a href="../__filesource/fsource_Doctrine__DoctrineConnectionMysql.php.html#a98">98</a>]</span>
</div>
<br />

	<div class="function">
    <table width="90%" border="0" cellspacing="0" cellpadding="1"><tr><td class="code-border">
    <table width="100%" border="0" cellspacing="0" cellpadding="2"><tr><td class="code">&nbsp;
		<code>void setCharset(
string
$charset&nbsp;
)</code>
    </td></tr></table>
    </td></tr></table><br /></div>

	<p align="center" class="short-description"><strong>Set the charset on the current connection
</strong></p>

			<strong>Parameters:</strong><br />
			<table border="0" cellspacing="0" cellpadding="0">
					<tr><td class="indent">
				<span class="var-type">string</span>&nbsp;&nbsp;</td>
				<td>
				<span class="var-name">$charset:&nbsp;</span></td>
				<td>
				<span class="var-description"> charset</span>			</td></tr>
				</table>

	<br />
	<strong>API Tags:</strong><br />
<table border="0" cellspacing="0" cellpadding="0">
  <tr>
    <td class="indent"><strong>Access:</strong>&nbsp;&nbsp;</td><td>public</td>
  </tr>
</table>
<br />


			<hr class="separator" />
		<div class="notes">Redefinition of:</div>
		<dl>
			<dt><a href="../Doctrine/Doctrine_Connection.html#methodsetCharset">Doctrine_Connection::setCharset()</a></dt>
						<dd>Set the charset on the current connection</dd>
					</dl>
		
		<br />
	<div class="top">[ <a href="#top">Top</a> ]</div>
</div>
		</div>
	</div>


</div>