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

  • SEARCH
  • Home
  • 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 8438231
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T07:39:11+00:00 2026-06-10T07:39:11+00:00

I get this error when I try to Serialize my custom dataset. What am

  • 0

I get this error when I try to Serialize my custom dataset.
What am I doing wrong, surly it should be simple?

Thanks

error
A circular reference was detected while serializing an object of type ‘System.Globalization.CultureInfo’.

 Dim serializer As New JavaScriptSerializer()
            Dim arrayJson As String = serializer.Serialize(makeMYDataSET())

    Private Function makeMYDataSET() As DataSet


        ' Two DataTables.
        Dim table1 As DataTable = New DataTable("patients")
        table1.Columns.Add("name")
        'table1.Columns.Add("id")
        table1.Rows.Add("sam")
        table1.Rows.Add("mark")
        table1.Rows.Add("hjhkhkh")

        Dim table2 As DataTable = New DataTable("medications")
        'table2.Columns.Add("id")
        table2.Columns.Add("medication")
        table2.Rows.Add("atenolol")
        table2.Rows.Add("amoxicillin")

        ' Create a DataSet. Put both tables in it.
        Dim set1 As DataSet = New DataSet("office")
        set1.Tables.Add(table1)
        set1.Tables.Add(table2)


        Return set1

    End Function
  • 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-10T07:39:13+00:00Added an answer on June 10, 2026 at 7:39 am

    It’s not possible to use the JavaScriptSerializer on a plain DataSet.


    One way is to convert your DataSet to XML, or better, convert it to a Dictionary first.

    You can use this method (example from CodeProject):

    Function DataSetToJSON(ds As DataSet) As String
        Dim dict = New Dictionary(Of String, Object)
    
        For Each dt As DataTable In ds.Tables
            Dim arr(dt.Rows.Count) As Object
    
            For i = 0 To dt.Rows.Count - 1
                arr(i) = dt.Rows(i).ItemArray
            Next
    
            dict.Add(dt.TableName, arr)
        Next
    
        Dim json = New JavaScriptSerializer
        Return json.Serialize(dict)
    End Function
    

    Example

     DataSetToJSON(makeMYDataSET())
    

    Result

    {“patients”:[[“sam”],[“mark”],[“hjhkhkh”],null],”medications”:[[“atenolol”],[“amoxicillin”],null]}

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get this error when i try to upload an image: OSError at /upload/
I get this error when I try to use time_ago_in_words : Comparison of String
Working with H2 I get this error when I try to write a row
I get this RSpec error when I try to embed one document in another.
I get this error FB is not defined when i try to run this
when i try to view the databases in mysql i get this error: ERROR
When I try to go to this url: http://localhost:3000/lessons/18/pages , I get this error:
Whenever I try installing anything using gem, I get this error - murtaza@murtaza-dev:~$ sudo
whenever I try to call my ejb from a client, I get this error
I get this wired error only when I try to access the web page

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.