Giter Club home page Giter Club logo

Comments (8)

koskimas avatar koskimas commented on May 11, 2024 5

@xiaoyu-tamu I just added the first version of the plugin interface and a plugin called CamelCasePlugin

from kysely.

koskimas avatar koskimas commented on May 11, 2024 2

Yep. I'll add a plugin interface and implement a camelCase conversion as a plugin.

from kysely.

koskimas avatar koskimas commented on May 11, 2024 1

Yes.

from kysely.

michael-land avatar michael-land commented on May 11, 2024 1

that would be nice!

from kysely.

michael-land avatar michael-land commented on May 11, 2024 1

Hi, @koskimas

I just tried it and it works as expected

from kysely.

koskimas avatar koskimas commented on May 11, 2024

However, the conversion will be done for the SQL as well as the return value, as they are defined using the same interfaces. For example, if you have a table person_table with columns id and first_name, the conversion would work like this:

interface Person {
  id: string
  firstName: string
}

interface Database {
  personTable: Person
}

const db = new Kysely<Database>(...)

await db.selectFrom('personTable').select('id').where('firstName', '=', 'Sami')

So EVERYTHING needs to be converted to camelCase by the plugin, or else the type system won't work. Kysely won't allow the return value column names to be different from the ones used in the queries.

from kysely.

michael-land avatar michael-land commented on May 11, 2024

what's the generated sql for this query?

await db.selectFrom('personTable').select('id').where('firstName', '=', 'Sami')

will the above query generate as this sql?

select id from person_table where first_name = 'Sami' 

from kysely.

michael-land avatar michael-land commented on May 11, 2024

will try it later today.

from kysely.

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.