1 2345678910...
|
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
|
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
|
/* 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
|
Language: Python LOC: 1 Savannah GNU : GNU Enterprise (project search) : .../src/datasources/drivers/mysql/__init__.py
|
{
// 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
|
}
// 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
|
$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
|
/* 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
|
{
// 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
|
{
// 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
|
/* 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
|
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
|
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
|
/* $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
|
/* 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
|
/* 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
|
/* 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
|
/*
* 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
|
3/2001 Created
*/
#include "mysqlrad.h"
#include "template.h"
#include <ctype.h>
Language: C++ LOC: 1156 SourceForge : OpenISP (project search) : .../openisp/mysqlrad/builder.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
|
* 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
|
/*
$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
|
/**
* 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
|
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 - 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...
|