Accessing Databases with Object-Oriented PHP [2014, ENG]

seeders: 5 leechers: 0
Added 12 years ago by BrutalStorm in Other
Downloaded 0 time.
RuTracker.org
Accessing Databases with Object-Oriented PHP [2014, ENG]

Torrent Contents Size: 863.66 MB

Accessing Databases with Object-Oriented PHP [2014, ENG]
01. Introduction
01_01-Welcome.mp4
MP4
9.54 MB
01_02-What you should know before watching this course.mp4
MP4
3.07 MB
01_03-Using the exercise files.mp4
MP4
16.67 MB
01_04-Setting SQLite permissions.mp4
MP4
2.7 MB
01_05-A quick primer on using PHP objects.mp4
MP4
10.03 MB
02. Why Use Object-Oriented PHP to Access a Database
02_01-Overview of PHP database APIs.mp4
MP4
11.29 MB
02_02-Using prepared statements.mp4
MP4
9.32 MB
02_03-Using transactions.mp4
MP4
3.78 MB
03. PHP Data Object (PDO) Basics
03_01-Creating a database source name.mp4
MP4
4.79 MB
03_02-Connecting to a database with PDO.mp4
MP4
31.36 MB
03_03-Looping directly over a SELECT query.mp4
MP4
14.94 MB
03_04-Fetching a result set.mp4
MP4
35.93 MB
03_05-Finding the number of results from a SELECT query.mp4
MP4
32.19 MB
03_06-Checking if a SELECT query contains results.mp4
MP4
15.66 MB
03_07-Executing simple non-SELECT queries.mp4
MP4
14.81 MB
03_08-Getting error messages.mp4
MP4
32.52 MB
03_09-Using the quote() method to sanitize user input.mp4
MP4
15.31 MB
04. PDO-Prepared Statements and Transactions
04_01-Binding input and output values.mp4
MP4
5.22 MB
04_02-Using named parameters.mp4
MP4
44.01 MB
04_03-Using question marks as anonymous placeholders.mp4
MP4
11.38 MB
04_04-Passing an array of values to the execute() method.mp4
MP4
23.54 MB
04_05-Binding results to variables.mp4
MP4
35.92 MB
04_06-Executing a transaction.mp4
MP4
26.21 MB
04_07-Closing the cursor before running another query.mp4
MP4
21.22 MB
05. Advanced PDO Fetch Methods
05_01-Generating an array from a pair of columns.mp4
MP4
10.11 MB
05_02-Setting an existing object`s properties with a database result.mp4
MP4
14.41 MB
05_03-Creating an instance of a specific class with a database result.mp4
MP4
20.31 MB
05_04-Reusing a result set.mp4
MP4
33.63 MB
06. MySQL Improved Basics
06_01-Connecting to a database with MySQLi.mp4
MP4
17.67 MB
06_02-Setting the character set.mp4
MP4
4.33 MB
06_03-Submitting a SELECT query and getting the number of results.mp4
MP4
18.56 MB
06_04-Fetching the result.mp4
MP4
24.93 MB
06_05-Rewinding the result for reuse.mp4
MP4
14.34 MB
06_06-Handling non-SELECT queries.mp4
MP4
21.99 MB
06_07-Getting error messages.mp4
MP4
23.08 MB
06_08-Sanitizing user input with real_escape_string().mp4
MP4
13.58 MB
07. MySQLi Prepared Statements and Transactions
07_01-Initializing and preparing a statement.mp4
MP4
19.4 MB
07_02-Binding parameters and executing a prepared statement.mp4
MP4
26.39 MB
07_03-Binding output variables.mp4
MP4
23.08 MB
07_04-Executing a MySQLi transaction.mp4
MP4
31.63 MB
07_05-Dealing with commands out of sync in prepared statements.mp4
MP4
24.52 MB
08. Diving Deeper into MySQLi
08_01-Buffered and unbuffered queries.mp4
MP4
9.42 MB
08_02-Using real_query().mp4
MP4
27.08 MB
08_03-Freeing resources that are no longer needed.mp4
MP4
4.03 MB
08_04-Submitting multiple queries.mp4
MP4
27.21 MB
08_05-Creating an instance of a class from a result set.mp4
MP4
15.01 MB
09. Conclusion
09_01-PDO and MySQLi compared.mp4
MP4
7.37 MB
Exercise Files
ch01
phpinfo.php
PHP
22 B
ch02
02_02
pdo_connect.php
PHP
275 B
pdo_test.php
PHP
372 B
pdo_test_end.php
PHP
503 B
02_03
pdo_loop.php
PHP
662 B
pdo_loop_end.php
PHP
879 B
02_04
pdo_fetch.php
PHP
700 B
pdo_fetchAll.php
PHP
587 B
pdo_fetchAll_end.php
PHP
657 B
pdo_fetchColumn.php
PHP
754 B
pdo_fetchColumn_end.php
PHP
755 B
pdo_fetch_end.php
PHP
860 B
02_05
pdo_rowcount.php
PHP
923 B
02_06
pdo_checkrow.php
PHP
919 B
pdo_checkrow_end.php
PHP
1.04 KB
02_07
exec_delete.php
PHP
224 B
exec_delete_end.php
PHP
301 B
exec_insert.php
PHP
341 B
exec_insert_end.php
PHP
389 B
query_insert.php
PHP
285 B
query_insert_end.php
PHP
350 B
02_08
pdo_error.php
PHP
897 B
02_09
pdo_quote.php
PHP
1.35 KB
pdo_quote_end.php
PHP
1.4 KB
ch03
03_02
pdo_named.php
PHP
2.32 KB
pdo_named_end.php
PHP
2.74 KB
03_03
pdo_anonymous.php
PHP
2.75 KB
pdo_anonymous_end.php
PHP
2.71 KB
03_04
pdo_anonymous_execute.php
PHP
2.71 KB
pdo_anonymous_execute_end.php
PHP
2.62 KB
pdo_named_execute.php
PHP
2.74 KB
pdo_named_execute_end.php
PHP
2.71 KB
03_05
pdo_output.php
PHP
2.75 KB
pdo_output_end.php
PHP
2.94 KB
03_06
pdo_transaction.php
PHP
749 B
pdo_transaction_end.php
PHP
1.74 KB
transfer.txt
TXT
519 B
03_07
pdo_check_balance.php
PHP
2.27 KB
pdo_check_balance_end.php
PHP
2.3 KB
ch04
04_01
pdo_array.php
PHP
242 B
pdo_array_end.php
PHP
308 B
04_02
Car.php
PHP
1.34 KB
fetch_into.php
PHP
338 B
fetch_into_end.php
PHP
589 B
select.txt
TXT
212 B
04_03
Car.php
PHP
1.34 KB
fetch_class.php
PHP
530 B
fetch_class_end.php
PHP
663 B
04_04
pdo_resubmit.php
PHP
1.13 KB
pdo_reuse.php
PHP
1.04 KB
pdo_reuse_end.php
PHP
1.12 KB
pdo_scrollable.php
PHP
1.26 KB
ch05
05_01
mysqli_test.php
PHP
356 B
mysqli_test_end.php
PHP
505 B
05_03
mysqli_num_rows.php
PHP
767 B
mysqli_num_rows_end.php
PHP
986 B
05_04
mysqli_fetch_all.php
PHP
465 B
mysqli_fetch_array.php
PHP
507 B
mysqli_fetch_assoc.php
PHP
952 B
mysqli_fetch_assoc_end.php
PHP
1.06 KB
mysqli_fetch_row.php
PHP
1.04 KB
05_05
mysqli_reuse.php
PHP
1017 B
mysqli_reuse_end.php
PHP
1.03 KB
05_06
mysqli_delete.php
PHP
327 B
mysqli_insert.php
PHP
303 B
mysqli_insert_end.php
PHP
481 B
05_07
mysqli_error.php
PHP
909 B
mysqli_error_end.php
PHP
981 B
05_08
mysqli_escape.php
PHP
1.39 KB
mysqli_escape_end.php
PHP
1.44 KB
ch06
06_01
mysqli_statement.php
PHP
2.42 KB
mysqli_statement_end.php
PHP
2.71 KB
06_02
mysqli_statement.php
PHP
2.7 KB
mysqli_statement_end.php
PHP
2.9 KB
06_03
mysqli_statement.php
PHP
2.9 KB
mysqli_statement_end.php
PHP
2.89 KB
06_04
mysqli_transaction.php
PHP
822 B
mysqli_transaction_end.php
PHP
1.89 KB
transfer.txt
TXT
553 B
06_05
mysqli_check_balance.php
PHP
2.51 KB
mysqli_check_balance_end.php
PHP
2.61 KB
ch07
07_02
mysqli_real_query.php
PHP
1.27 KB
mysqli_real_query_end.php
PHP
1.3 KB
07_04
mysqli_multi.php
PHP
482 B
mysqli_multi_end.php
PHP
1.33 KB
query.txt
TXT
201 B
07_05
Car.php
PHP
1.34 KB
Car_end.php
PHP
1.34 KB
mysqli_class.php
PHP
492 B
mysqli_class_end.php
PHP
492 B
mysqli_class_stmt.php
PHP
774 B
oophp.sql
SQL
8.52 KB
sqlite
oophp.db
DB
10 KB
styles
styles.css
CSS
940 B

Description

Related Torrents

Location

Trackers

Tracker name
http://bt.t-ru.org/ann?magnet
http://bt1.t-ru.org/ann
http://bt2.t-ru.org/ann
http://bt4.t-ru.org/ann
udp://tracker.opentrackr.org:1337
udp://open.stealth.si:80/announce
udp://tracker.torrent.eu.org:451/announce
udp://exodus.desync.com:6969
udp://open.demonii.com:1337/announce
udp://tracker.coppersurfer.tk:6969
udp://p4p.arenabg.com:1337
udp://tracker.internetwarriors.net:1337
Torrent hash: