Skip to main content

Home/ Coders/ Group items tagged query

Rss Feed Group items tagged

Joel Bennett

Visual LINQ query builder (For LINQ to SQL) -- Mitsu's blog - 0 views

  •  
    The Visual LINQ query builder is a Visual Studio 2008 addin. It's a designer that helps you create Linq to Sql queries in your application.
yc c

Yahoo! Query Language - YDN - 0 views

  •  
    The Yahoo! Query Language is an expressive SQL-like language that lets you query, filter, and join data across Web services. With YQL, apps run faster with fewer lines of code and a smaller network footprint.
anonymous

http://www.unixodbc.org/doc/FreeTDS.html#Configuration - 0 views

  • <?php # connect to a DSN "MSSQLTest" with a user "cheech" and password "chong" $connect = odbc_connect("MSSQLTest", "cheech", "chong"); # query the users table for all fields $query = "SELECT * FROM users"; # perform the query $result = odbc_exec($connect, $query); # fetch the data from the database while(odbc_fetch_row($result)) { $field1 = odbc_result($result, 1); $field2 = odbc_result($result, 2); print("$field1 $field2\n"); } # close the connection odbc_close($connect); ?>
    • anonymous
       
      Die Erweiterung php5-odbc muss installiert sein, dann soll das, so die Aussage hier, automatisch funktionieren....
  •  
    Aus einer Virtuellen Maschine mit Sybase ODBC connecten...  hier steht die Grundanleitung.
Fabien Cadet

Doctrine - PHP Object Relational Mapper - 2 views

  •  
    Doctrine is an object relational mapper (ORM) for PHP 5.2.3+ that sits on top of a powerful database abstraction layer (DBAL). One of its key features is the option to write database queries in a proprietary object oriented SQL dialect called Doctrine Query Language (DQL), inspired by Hibernates HQL. This provides developers with a powerful alternative to SQL that maintains flexibility without requiring unnecessary code duplication.
bhawna sharma

SQL tutorial: Standard query language basics - 0 views

  •  
    Learn SQL (Standard query language) with easy and simple programming example. Read many articles and tutorial with free downloading notes facility. Increase your programming skill programmingstutorial.com
Joel Bennett

jLinq - LINQ for JSON - 4 views

  •  
    jLinq is a fully extensible Javascript library that claims to allow you to perform "LINQ style" queries on arrays of objects. Really it's a "fluent" notation like LINQ, and isn't LINQ at all, but it's still quite nice.
Fabien Cadet

Programming as if Performance Mattered, by James Hague [2004-04-04] - 3 views

  • I frequently see bare queries from programmers in discussion forums, especially from new programmers, who are worried about performance. These worries often stem from popular notions about what operations are "slow." Division. Square roots. Mispredicted branches. Cache unfriendly data structures.
  • Inevitably someone chimes in that making out-of-context assumptions, especially without profiling, is a bad idea. And they're right.
  • The golden rule of programming has always been that clarity and correctness matter much more than the utmost speed. Very few people will argue with that. And yet do we really believe it? If we did, then 99% of all programs would be written in something like Python. Or Erlang.
  • ...5 more annotations...
  • At the same time, such concerns and advice seem to remain constant despite rapid advances in hardware.
  • That tempting, enticing, puzzle-solving activity called "optimization," it hasn't gone away either.
  • Only now the process is on a different level. It isn't machine level twiddling and cycle counting, but it isn't simply mathematical analysis of algorithms either.
  • The big difference is that the code changes I made are substantially safer than running a program and having it silently hang the system. All array accesses are bounds-checked. There's no way to accidentally overwrite a data structure. There's no way to create a memory leak.
  • Really, this is what those cycle-counting programmers from 1985 dreamed of.
  •  
    « I frequently see bare queries from programmers in discussion forums, especially from new programmers, who are worried about performance. These worries often stem from popular notions about what operations are "slow." Division. Square roots. Mispredicted branches. Cache unfriendly data structures. »
alex gross

Univar - Session, cookie, query string & cache variables unified - 5 views

  •  
    s a web developer I have often had to work with the session, cookie, query string and cache to persist data locally. But it is a shame that there is no neat way of doing so. So I decided to write my own code to provide a simpler and unified model to work with and finally came up with this, a type safe and generic wrapper that supports complex data types
netgains

3D Floor Plan Rendering Service Company - 0 views

  •  
    3D visualization gives you realistic preview of your future project(s) whether you are going to plan your office, home or you need a specific 3D view for your near future project.If you have any queries regarding floor plan design services or you want send your projects need, visit us at http://www.netgains.org/cad-services-india/ or you can drop an email at biz@netgains.org.
  •  
    3D visualization gives you realistic preview of your future project(s) whether you are going to plan your office, home or you need a specific 3D view for your near future project.If you have any queries regarding floor plan design services or you want send your projects need, visit us at http://www.netgains.org/cad-services-india/ or you can drop an email at biz@netgains.org.
Mandeep Bajar

App logging API, Cloud Logging, Rest Logging API - 0 views

  •  
    Centralize logging for your App. This service allows different levels e.g. info, debug, fatal, error etc. to log a message and query the messages based on different parameters. You can fetch logs based on module, level, message, date range etc.
Joel Bennett

Log Parser Lizard GUI - Lizard Labs - 7 views

  •  
    Log Parser Lizard is a free GUI tool for managing queries and exporting results to Excel and charts.
Joel Bennett

SQL Fiddle - 2 views

  •  
    Try out and demo SQL Queries
Paris Polyzos

Refact your C# Code: NCQRS - 0 views

  •  
    NCQRS is a framework implementation of CQRS pattern to separate data modifications operations from data query operations!
Joel Bennett

M - The modelling language - 0 views

  •  
    M seems to be like LINQ for data structure generation: a simple template language with assemblers for different back-end technologies.
  •  
    The Microsoft code name "M" language is a declarative language for working with data and building domain models. "M" lets users write down how they want to structure and query their data using a textual syntax that is convenient to both author and reader.
Joel Bennett

WMI Code Creator v1.0 - Download - Microsoft.com - 0 views

  •  
    The WMI Code Creator tool allows you to generate VBScript, C#, and VB .NET code that uses WMI to complete a management task such as querying for management data, executing a method from a WMI class, or receiving event notifications using WMI.
Joel Bennett

/\/\o\/\/ PowerShelled: Large AD queries in Monad - 0 views

  •  
    For searching for huge result sets in AD you need to set a PageSize, or maybe do the paging by hand.

    Related:
    http://groups.google.com/group/microsoft.public.windows.server.scripting/tree/browse_frm/thread/32864b65a7a4fb70/14689e6f46898340
Joel Bennett

XPathmania - Visual Studio 2005 XPath AddIn - 0 views

  •  
    XPathmania is a visual studio extension to allow executing XPath queries on XML documents ... now you can test your XPath queries without loading up an external app

  •  
    Like this http://www.hdfilmsaati.net Film,dvd,download,free download,product... ppc,adword,adsense,amazon,clickbank,osell,bookmark,dofollow,edu,gov,ads,linkwell,traffic,scor,serp,goggle,bing,yahoo.ads,ads network,ads goggle,bing,quality links,link best,ptr,cpa,bpa
1 - 20 of 46 Next › Last »
Showing 20 items per page