Browsing projects by Tag(s)

Select a tag to browse associated projects and drill deeper into the tag cloud.

Showing page 1 of 3

This is an inspector plugin for the Fiddler HTTP Debugger which shows datasets in a .Net DataGridView control.

0
 
  0 reviews  |  1 user  |  0 current contributors
 
 

Casper DatasetsA generic, in-memory dataset caching library ContentsAbstract Features Performance Design Overview Usage / Code Samples Feedback / Contributing AbstractThe Casper Datasets library is a implementation of a generic in-memory dataset. The library allows a programmer to define a ... [More] two-dimensional (or more broadly, an n-dimensional) dataset in a highly configurable manner, with variable columns and data types. Within a typical application stack, a data access / business object tier would require developers to create several context-specific pieces of code: Objects that represent logical rows of data (typically as a java bean in java) Data access classes to map relational rows to their objectified counterparts, and retrieve objects by attributes inherent to the object Specialized sorters / comparators to allow manipulation and sorting of these rows Cache abstractions to hold this information in memory While some ORM frameworks address some of these requirements, we haven't found any useful dataset abstractions that would function outside of the non-relational context, as well as provide generic sorting / searching that most projects would eventually require. In addition, this exercise would have to be repeated for each object abstraction within the application. The Casper Datasets library aims to unify these requirements into a single library that is both simple and intuitive. Because casper datasets is an open-source project, its features can be extended and enriched by its user community. FeaturesCasper Datasets exposes a generic caching and searching framework that allows a user to define any mapping via a meta data object (essentially, a mapping of column names to types, akin to java.sql.ResultSetMetaData) and manipulate / search / sort data rows. The following major features are supported: In-memory caching of data rows Searching and filtering through the dataset based on attributes on any given column. This is accomplished through the use of filter chains, which support the following types of matches: (1) Equality, (2) Regular expressions, (3) Numeric Ranges, (4) Date Ranges. Scroll through query results, akin to java.sql.ResultSet Indexing columns for ultra-fast lookup Basic aggregation: sums, weighted sums, average, weighted averages Relational database adapters to load relational rows effortlessly PerformanceIn a test of approximately 370,000 rows of data, a non-indexed search (i.e. full table scan) and sort yielding approximately 16,000 rows took about 360 ms on a high-end desktop machine. An equality-based search on an indexed field yielded performance several orders better. Please see the "Performance" section on the WIKI for more details. Design OverviewPlease see the WIKI section for the latest design documents on Casper Datasets. Usage/Code SamplesPlease see the WIKI section for usage and code samples for the Casper Datasets library. FeedbackWe would love to hear from you. Let us know if you would like to contribute to the project. In addition, also let us know if you have utilized the library in any of your own projects. [Less]

0
 
  0 reviews  |  1 user  |  85,544 lines of code  |  1 current contributor  |  Analyzed 8 months ago
 
 

This it the NSG's butterfly database for private use. It is a different flavor of the public database found at http://nymphalidae.utu.fi/db.php author: Carlos Peña mycalesis@gmail.com

0
 
  0 reviews  |  1 user  |  38,743 lines of code  |  1 current contributor  |  Analyzed 4 months ago
 
 

GWT JDS - library for working with cashable, scrollable clientside rowsets and DB-aware ui-widgets Features in version 0.0.3: Support DataSet events(onChange, onNotify, onFilterHandler) TDataPacket - serializable class for exchange DataRows with server-side Suppor WebRowSet xml format for ... [More] datapacket(and delta datapacket) see Demo TDBGrid(editable),TDBXGrid(editable, based on Scand LLC(c) dhtmlxGrid v.1.2 Standard Edition, built 61218), TDBEdit, TDBText, TDBMemo, TDBLookupComboBox - DB-aware widgets Support master-detail client-side datasets Filtering DataSet(based on IFilterHandler interface) Sorting data(now just by by single field) Internal framework, for communicating with DBMS [Less]

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed about 1 year ago
 
 

ddevil is a Java library that providers interfaces that define data structures for storing collections of records, the individual records, and the attributes that make up those records. There are standard implementations of these interfaces available in the library for immediate use. The data ... [More] structres provided in this library are meant to be middle tier data transport and access objects. What I mean by this is the time period after you've loaded the data from your persistent store, while you are performing your application business logic on it or moving and transforming it for some view to use. They are meant to be lightweight but powerful. There is no direct ORM support but one could imagine how they could be used in conjunction with a Hibernate like technology. You could think of this library as java.util collections on HGH. The library provides convenient data operations such as sorting, filtering, searching etc. The real beauty of this thing is that everything is written against the defined interfaces, so that you can implement them as you wish to provide whatever optimizations meet your needs. You generally will try to write your code that will be using the data objects to depend on the interface instead of the implementation, so that it works with any implementation. Check out windowkit, a Swing toolkit which is written against these data structures. The project was originally named dataset but google complained about that so now its called ddevil(a good song). [Less]

0
 
  0 reviews  |  0 users  |  3,406 lines of code  |  0 current contributors  |  Analyzed 6 days ago
 
 

Java的DataTable DataSet对象实现 用Java中的ArrayList实现C#中的DataTable DataSet DataRow DataColumn对象

0
 
  0 reviews  |  0 users  |  0 current contributors  |  Analyzed 5 days ago
 
 

Based on a view or single table in PostgreSQL database (or any other database), these set of scripts can provide a GUI interface for generating multiple customization with grouping, filtering, decimal places, sorting for a combination of columns. No of columns and their order of display can be controlled

0
 
  0 reviews  |  0 users  |  15,653 lines of code  |  0 current contributors  |  Analyzed 4 days ago
 
 

Siafu simulates individual agents and their context, from home to city-wide scenarios. As a developer, you use the API to write your simulation for the purposes of data-set generation, test or visualization, optionally hooking it to your own application.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

The SharePoint List Reader is a simple windows application that reads data from a list in SharePoint and allows the user to view the data as well as export the data to an XML file.

0
 
  0 reviews  |  0 users  |  0 current contributors
 
 

This utility makes it easy to create serialized XML DataSet's based on SQL queries run against a SQL Server. Run this program to execute a SQL statement Copy the resulting XML into a file in your .NET unit test project Embed the XML file you created In your test code, load the embedded XML ... [More] , deserialize it back into a DataSet Screencast available here! You now have a way to mock a DataSet that would normally be loaded from a database. How to deserialize the DataTable: /// /// Reads a from an embedded XML /// document that contains the serialized version. /// /// /// The assembly that contains the embedded file containing /// the XML. /// /// /// The qualified name of the resource to load. /// /// /// The reconstituted . /// public static DataTable ReadEmbeddedDataTable(Assembly sourceAssembly, string resourceName) { using (Stream readStream = sourceAssembly.GetManifestResourceStream(resourceName)) { XmlSerializer xs = new XmlSerializer(typeof(DataSet)); DataSet ds = (DataSet)xs.Deserialize(readStream); return ds.Tables[0]; } }Related Blog Posts: Initial code available Screencast - Unit testing with real DataSets [Less]

0
 
  0 reviews  |  0 users  |  27,670 lines of code  |  0 current contributors  |  Analyzed 8 months ago
 
 
 
 

Creative Commons License Copyright © 2013 Black Duck Software, Inc. and its contributors, Some Rights Reserved. Unless otherwise marked, this work is licensed under a Creative Commons Attribution 3.0 Unported License . Ohloh ® and the Ohloh logo are trademarks of Black Duck Software, Inc. in the United States and/or other jurisdictions. All other trademarks are the property of their respective holders.