Code Monkey home page Code Monkey logo

xlsx's Issues

Streaming API

Is it possible to write in a streaming mode? It would be ideal to be able to write rows in a streaming mode. Then you could also be able to configure the in memory buffer threshold.

doc := xlsx.NewFile(xlsx.StreamMode, xlsx.RowBufferSize(100))

defer doc.Close()

pageSize := 100
total := db.GetItemCount()
pages := total / pageSize

if  total % pageSize > 0 {
    pages++
}

sheet := doc.AddSheet("items")
defer sheet.Close()

sheet.AddRow()
    .SetCellValue(xlsx.ColumnNumber("A"),  1, "Name")
    .SetCellValue(xlsx.ColumnNumber("B"),  1, "Quantity")
    .SetCellValue(xlsx.ColumnNumber("C"),  1, "Price")

for page = 0; page < pages; i++ {
    items := db.GetItems(page * pageSize, pageSize)
    for item, _ := range items {
        sheet.AddRow()
            .SetCellValue(xlsx.ColumnNumber("A"),  1, item.Name)
            .SetCellValue(xlsx.ColumnNumber("B"),  1, item.Quantity)
            .SetCellValue(xlsx.ColumnNumber("C"),  1, item.Price)
    }
}

doc.SaveAs("items.xlsx")

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.