Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.479.931 Times

Delphi Sql Parse freeware
Filter: All | Freeware | Demo
 

Delphi Sql Parse

< 1 2 3 4 5 > 
Added: September 12, 2010 | Visits: 918

Parse::RandGen::Regexp Parse::RandGen::Regexp is a Perl module for regular expression Condition element. Regexp is a Condition element that matches the given compiled regular expression. For picking random data, the regular expression is parsed into its component Subrules, Literals, CharClasses, etc.... Therefore,... Platforms: *nix

License: Freeware Size: 25.6 KB Download (90): Parse::RandGen::Regexp Download

Added: August 08, 2010 | Visits: 724

Dimedis::Sql Dimedis::Sql is a SQL/DBI Interface for banking applications. SYNOPSIS use Dimedis::Sql; my $sqlh = new Dimedis::Sql ( ... ); $sqlh->install ( ... ); my $seq_id = $sqlh->insert ( ... ); my $modified = $sqlh->update ( ... ); my $blob_sref = $sqlh->blob_read ( ... ); $sqlh->use_db (... Platforms: *nix

License: Freeware Size: 58.37 KB Download (93): Dimedis::Sql Download

Added: March 06, 2010 | Visits: 1.267

SQL::Shell SQL::Shell is a command interpreter for DBI shells. SYNOPSIS use SQL::Shell; #Initialise and configure my $sqlsh = new SQL::Shell(%settings); $sqlsh->set($setting, $new_value); $value = $sqlsh->get($setting); #Interpret commands $sqlsh->execute_command($command);... Platforms: *nix

License: Freeware Size: 30.72 KB Download (158): SQL::Shell Download

Added: January 20, 2010 | Visits: 889

MRTG::Parse MRTG::Parse is a Perl extension for parsing and utilizing the logfiles generated by the famous MRTG Tool. SYNOPSIS use strict; use MRTG::Parse; my $mrtg_logfile = "/var/www/htdocs/mrtg/eth0.log"; my $period = "day"; my $desired_unit = "GB"; my ($traffic_incoming, $traffic_outgoing,... Platforms: *nix

License: Freeware Size: 5.12 KB Download (95): MRTG::Parse Download

Added: June 26, 2010 | Visits: 1.195

SQL::Generator SQL::Generator is a Perl module to generate SQL-statements with oo-perl. SYNOPSIS use SQL::Generator; With this module you can easily (and very flexible) generate/construct sql-statements. As a rookie, you are used to write a lot of sprintf`s every time i needed a statement (i.e.for DBI).... Platforms: *nix

License: Freeware Size: 13.31 KB Download (124): SQL::Generator Download

Added: October 03, 2010 | Visits: 995

DL/SQL DL/SQL is declarative, turing-complete programming language based on top of SQL database. The main idea is to store both program and data in one SQL table and make all the computations in it. The current version of interpreter written in PHP contains quasi-lazy evaluation and simple caching.... Platforms: *nix

License: Freeware Size: 21.5 KB Download (98): DL/SQL Download

Added: September 14, 2010 | Visits: 1.006

Template::Alloy::Parse Template::Alloy::Parse is a Perl module with common parsing role for creating AST from templates. The Template::Alloy::Parse role is reponsible for storing the majority of directive parsing code, as well as for delegating to the TT, HTE, Tmpl, and Velocity roles for finding variables and... Platforms: *nix

License: Freeware Size: 143.36 KB Download (93): Template::Alloy::Parse Download

Added: September 25, 2010 | Visits: 856

Parse::Template Parse::Template was initially created to serve as a code generator for the Parse::Lex class. The class is now available as a separate module.. Platforms: *nix

License: Freeware Size: 22.53 KB Download (88): Parse::Template Download

Added: November 23, 2010 | Visits: 967

SQL::Amazon::Request::Help SQL::Amazon::Request::Help is an Interface to retrieve Help content. SYNOPSIS $dbh = DBI->connect(dbi:Amazon:, $amznid, undef, { amzn_mode => books, amzn_locale => us, amzn_max_pages => 3 }) or die "Cannot connect: " . $DBI::errstr; # # search for some Perl DBI books # $sth =... Platforms: *nix

License: Freeware Size: 58.37 KB Download (88): SQL::Amazon::Request::Help Download

Released: December 25, 2012  |  Added: December 25, 2012 | Visits: 1.882

Module::MakefilePL::Parse Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", <$fh>) ); $info = $parser->required; The purpose of this module is to determine the... Platforms: *nix

License: Freeware Size: 8.19 KB Download (100): Module::MakefilePL::Parse Download

Added: July 26, 2010 | Visits: 924

sql++ sql++ is an easily configurable, feature-rich, portable command-line SQL tool. It can be used with many different databases and in place of other commandline tools such as MySQLs mysql-client, Microsoft SQL, PostgreSQLs psql, and Oracles sqlplus. sql++ project has features such as multiple... Platforms: *nix

License: Freeware Size: 36.86 KB Download (173): sql++ Download

Added: November 16, 2010 | Visits: 1.290

Fischerscope-Parse Fischerscope-parse project is a php script for parsing data out of WinHCU, software accompanying the Fischerscope H100 nanoindenter.. Platforms: *nix

License: Freeware Size: 38.91 KB Download (102): Fischerscope-Parse Download

Added: July 05, 2010 | Visits: 1.346

SQL Uniform SQL Uniform is a database client with a graphical user interface (GUI). The project is a helper application to relational databases of various types regarding query, maintenance, data comparison, export (convert), and import. It supports any kind of database and database servers to which there... Platforms: *nix

License: Freeware Size: 4.8 MB Download (116): SQL Uniform Download

Added: June 01, 2010 | Visits: 937

Parse::RecDescent::FAQ Parse::RecDescent::FAQ is the official, authorized FAQ for Parse::RecDescent. OVERVIEW-TYPE QUESTIONS Is Parse::RecDescent LL(1)? LL(N)? LR(1)? LR(N)? Answer by Yves Orton: I have a data structure which is a hash of entries where an entry is a list/array of sets I have also a grammar... Platforms: *nix

License: Freeware Size: 77.82 KB Download (99): Parse::RecDescent::FAQ Download

Added: March 24, 2010 | Visits: 1.157

SQL::Schema SQL::Schema is a Perl module to convert a data dictionary into SQL statements. SYNOPSIS use DBI; my $dbh = DBI->connect(...); use SQL::Schema; my $schema = SQL::Schema->new($dbh); my $sql = $schema->string; print $sql; print "$schema"; WARNING This is alpha software. It... Platforms: *nix

License: Freeware Size: 33.79 KB Download (98): SQL::Schema Download

Added: January 04, 2010 | Visits: 833

Kismet Parse Kismet Parse project can be used after kismet has sniffed 802.11 traffic and produced .network files. Kismet Parse is a Perl script that will parse these files to map the MAC addresses of the discovered wireless access point and clients to useful information. The information includes the... Platforms: *nix

License: Freeware Size: 7.17 KB Download (155): Kismet Parse Download

Released: June 12, 2014  |  Added: June 16, 2014 | Visits: 1.701

dbForge SQL Complete Express dbForge SQL Complete Express is a free add-in for SQL Server Management Studio and Visual Studio. It offers powerful autocompletion and formatting of T-SQL code that replaces native Microsoft T-SQL Intellisense. Besides the extension of the List Members, Complete Word and Parameter Info... Platforms: Windows

License: Freeware Size: 10.2 MB Download (362): dbForge SQL Complete Express Download

Released: March 21, 2011  |  Added: March 24, 2011 | Visits: 1.200

DTM ODBC SQL runner DTM SQL runner is a free command line tool for SQL statements execution. The runner allows the user to specify ODBC data source name and file with SQL statement to be executed. This handy tool for developers, database administrators and advanced users is suitable for batch and scheduled job... Platforms: Windows

License: Freeware Size: 68.96 KB Download (491): DTM ODBC SQL runner Download

Released: June 01, 2011  |  Added: June 09, 2011 | Visits: 1.240

SQL Decryptor Decrypts SQL stored procedures, functions, triggers, and views on SQL Server. If you have encrypted an object definition in your database(s) by specifying WITH ENCRYPTION option, and by some reason you cannot restore it's original T-SQL script, the SQL Decryptor will easily do it for you... Platforms: Windows

License: Freeware Size: 1.31 MB Download (103): SQL Decryptor Download

Released: October 24, 2011  |  Added: February 07, 2012 | Visits: 1.154

dbForge SQL Decryptor Devart is a software development company with more than 11 years of experience on the software market and over 20 thousands devoted users. We are glad to present you a new decryption tool dbForge SQL Decryptor which is reliable and easy to use. dbForge SQL Decryptor is a database... Platforms: Windows

License: Freeware Size: 1.36 MB Download (116): dbForge SQL Decryptor Download

< 1 2 3 4 5 >