Results 1-25 of about 253,365 results found for 'mysql' in 0.61 seconds
 1 2345678910...

mysession.php
         global $userinfo, $sessionid, $listitems, $REMOTE_ADDR;
         // look up this sessionid in the database
         mysql_connect(DB_HOSTNAME, DB_USERNAME, DB_PASSWORD);
        mysql_select_db(DB_NAME);
        $query = "SELECT users.*,s.listitems FROM users, sessions s WHERE s.sessionid='$sessionid' AND s.expires > now() AN...  
Language: PHP
LOC: 60
SourceForge : HandyNotes (project search) : .../h/handynotes/handynotes/server/mysession.php

MySQL.java
package dbterminal.databases;
/**
 * Information for accessing a MySQL database
 *
 * @author     mace
Language: Java
LOC: 9
SourceForge : jEdit (project search) : .../plugins/DBTerminal/dbterminal/databases/MySQL.java

mysqladmin.c
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
Language: C++
License: GPL
(C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
LOC: 982
SourceForge : MySQL (project search) : .../mysql/mysql/client/mysqladmin.c

__init__.py
DRIVERS=['mysql']
Language: Python
LOC: 1
Savannah GNU : GNU Enterprise (project search) : .../src/datasources/drivers/mysql/__init__.py

login.php
     {
          // make db connection, check username/password...
          mysql_connect(DB_HOSTNAME, DB_USERNAME, DB_PASSWORD);
          mysql_select_db(DB_NAME);
          $query = "SELECT * FROM " . DB_TABLE_USERS . " WHERE username='$username'";
Language: PHP
LOC: 95
SourceForge : HandyNotes (project search) : .../h/handynotes/handynotes/server/login.php

forgotpassword.php
          }
          // make db connection
          mysql_connect(DB_HOSTNAME, DB_USERNAME, DB_PASSWORD);
          mysql_select_db(DB_NAME);
          $newpass = random_password();
Language: PHP
LOC: 55
SourceForge : HandyNotes (project search) : .../h/handynotes/handynotes/server/forgotpassword.php

notebrowser.php
          $listitems = array();
          // read titles and noteids into array
          mysql_connect(DB_HOSTNAME, DB_USERNAME, DB_PASSWORD);
          mysql_select_db(DB_NAME);
          $query = "SELECT title, noteid, synchronized FROM " . DB_TABLE_NOTES . " WHERE userid='$userinfo->userid' and del...  
Language: PHP
LOC: 204
SourceForge : HandyNotes (project search) : .../h/handynotes/handynotes/server/notebrowser.php

mysqlshow.c
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
Language: C++
License: GPL
(C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
LOC: 517
SourceForge : MySQL (project search) : .../mysql/mysql/client/mysqlshow.c

account.php
          {
              // make db connection
              mysql_connect(DB_HOSTNAME, DB_USERNAME, DB_PASSWORD);
              mysql_select_db(DB_NAME);
              // if username or email checked, first check that they aren't already registered
Language: PHP
LOC: 162
SourceForge : HandyNotes (project search) : .../h/handynotes/handynotes/server/account.php

register.php
          {
              // make db connection
              mysql_connect(DB_HOSTNAME, DB_USERNAME, DB_PASSWORD);
              mysql_select_db(DB_NAME);
              // first check that the username and email aren't already registered
Language: PHP
LOC: 152
SourceForge : HandyNotes (project search) : .../h/handynotes/handynotes/server/register.php

mysqldump.c
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
Language: C++
License: GPL
(C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
LOC: 1081
SourceForge : MySQL (project search) : .../mysql/mysql/client/mysqldump.c

updatecheck.php
                require_once("defines.php");
                // make db connection, get latest version...
               mysql_connect(DB_HOSTNAME, DB_USERNAME, DB_PASSWORD);
               mysql_select_db(DB_NAME);
               $query = "SELECT downloadurl FROM clientversions WHERE platform='$platform' and currentver > '$version'";
Language: PHP
LOC: 71
SourceForge : HandyNotes (project search) : .../h/handynotes/handynotes/server/updatecheck.php

olacdb.php
    function OLACDB()
    {
        $dsn = trim(file_get_contents("/home/olac/.mysqlpass"));
        preg_match("/\s*mysql:\/\/(.*):(.*)@(.*)\/(.*)\s*/", $dsn, $matches);
        list($all, $userName, $password, $hostname, $dbname) = $matches;
Language: PHP
LOC: 43
SourceForge : Open Language Archives Community (project search) : .../olac/olac_suite/mu_tools/lib/olacdb.php

plugin_mysql.c
/* $Id: plugin_mysql.c,v 1.11 2006/02/25 13:36:33 geronet Exp $
 *
 * plugin for execute SQL queries into a MySQL DBSM.
Language: C++
License: GPL
(C) 2004 Javier Garcia ...
LOC: 148
SourceForge : lcd4linux (project search) : .../lcd4linux/lcd4linux/plugin_mysql.c

mysqlimport.c
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
Language: C++
License: GPL
(C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
LOC: 427
SourceForge : MySQL (project search) : .../mysql/mysql/client/mysqlimport.c

thread_test.c
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Library General Public
Language: C++
(C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
LOC: 240
SourceForge : MySQL (project search) : .../mysql/mysql/client/thread_test.c

mysql-test.c
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
Language: C++
License: GPL
(C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
LOC: 671
SourceForge : MySQL (project search) : .../mysql/mysql/client/mysql-test.c

mysql_db.c
/*
 * File: 
 *   db_mysql.c
 *
 * Description:
Language: C++
License: GPL
(C) 2000 by Mikael Hallendal
LOC: 199
SourceForge : Gnome Trader (project search) : .../gnometrader/gnome-trader/src/databases/mysql_db.c

builder.c
     3/2001     Created
*/
#include "mysqlrad.h"
#include "template.h"
#include <ctype.h>
Language: C++
LOC: 1156
SourceForge : OpenISP (project search) : .../openisp/mysqlrad/builder.c

db.c
#include "hashlist.h"
#endif
extern char *MysqlServer;
extern int *MysqlPort;
extern char *MysqlDatabase;
Language: C
License: GPL
(C) 2002 Lucas Nussbaum
LOC: 449
Savannah GNU : GNU Thales (project search) : .../thales/thales/thales/src/db.c

TestCreateSequenceMysql.java
 * Copyright 2001-2007 Geert Bevin (gbevin[remove] at uwyn dot com)
 * Licensed under the Apache License, Version 2.0 (the "License")
 * $Id: TestCreateSequenceMysql.java 3884 2007-08-22 08:52:24Z gbevin $
 */
package com.uwyn.rife.database.queries;
Language: Java
License: AL20
Copyright 2001-2007 Geert Bevin (gbevin[remove] at uwyn dot com)
LOC: 55
Rifers : RIFE (project search) : .../uwyn/rife/database/queries/TestCreateSequenceMysql.java

mysql.c
/*
  $Id: mysql.c,v 1.37 2007/07/16 11:00:35 ja Exp $
  S M S D
  A Linux/Unix tool for the mobile phones.
Language: C
License: GPL
(C) 1999 Pavel Jank ml., Hugh Blemings...
LOC: 316
Savannah NonGNU : gnokii (project search) : .../gnokii/gnokii/gnokii/smsd/mysql.c

main.c
/**
 * mysql:
 * @title: mysql
 * @subtitle: MySQL interface
Language: C
License: GPL
(C) 2001 Philippe Roy
LOC: 351
Savannah GNU : ToutDoux (project search) : .../toutdoux/toutdoux/core-plugins/database_mysql/main.c

connect.c
  dbc=(DBC FAR*) *phdbc;
  dbc->env= (ENV*) henv;
  dbc->mysql.net.vio = 0;               /* Marker if open */
  dbc->flag=0;
  dbc->stmt_options.max_rows= dbc->stmt_options.max_length= 0L;
Language: C++
LOC: 618
SourceForge : MySQL (project search) : .../mysql/myodbc/connect.c

mysqldump.c
/*     mysqldump.c  - Dump a tables contents and format to an ASCII file
**
**
Language: C++
LOC: 1058
SourceForge : MySQL (project search) : .../mysql/mysql-3.22/client/mysqldump.c

 1 2345678910...

Project Matches
 1 2345...

mysql

mysql-test

Apache__Mysql - Apache::Mysql

Qmail__Mysql - Qmail::Mysql

MySQL









About Koders | Resources | Downloads | Support | Black Duck | Submit Project | Terms of Service | DMCA | Privacy Policy | Site Map| Contact Us