Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8430543
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T05:37:10+00:00 2026-06-10T05:37:10+00:00

IQClient client = Intuit.QuickBase.Client.QuickBase.Login(username, pwd); IQApplication app = client.Connect(applicationId, token); Intuit.QuickBase.Client.IQTable rtable = app.GetTable(sTableID);`

  • 0
IQClient client = Intuit.QuickBase.Client.QuickBase.Login("username", "pwd");
IQApplication app = client.Connect(applicationId, token);
Intuit.QuickBase.Client.IQTable rtable = app.GetTable(sTableID);`

I am creating a web application in asp.net. I need to get data from quickbase to populate my GridView. I am using Quickbase API.The above code retrieves the table, but records value is always 0. Am I doing anything wrong or Is there any other way to do this?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T05:37:12+00:00Added an answer on June 10, 2026 at 5:37 am

    To get all of the records in the table you can follow the example at the following site:
    https://code.intuit.com/sf/wiki/do/viewPage/projects.quickbase_c_sdk/wiki/HomePage .

    using System;
    using Intuit.QuickBase.Client;
    
    namespace MyProgram.QB.Interaction
    {
        class MyApplication
        {
            static void Main(string[] args)
            {
                var client = QuickBase.Client.QuickBase.Login("your_QB_username", "your_QB_password");
                var application = client.Connect("your_app_dbid", "your_app_token");
                var table = application.GetTable("your_table_dbid");
                table.Query();
    
                foreach(var record in table.Records)
                {
                   Console.WriteLine(record["your_column_heading"]);
                }
                client.Logout();
            }
        }
    }
    

    To do specific query using the already built C# API, you can do the following:

    var querystring1 = new QueryStrings(FieldID,ComparisonOperator.GTE,value,LogicalOperator.AND);
    var querystring2 = new QueryStrings(FieldID, ComparisonOperator.XEX, value, LogicalOperator.NONE);
    

    then

        var query = new Query();
    query.Add(querystring1);
    query.Add(querystring2);
    table.Query(query, new[] { 1,2,3,4}, new[] { 1,2});
    

    The second parameter is the field IDs of the columns you want and the Third parameter is the field ID’s to sort the records by.

    In your case I would just do the loop and add all the records to a collection. Then you could probably use LINQ or just the column headings to loop through all your records.

    This is the way I did it to get specific data:

    foreach(var record in table.Records)
                {
                    var row = new String[8];
                    row[0] = record["Column Name"];
                    row[1] = record["Column Name"];
                    row[2] = record["Column Name"];
                    row[3] = record["Column Name"];
                    row[4] = record["Column Name"];
                    row[5] = record["Column Name"];
                    row[6] = record["Column Name"];
                    row[7] = record["Column Name"];
                    list.Add(row);//This is a List<string[]> collection. But use what you want
                }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

public boolean connect(IConnection conn, IScope scope, Object[] params) { IClient client = conn.getClient(); log.info(
Just... doing some practices. Structure: A Client WPF App and a Server WPF App,
i need to connect 2 instances of the same wcf application to each other
HTML <form action='insert.php' method='POST'> <p><b>Client:</b><input type='text' name='idclient'/> <p><b>Total:</b><br /><input type='text' name='total'/> <p><input type='submit' value='Save'
I autogenerated a SOAP webservice client from a WSDL (I use JAVA 1.6), and
I have a typical N-M relationship structure like this: two independent tables: Table Client:
Why this generic interface implementation doesn't complile? //The type Client<T> must implement the inherited
There are two tables: Clients ___________ idClient int login varchar Messages ___________ idMessage int
I have a java webservice, that must return a response if the login is
public IList GetClientsByListofID(IList ids) where T : IClient { IList clients = new List();

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.