GithubHelp home page GithubHelp logo

colnames about luadbi HOT 5 CLOSED

GoogleCodeExporter avatar GoogleCodeExporter commented on June 10, 2024
colnames

from luadbi.

Comments (5)

GoogleCodeExporter avatar GoogleCodeExporter commented on June 10, 2024
Hi golgote, you can retrieve column names from a select by passing true as a
parameter to the 'fetch' or 'rows' method of a statement handle. By default 
'fetch'
or 'rows' returns a numerically index table (AKA an array), but by passing true 
to
these methods the result is return as a table indexed by column names.

See the examples on http://code.google.com/p/luadbi/wiki/DBDDriverStatement for 
more
details.

Original comment by [email protected] on 5 Apr 2009 at 5:14

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 10, 2024
Yes, I noticed that, but columns in the table can be in any order (since that's 
the way tables work in Lua). To 
build specific functions like "getAssoc" (and some others for my ORM), I need 
to know in which order the 
columns were fetched, that's why a function to get the column names is useful. 
Thanks for your reply :)

Original comment by [email protected] on 6 Apr 2009 at 10:26

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 10, 2024
I've had a look at the source code, and the functionality should be relatively 
easy
to add. The implementation will look something like:

local sth = dbh:prepare('SELECT id,num,timestamp FROM sometable')
sth:execute()
-- fields will be equal to {'id','num','timestamp'}
local fields = sth:columns()

I'll look at adding this in the next week.

Original comment by [email protected] on 9 Apr 2009 at 12:48

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 10, 2024
I've committed changes to implement the 'columns' method for statement handles 
into
SVN. I'll be uploading a new release source package shortly. 

Original comment by [email protected] on 17 Apr 2009 at 11:49

  • Changed state: Fixed

from luadbi.

GoogleCodeExporter avatar GoogleCodeExporter commented on June 10, 2024
Thank you Neil :)

Original comment by [email protected] on 19 Apr 2009 at 8:45

from luadbi.

Related Issues (20)

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.