Showing 9647 open source projects for "sql"

View related business solutions
  • Forever Free Full-Stack Observability | Grafana Cloud Icon
    Forever Free Full-Stack Observability | Grafana Cloud

    Our generous forever free tier includes the full platform, including the AI Assistant, for 3 users with 10k metrics, 50GB logs, and 50GB traces.

    Built on open standards like Prometheus and OpenTelemetry, Grafana Cloud includes Kubernetes Monitoring, Application Observability, Incident Response, plus the AI-powered Grafana Assistant. Get started with our generous free tier today.
    Create free account
  • Gemini 3 and 200+ AI Models on One Platform Icon
    Gemini 3 and 200+ AI Models on One Platform

    Access Google's best plus Claude, Llama, and Gemma. Fine-tune and deploy from one console.

    Build, govern, and optimize agents and models with Gemini Enterprise Agent Platform.
    Start Free
  • 1

    Anastasia Publishing Platform

    Anastasia Publishing Platform (aka APP) is a publishing platform

    Anastasia Publishing Platform (aka APP) is a publishing platform and cms built with Laravel. We aim to create the best publishing experience with our main focus on the average user.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 2
    dbSQWare

    dbSQWare

    dbSQWare is no longer an open source

    dbSQWare is no longer an open source
    Downloads: 0 This Week
    Last Update:
    See Project
  • 3
    H2OGame

    H2OGame

    Free Professional Game Platform PHP Script

    Create your own online Game platform with rating system, categories, full HTML5 design, full admin panel, pages management, advertising management, and much more. ---------- H2OGame was a commercial script (which was sold for £27 per license). NOW, I decided to distribute it as a FREE (and still Open Source) software and under an Open Source license! Enjoy it and visit the official site at: http://idzup.com/php-game-script/ And the HiZup's Lab -> http://idzup.com
    Downloads: 2 This Week
    Last Update:
    See Project
  • 4
    Pachyderm
    Pachyderm is a web-based rich-media interactive (flash) presentation authoring and publishing system that meets most accessibility requirements. It works off of an extensible template system. Released under Creative Commons General Public License.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Our Free Plans just got better! | Auth0 Icon
    Our Free Plans just got better! | Auth0

    With up to 25k MAUs and unlimited Okta connections, our Free Plan lets you focus on what you do best—building great apps.

    You asked, we delivered! Auth0 is excited to expand our Free and Paid plans to include more options so you can focus on building, deploying, and scaling applications without having to worry about your security. Auth0 now, thank yourself later.
    Try free now
  • 5
    Downloads: 0 This Week
    Last Update:
    See Project
  • 6
    GESPA

    GESPA

    Accurately predicts disease association of single nucleotide mutations

    ...A host of annotations are provided: orthologous and paralogous multiple sequence alignments, UCSC annotations, reports detailing conservation of a nsSNP in alignments, and links to external nsSNP and gene information such as relevant publications. GESPA is connected to a constantly updating SQL server allowing for fast data retrieval. NOTE: REQUIRES Java 1.7.0+. Port 1433 cannot be blocked by firewall, network, or antivirus program. Please cite: http://tinyurl.com/oj7p84a
    Downloads: 0 This Week
    Last Update:
    See Project
  • 7

    nathandelane

    Projects I am working on, which may turn into larger projects.

    This is a repository of projects that I am working on which may turn into larger projects. When they do I will break them out into their own sourceforge projects. Until then anybody can take a peek and check out my experiements. Think of it as Nathandelane labs.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 8

    TSAR

    Tools Slightly Above the Runtime

    Tools Slightly Above the Runtime QueryTool for IBM i based on TSAR: http://www.ibm.com/developerworks/ibmi/library/i-extended-dynamic-sql/index.html
    Downloads: 0 This Week
    Last Update:
    See Project
  • 9
    dotCMS

    dotCMS

    dotCMS helps enterprises create, manage and deliver content anywhere.

    dotCMS is a visual, headless CMS built for compliance-led enterprises that need to manage and scale digital content across brands, regions, and channels. From streamlining governance to enabling visual editing at scale, dotCMS powers global organizations like Telus and BNP Paribas to consolidate platforms, reduce overhead, and launch faster. Whether you're managing 10 or 1,000+ sites, dotCMS brings flexibility, security, and efficiency to enterprise content operations.
    Downloads: 0 This Week
    Last Update:
    See Project
  • Fully Managed MySQL, PostgreSQL, and SQL Server Icon
    Fully Managed MySQL, PostgreSQL, and SQL Server

    Automatic backups, patching, replication, and failover. Focus on your app, not your database.

    Cloud SQL handles your database ops end to end, so you can focus on your app.
    Try Free
  • 10
    H2Id SQL Helper Tool

    H2Id SQL Helper Tool

    SQL Server Query Bulder, Database Browser & Command Execution Tool

    SQL Server Query Bulder Tool. Browse main Database Objects. Create and execute SQL commands. A portable mini Console for SQL Server. Only a couple of Mbytes and a lot of power in a self-contained application. Just copy and run the .exe file every where you need. A helpfull tool running in seconds on any Windows System with .Net Framework 4.0.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 11
    Downloads: 0 This Week
    Last Update:
    See Project
  • 12
    privacyidea

    privacyidea

    two factor authentication management system

    privacyIDEA is a management and authentication system for two factor authentication. You can use OTP tokens, OTP cards, SMS, Smartphone Apps to incorparte the second factor. It can even manage SSH keys and supports Offline OTP. The latest version can manage and enroll user certificates. Its modular design makes it easily enhancable. It runs on Linux. Applications and workflows can be connected to privacyIDEA hence enabling two factor authentication in your system logon, web...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13

    sqlcomments

    SQL comments for Java

    SQLComments is a Java library using native SQL statements without loosing type safety. Database-first approach is real.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 14
    Havalite CMS

    Havalite CMS

    Havalite, a lightweight, open source CMS Blog based on php and SQLite

    Havalite, a lightweight, open source CMS Blog based on php and SQLite db. It's licensed under the GNU General Public License.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 15
    Downloads: 0 This Week
    Last Update:
    See Project
  • 16

    Nodejs MySQL Query Builder

    A small lib that builds query using mysql and nodejs

    ...Sample Usage: ```js var query_builder = require('query_builder'); var dbconn_default = { host : 'host', user : 'user', pass : 'password', dbase : 'database_schema' }; var qb = new query_builder( dbconn_default ); var select_details = { table : 'table_name', fields : [ 'field1', 'field2', ... ], conditions : { field1 : 'value1', field2 : 'value2' } }; qb.select( select_details, function( err, rows ){ if( err ) console.log( err ); else console.log( rows ); }); ``` By this, we can generate a query something like this: ```sql SELECT `field1`, `field2` FROM `table_name` WHERE `field1` = 'value1' AND `field2` = 'value2' ``` For more information, visit the github project. https://github.com/sarahseguenza/nodejs-mysql-query-builder
    Downloads: 0 This Week
    Last Update:
    See Project
  • 17
    SQLViewer

    SQLViewer

    A viewer for databases.

    This application views tables in databases. Now it is supporting such databases as Oracle, MySQL.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 18
    iUPDATE

    iUPDATE

    Keep your server up to date with iUPDATE!

    ...iUPDATE also provides SQL Server database replication.
    Downloads: 0 This Week
    Last Update:
    See Project
  • 19

    GenDBM Tool

    A generic modeling tool for both relational and geographical databases

    ...It also uses the Generic Database Metamodel (GEDBM) which gathers concepts of the most used modeling languages and notations (ER, Crow's Foot, Min-Max, UML, OMT-G, etc.). The tool is able to generate ANSI SQL and SQL/SFS code from any solution adherents to its meta-model. Actually, it is provided graphical environments for: ER (relational) and OMT-G, using OMT-G Design (geographical). The Tool is a set of plug-ins for Eclipse. We recommend Eclipse Modeling Tools (Juno or Kepler versions). To install the tool, just unzip the downloaded file and copy all the files to your eclipse's plugins folder. ...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 20

    Intrusion Detection and Defense System

    Intrusion Detection and Defense System for windows

    Its a light weight Intrusion detection and defense system works with windows firewall to protect any windows operating system from attacks that are intended to hack the server or provide any operational damage. By keeping eye on network activities and event viewer logs, ServerCloak capture and log any failed/denied inbound calls from IPv4 as well as IPv6. Once the calls reaches its limit, the service immediately tells windows firewall to block the attacking IP by adding a denial inbound...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 21
    It is a Simple Chat made in Visual Basic that allows you to chat with other users using the same Program. It works by the simple use of Lobbies and Chat Rooms. Simply enter the IP and your name and you are ready to go..... More updates coming soon!
    Downloads: 0 This Week
    Last Update:
    See Project
  • 22
    netmonsql

    netmonsql

    Network performance monitoring and logging script for Cisco devices.

    NetMon_Cisco_to_SQL.py is a basic network performance monitoring and logging script for Cisco devices. It gathers parameters (CPU Utilization, Used Processor Memory, Used IO Memory, UP Ethernet Interfaces density, in percent velues) from Cisco routers by parsing command outputs and exports them to a MySQL database. NetMon_Query.py is a query script for the MySQL database in the form of an interactive menu for generating statistics. Tools used for coding and testing: Python 2.7.3,...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 23

    SsrsRdlRestyler

    Restyles SSRS (SQL Server Reporting Services) RDL (report) files

    Downloads: 0 This Week
    Last Update:
    See Project
  • 24
    AMPdoc

    AMPdoc

    Apache, MySQL, PHP package for library, archive, museum automation

    AMPdoc mblazquez edition is a portable package with Apache, MySQL, PHP, and Perl which includes a selection of documentary software applications for libraries, archives, museums, publishers, conferences and documentation centers. AMPdoc mblazquez edition enables to perform workflow management duties, publication of contents, web positioning, among others. Usually, difficulty in installing and configuring of necessary applications has limited the access to technologies to information...
    Downloads: 13 This Week
    Last Update:
    See Project
  • 25
    hydro36

    hydro36

    Schätzverfahren für Bemessungsabflüsse

    Das Einheitsganglinien-Verfahren nach Lutz/Rieck ist ein Schätzverfahren für Bemessungsabflüsse. Neben hochkomplexen Verfahren zur Berechnung von Abflüssen aus oberirdischen Einzugsgebieten, bietet hydro36win die Möglichkeit mit einfachen Eingangswerten gute Schätzwerte zu ermitteln. Da ich noch an der Software arbeite, ist es sinnvoll, sich vollkommen unverbindlich auf der Seite HYDRO36.de mit Namen und Email zu registrieren um auf neue Versionen hingewiesen zu werden. Keine Werbung und...
    Downloads: 0 This Week
    Last Update:
    See Project
MongoDB Logo MongoDB