Disable All Advertising
Image
EAN-139780765315557   EAN-13 barcode 9780765315557
Product NameThe Life Of The Virgin: Maximus The Confessor
LanguageEnglish
CategoryBook / Magazine / Publication
Short DescriptionHardcover
Amazon.comA Buy on Amazon ~ 0300175043
Price New23.93 US Dollars    (curriencies)
Price Used24.07 US Dollars    (curriencies)
Width5.75 inches    (convert)
Height8.75 inches    (convert)
Length1 inches    (convert)
Weight15.84 ounces    (convert)
Page Count232
BindingHardcover
Published05/29/2012
Long DescriptionLong overlooked by scholars, this seventh-century Life of the Virgin , attributed to Maximus the Confessor, is the earliest complete Marian biography. Originally written in Greek and now surviving only in Old Georgian, it is now translated for the first time into English. It is a work that holds profound significance for understanding the history of late ancient and medieval Christianity, providing a rich source for understanding the history of Christian piety. This Life is especially remarkable for its representation of Mary's prominent involvement in her son's ministry and her leadership of the early Christian community. In particular, it reveals highly developed devotion to Mary's compassionate suffering at the Crucifixion, anticipating by several centuries an influential medieval style of devotion known as “affective piety” whose origins generally have been confined to the Western High Middle Ages.
Similar Items9780310434887: The Orthodox Study Bible, Hardcover: Ancient Christianity Speaks to Today's World
9780300164329: Mother Of God: A History Of The Virgin Mary
9780300105001: Mother Of God: A History Of The Virgin Mary
9780292705951: Mary, Mother And Warrior: The Virgin In Spain And The Americas (Hall, Linda)
9780268042011: Orthodox Readings Of Aquinas (Changing Paradigms In Historical And Systematic Theology)
9780227171141: The Orthodox Study Bible, Hardcover: Ancient Christianity Speaks to Today's World
9780199751297: Christ Meets Me Everywhere: Augustine's Early Figurative Exegesis (Oxford Studies In Historical Theology)
9780199210749: The Ancient Traditions Of The Virgin Mary's Dormition And Assumption (Oxford Early Christian Studies)
9780195331233: The Old Testament In Eastern Orthodox Tradition
9780171220100: The Orthodox Study Bible, Hardcover: Ancient Christianity Speaks to Today's World
View 42 more similar items
Created09-11-2012 12:06:05pm
Modified05-01-2020 1:12:15am
MD5d987e3f2b6cff4955f8e04ec231de252
SHA25680b5eff6a30ebbb94a8a280971fefa2c42bb6296582dca067d5dd124459a962e
Search Googleby EAN or by Title
Query Time0.0271699

An article of interest

Making use of the tools we offer

Importing our data into your MySQL database

Here we will demonstrate the most basic example of importing the CSV data files that we produce on this site into your MySQL database.

For information about various databases you can use and how to import CSV files into them, please view the overview article "Importing CSV data into your database".

For this example, we are going to import the product data CSV file out of the sample_ean_data.zip but this same process will work on the full data download file. We will also be executing the commands in the MySQL Workbench but you can also use the command line tool with the same commands if you like.

First, start by creating a blank table. Use the table layout described in the read_me file for the most up-to-date table layout. It is suggested that you not use any indexing at this point. You can add indexes later. It is most likely that you will have your own tables where you want to store your data so importing the CSV files can be done into temporary tables and then later copied over to your tables. Leaving off the indexes and constraints on these import tables reduces the risk of import errors. Here is an example:

create table ean_product
(
    EAN13             varchar(13),
    UPCA              varchar(12),
    UPCE              varchar(8),
    SKU               varchar(200),
    PriceNew          numeric(15,2),
    PriceUsed         numeric(15,2),
    PriceDate         date,
    company           varchar(13),
    product           varchar(100),
    description       varchar(100),
    category          int,
    url               varchar(500),
    created           datetime,
    modified          datetime
);

Next we perform the import using the LOAD DATA INFILE command. The path to the file depends on where you saved the data and which operating system you are on. For Windows users you might find your file on the C: drive and Linux users may find your date in your home (~) folder. This example shows a Linux import. Only the path would be different between the operating systems.

LOAD DATA LOCAL
    INFILE '~/sample_ean_data/sample_ean_product.csv' 
    INTO TABLE ean_product
    FIELDS TERMINATED BY ',' ENCLOSED BY '"' ESCAPED BY '\\'
    LINES TERMINATED BY '\r\n'
    IGNORE 1 LINES;

Finally, lets look at the data that we just imported.

SELECT * FROM EAN_PRODUCT;

You may have seen some warnings after the import command. If you are concerned about these warnings, examine the data. It could be that some data has grown beyond the size specified in the read_me file. If you are worried, make the fields larger and try the process again after deleting all of the data out of the table.