Browsing projects by Tag(s)

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

Showing page 1 of 4

SubSonic is a toolset that helps a website build itself. It brings some of the fun and elegance of Ruby on Rails to ASP.NET.

4.66667
   
  0 reviews  |  34 users  |  66,637 lines of code  |  0 current contributors  |  Analyzed 8 days ago
 
 

pChart is a PHP class oriented framework designed to create aliased charts. Data can be retrieved from SQL queries, CSV files, or manually provided.

4.5
   
  0 reviews  |  14 users  |  0 current contributors
 
 

CDO Model Repository ===================== CDO is both a development-time model repository and a run-time persistence framework. Being highly optimized it supports object graphs of arbitrary size. CDO offers transactions with save points, explicit locking, change notification, queries ... [More] , temporality, branching, merging, offline and fail-over modes, ... The storage back-end is pluggable and migrations between direct JDBC, Hibernate, Objectivity/DB, MongoDB or DB4O are seamless for CDO applications. [Less]

4.72727
   
  8 reviews  |  9 users  |  3,870,331 lines of code  |  10 current contributors  |  Analyzed 8 days ago
 
 

The Eclipse Data Tools Platform provides extensible frameworks and exemplary tools, enabling a diverse set of plug-in offerings specific to particular data-centric technologies and supported by the DTP ecosystem.

0
 
  0 reviews  |  6 users  |  1,926,398 lines of code  |  1 current contributor  |  Analyzed 5 months ago
 
 

benerator is a framework for creating realistic and valid high-volume test data, used for testing (unit/integration/load) and showcase setup. Metadata constraints are imported from systems and/or configuration files. Data can be imported from and exported to files and systems, anonymized or ... [More] generated from scratch. Domain packages provide reusable generators for creating domain-specific data as names and addresses internationalizable in language and region. It is strongly customizable with plugins and configuration options. [Less]

0
 
  0 reviews  |  4 users  |  102,558 lines of code  |  1 current contributor  |  Analyzed 7 days ago
 
 

Jailer is a tool for database subsetting and sampling, schema browsing, and rendering. It exports consistent, referentially intact row-sets from relational databases. It removes obsolete data without violating integrity. It is DBMS agnostic (by using JDBC), platform independent, and generates DbUnit ... [More] datasets, hierarchically structured XML, and topologically sorted SQL-DML. Features * Exports consistent and referentially intact row-sets from your productive database and imports the data into your development and test environment. * Improves database performance by removing and archiving obsolete data without violating integrity. * Generates hierarchically structured XML, topologically sorted SQL-DML and DbUnit datasets. [Less]

5.0
 
  0 reviews  |  2 users  |  48,596 lines of code  |  1 current contributor  |  Analyzed 5 days ago
 
 

Simple to use library that handles a lot of things for you.

3.0
   
  0 reviews  |  1 user  |  38,060 lines of code  |  0 current contributors  |  Analyzed 3 days ago
 
 

A simple framework for building sql statements in an object oriented way, executing sql statements with database independency and providing simple object persistence.

0
 
  0 reviews  |  1 user  |  13,604 lines of code  |  4 current contributors  |  Analyzed 9 months ago
 
 

GDALib is a layer on top of ADO.NET which hides the complexity of a lot of database operations. It simplifies many common tasks by allowing the programmer to execute SQL queries against a database, without having to worry about connections, exception handling and logging.

0
 
  0 reviews  |  1 user  |  847 lines of code  |  0 current contributors  |  Analyzed about 8 hours ago
 
 

UrSQL: Data Storage for JavaUrSQL is a persistent storage API for Java Desktop Applications. Unlike other SQL variants, UrSQL doesn't require any kind of server or driver. It's usage is as simple as storing data should be. Loading a database file is as easy as UrSQLController ... [More] controller = new UrSQLController("database.udb");Writing Data to the DatabaseUrSQL stores entries as key value pairs. Groups of entries are called entities, each with a unique numerical ID. To create a new entity, which will store key-value entries: UrSQLEntity entity = controller.createEntity();Now, we can create a new entry: UrSQLEntry entry = new UrSQLEntry("key", "value");This entry now has the key/value pair "key: value". However, we have not specified what entity it belongs to yet. To do so: entity.addEntry(entry);Now, we can write our entry to the database: controller.writeEntry(entry);We could also write the entire entity to the database: controller.writeEntity(entity);Reading Data From the DatabaseUrSQL can search its database for particular entities and entries based on queries containing key/value pairs. For example, the following finds the entity where "key1" has a value of "value1" and "key2" has a value of "value2": UrSQLEntity entity = controller.getEntity("key1: value1; key2: value2");Notice that the colon (:) is used to separate keys and values, and the semi-colon (;) is used to separate key/value pairs. The spaces after the colon and semicolon are not necessary, but make the code a bit easier to read. Now, you can access individual entries from the entity with their key names: UrSQLEntry entry = entity.getEntry("key1");The entry object contains the entry's key and value, which can be accessed with: String key = entry.getKey(); String value = entry.getValue();Or, if you don't want to access an entire entity, you can also access a single entry using a query. This query uses known values in the same entity to search out the correct entry within the correct entity. For example, if we know that an entry with the key "key1" is contained in the same entity as an entry with the key "key2" and value "value2", then we can use the following: UrSQLEntry entry = controller.getEntry("key1", "key2: value2");Or, the second argument can be the actual UrSQLEntity that houses the desired entry. The entry can then be accessed and changed accordingly. Remember no data is actually written to the database until writeEntry or writeEntity is called by the controller object. [Less]

0
 
  0 reviews  |  0 users  |  1,278 lines of code  |  0 current contributors  |  Analyzed 5 days 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.