sql-parser Questions

3

I need to add a user-defined function to Calcite that takes an integer as a parameter and returns an integer. public class SquareFunction { public int eval(int a) { return a*a; } } and the ...
Shatzer asked 24/5, 2017 at 2:13

1

My c# installer project came up with a load of warnings when I rebuilt it on a new machine. The warnings were of the ilk that they were looking for version 11.0.0.0 of a dll where only version 10.0...
Danielledaniels asked 24/4, 2015 at 9:27

4

I'm looking for a way to parse / tokenize SQL statement within a Node.js application, in order to: Tokenize all the "basics" SQL keywords defined in the ISO/IEC 9075 standard or here. Valid...
Sick asked 6/8, 2014 at 9:16

3

I am using JSQLPARSER for the first time. I have some SQL files which come dynamically, i need to read table and column names from that SQL. After lot of googling I tried with JSQLPARSER. I am tryi...
Shammer asked 27/5, 2013 at 7:31

1

Solved

Hello stackoverflowers, I've got a problem parsing T-SQL statements using TSql120Parser from Microsoft.SqlServer.TransactSql.ScriptDom. My goal is to simply parse a T-SQL select statement and get ...
Primary asked 10/8, 2017 at 15:36

2

Solved

All of my tenanted tables in sql server have a field customer_id. I'm attempting to write an interceptor for NPoco that will extract all table and alias names from the query. match it to an excepti...
Carob asked 4/8, 2017 at 18:6

1

Solved

I have an SQL statement that uses a few tables built via another set of statements which in turn are each built by more sets of statements etc. to about 8 degrees fanning out to about 25 tables (it...
Cray asked 10/8, 2016 at 9:31

1

Solved

We need a SQL parsing or decomposing library for Python. We would like to be able to input a SQL text query and then get the query parts back as a result. It doesn't need to be fancy, or anyt...
Manservant asked 24/1, 2013 at 21:5

1

Solved

I have a large and complicated sql view that I am attempting to debug. There is a record not showing in the view and I need to determine which clause or join is causing the record to now show up. A...
Ermine asked 19/3, 2012 at 18:15
1

© 2022 - 2024 — McMap. All rights reserved.