PHP Class 'MySQL to XML - XML to MySQL' released
Grok Headline matches for PHP Class 'MySQL to XML - XML to MySQL' released
PHP Class 'Run MySQL' released
PHP Class 'Run MySQL' released
10/29/2003 12:10 AMRun MySQL is a class that is meant for feeding the MySQL server with
large batches of SQL statements.
The batch statements could be taken from a string, a local file or a
file uploaded via HTML form.
The result of the last query is returned.
PHP Class 'MySQL SP' released
PHP Class 'MySQL SP' released
04/22/2004 06:54 PMThis class is meant to provide an emulation of stored procedures for
MySQL.
It uses template files stored on the database client side that contain
multiple SQL statements with special marks that identify placeholders
that are replaced by procedure arguments when they are executed.
The result of the execution of procedure is an array containing either
the handles of the result set of the SELECT statements or the number
of affected rows of other statements.
PHP Class 'MySQL Parser' released
PHP Class 'MySQL Parser' released
03/08/2004 11:06 PMThis class is meant to parse boolean expressions like (item1 AND item2
AND NOT (item3 OR item4)) and converts them into MySQL full text
search conditions like (+item1 +item2 -(item3 item4)).
PHP Class 'Mysql DBObj' released
PHP Class 'Mysql DBObj' released
06/05/2004 06:18 PMThis class is meant to simplify the composition and execution of MySQL
database SELECT queries.
It has functions that can establish the database connection and others
to specify the query conditions, columns to sort the results, result
row limits and execute the queries.
PHP Class 'MySQL wrapper' released
PHP Class 'MySQL wrapper' released
05/15/2004 06:44 PMThis is a simple class that encapsulates the functionality of MySQL
database access commands.
It establishes database connections, executes queries storing the
result set handle in a class variable and provides other functions to
traverse the result set an retrieve the data returned by the database
server.
PHP Class 'MySQL Connection' released
PHP Class 'MySQL Connection' released
09/27/2002 07:39 PMAllow developers connect with MySQL Server with Log generate. Log
class is required. See my classes
PHP Class 'MySQL Abstract' released
PHP Class 'MySQL Abstract' released
05/06/2004 06:44 PMThis is a wrapper class to simplify MySQL queries.
It features
- Connect to a MySQL server reusing connections previously opened to
the same server
- Insert or update rows using arrays of fields and values
- Delete rows that satisfy a given condition
- Retrieve the next unused field id
- Emulate sub-selects with NOT IN clause
- Select single field values providing a default value in case no row
is returned
PHP Class 'MySQL Collection' released
PHP Class 'MySQL Collection' released
10/22/2002 07:55 PMFunctions of Log
+---- log() // Create a log file
+---- addLog() // Append one line in the log file
+---- show() // Show de log content in HTML format
Properties of Connection
+---- application // Name of application
+---- host // IP or Name of MySQL Server
+---- login // Login MySql
+---- senha // Password MySQL
+---- db // Database
+---- admMail // E-mail of Admin
+---- log // Instance o log object
+---- conID // ID of MySQL Connection
Functions of Connection
+---- connection() // Inicialize
+---- connect() // Conect with MySQL Server return de
conID
+---- close() // Close Connection
Function of RecordSet
+---- checkSql() // Protect sql from DROP, CREATE and other
+---- select() // Select Query
+---- setRow() // Fetch array
+---- getLastID() // Return the last inserted ID
+---- getFieldName() // Return a name o field
+---- fieldsCount () // Number of Fields
+---- recordCount() // Number of records
+---- exec() // Execute a Inser, Update, Delete and others
SQL
+---- erase() // Delete one record by ID
+---- erases() // Delete various records by Array (Such as
checkbox)
+---- comboBox()
+---- comboBoxBin()
+---- insert() // Generate a Insert SQL sentence with POST
data
+---- update() // Generate a Update SQL sentence with POST
data
+---- getForm() // Get POST data
PHP Class 'MySQL Log' released
PHP Class 'MySQL Log' released
09/28/2002 07:48 PMAdd and show the log provide by other classes such as MySQL Connection
and MySQL Recordset
PHP Class 'MySQL RecordSetdo' released
PHP Class 'MySQL RecordSetdo' released
09/27/2002 07:39 PMProvide automatic erase by ID, erase by Array, check SQL between other
functions. The MySQL Connection is required
PHP Class 'MySQL Operations' released
PHP Class 'MySQL Operations' released
04/09/2004 04:05 PMThis is a simple class meant to connect and query a MySQL database.
It has functions to connect to a given MySQL database, execute
queries, retrieve results and the number or rows.
PHP Class 'MySQL Optimizer' released
PHP Class 'MySQL Optimizer' released
04/09/2004 04:05 PMThis class is meant to analyze, optimize or repair tables of a MySQL
database.
The class is capable of connecting to a given MySQL database, extract
the list of names of tables, and perform one of the three operations
in all tables. The results are outputted in an HTML table.
PHP Class 'MySQL stored procedures'
released
PHP Class 'MySQL stored procedures'
released
05/07/2004 07:06 PMThis class emulates stored procedures for MySQL databases used (MySQL)
client side files to define the SQL code of the procedures.
It executes simple queries defined within a named block, known as
"stored procedure".
The query syntax within a stored procedure is compliant with standard
SELECT, INSERT, DELETE and UPDATE MySQL queries, but it does not
accept sub-select queries like "INSERT ... SELECT".
Every stored procedure can have parameters that must be initialized
before the execution.
Here is the of provided functionality:
- Loading and saving stored procedures on disk files.
- Procedure execution
- Dumping in HTML format the code of loaded procedures
- All the methods not implemented have a proprietary license
PHP Class 'Mysql record set' released
PHP Class 'Mysql record set' released
10/29/2003 12:10 AMThis class gives you the possibility to navigate through MySQL record
sets and manipulate the stored information.
It just takes a SELECT statement and the class takes care of the other
operations that you may want to perform, like for instance: updating
records, deleting records, adding a new record, filter records
according to a criteria.
The class is meant to be used by those who just want easy access to
their database table records and do not want to deal SQL too much.
PHP Class 'MySQL Backup Pro' released
PHP Class 'MySQL Backup Pro' released
04/09/2004 04:05 PMThis package is meant to provide backup and restore services of MySQL
databases.
It provides a friendly tab based user interface that lets the users
create backups of given MySQL databases to files, listing previously
generated backups, restore a given backup and deleting backup files.
Currently this package requires PHP with the bzip extension enabled to
generate compressed backup files. It also uses the gonxtabs class to
create an user-friendly navigation menu.
PHP Class 'MySQL Query Generator'
released
PHP Class 'MySQL Query Generator'
released
04/30/2004 07:04 PMThis class is meant to compose MySQL database queries from conditions
defined dynamically calling the class functions.
It can compose MySQL database queries add, delete, reset conditions
and key values used to determine the affected rows.
PHP Class 'PHP or Java Class Code
Generator' released
PHP Class 'PHP or Java Class Code
Generator' released
03/06/2004 02:00 AMThis package is meant is automate the generation of classes to access
databases in Java beans style.
It uses the Fast Template engine to process template files that define
the skeleton of functions and variables of classes that store and
retrieve data object property values from a given database table,
getter and setter functions to access those properties and a function
to delete a data object row from the respective database table.
The package comes with templates to generate classes either in PHP or
Java. The PHP template defines code to access data objects in a MySQL
database. The Java template defines code to access data objects in any
database supported by JDBC.
PHP Class 'Convert Class To HTML Table'
released
PHP Class 'Convert Class To HTML Table'
released
02/10/2004 02:46 AMThis class is meant to display the structure of any class as an HTML
table.
The class being displayed can have variables that contain objects of
other classes or arrays and treats those variables each accordingly.
PHP Class 'Bs_StopWatch.class.php'
released
PHP Class 'Bs_StopWatch.class.php'
released
11/07/2002 07:59 PMYou can take times during a code run and at the end get a time table
as HTML or text table. The output will contain total and as delta
between each take in microseconds.
Free Code; This Class is part of the BlueShoes PHP Application
Framework, see blueshoes.org.
PHP Class 'Bs_CsvUtil.class.php'
released
PHP Class 'Bs_CsvUtil.class.php'
released
11/08/2002 08:17 PMFeatures:
supports any separator char sequence, default is semicolon ";".
supports separator characters in the values. eg you use a ; as
separator, your line may look like
blah;hello world;"foo";"foo;bar";"this is a ""string""";got it?;foo
as you can see, the values can be in "quotes". if your text uses
quotes itself as in the "string"
example, they are escaped in ms-style with 2 quotes. and by using
quotes we can even have your
separator inside the text (example "foo;bar").
line breaks. a csv line may spread over multiple lines using crlf in a
field value.
see the checkMultiline param and the _checkMultiline() method.
PHP Class 'calend.class.php' released
PHP Class 'calend.class.php' released
01/03/2003 07:52 PMThis class generates HTML calendars in the portuguese language.
In portuguese:
Esta classe gera um calendário em português em HTML.
PHP Class 'My Db' released
PHP Class 'My Db' released
06/09/2004 06:55 PMThis package is a SQL database wrapper supporting MySQL, Interbase and
MS SQL server.
It can establish database server connections, execute SQL queries,
retrieve query results into arrays and display query results as HTML
tables.
PHP Class 'My DB' released
PHP Class 'My DB' released
02/15/2004 07:40 PMThis class is a simple wrapper around MySQL database acess functions.
It provides wrapper functions around most of the PHP MySQL extension
function like database, connection, queries execution and result data
access, error message retrieval, database creation and locking of
tables.
PHP Class 'bstCountdown' released
PHP Class 'bstCountdown' released
10/15/2002 07:15 AMDisplay a list of 'days until' a set of events, includes a simple
example and a more complex one as child classes. Could easily be
extended to multi-user and notifications via email by adding a user
table and owner columns. Written to MySQL but db access is simple
enough to adapt.
PHP Class 'rhc' released
PHP Class 'rhc' released
10/15/2002 07:15 AMRHC is actually a few files which give the user the ability to do
custom error handling, debugging, and handle database abstraction
(currently only through Informix).
PHP Class 'URLHelper' released
PHP Class 'URLHelper' released
10/15/2002 07:15 AMThis class give you access to the http header information and provides
some help for retrieving and parsing urls.
FUNCTIONS:
function isURLAvailable($url)
function isValidURLFormat($url, $strict=false)
function addHTTPtoURL($url)
function getHTTPStatusCode($url)
function getRealURL ($url, $simple = true, $method = "HEAD")
function getHTTPHeader($url)
function getMD5FromURL($url, $estFilesize=500000)
function _openHTTPConnection($url, $method = "HEAD")
PHP Class 'color' released
PHP Class 'color' released
10/15/2002 07:15 AMThese class converts colortypes.
It supports the following colors formats and types:
- CMYK
- RGB
- Pantone
- HEX Codes for HTML
PHP Class 'BarcodeI25' released
PHP Class 'BarcodeI25' released
10/15/2002 07:15 AMHTML Barcode generator for Interleaved 2 of 5 Codes.
Código de barras fator Intercalado 2 de 5, padrão FEBRABAN (BRASIL).
PHP Class 'WebWidgets' released
PHP Class 'WebWidgets' released
10/11/2002 07:54 PMWebWidgets is a library of classes to produce any HTML(XML) documents,
create, validate forms.
It allow to create any "complicated" forms easy.
Any tag is an object. Your can build tags tree by inserting one tag
into another and get its content as HTML.
Based upon "Composite" OOP patern.
Library is very flexible, so your may derive your own classes.
Documentation in html format can be downloaded from here:
http://scancode.ru/dev/WebWidgets/webwidgets.08.doc.tar.gz (it is not
fine:( )
PHP Class 'COutLook' released
PHP Class 'COutLook' released
10/01/2002 10:18 AMThis class reads messages from the Inbox and Oubox of an Outlook local
profile through CDO (Colaboration Data Objects).
The class only works under Windows.
PHP Class 'DBgrid' released
PHP Class 'DBgrid' released
10/10/2002 09:55 AMShow the result of a mysql query on HTML table.
Easy to use. 1 line code. $grid = new DBgrid($result);
PHP Class 'phplibTemplateExtention'
released
PHP Class 'phplibTemplateExtention'
released
10/08/2002 07:09 AMphplib has template.inc - a template class for php to utilize
templates. This is an extension to the class Template needing less
code by:
Automatic detection and declaration of blocks
Automatic "blanking" of unused blocks
Blocks automatically declaired in proper nested order.
All calls to set up template/file/paths/names in the class call.
- LGPL / GPL - phplibs license anyway - its their template class - I
just extended it to make my life a little easier.
PHP Class 'DCalendar' released
PHP Class 'DCalendar' released
10/08/2002 07:09 AMShow a calendar with options view year, month and today link. Dynamic
events with diferent color
PHP Class 'db_view' released
PHP Class 'db_view' released
10/08/2002 07:08 AM"db_view" provides:
* An abstraction class and helpers for multi-tabled Mysql data.
(init, select, select_row, count, insert, update, delete)
* Atomic multi-table updates, inserts, deletes
eg: update items, month set items.price=month.price where
items.id=month.id;
Also primitive non-atomic (=insecure) rollbacks.
* Functions, Triggers and Defaults per action
(select, update, insert, delete; before or after)
* Rich logging and debugging facilities.
PHP Class 'ms_dbx_reader' released
PHP Class 'ms_dbx_reader' released
10/01/2002 07:38 PMMicrosoft DBX file reader /such as Outlook Express Mailbox database
files/
Author: Zeos
PHP Class 'MkDir' released
PHP Class 'MkDir' released
05/16/2004 07:21 PMThis is a simple class for creating directories in the local file
system or in a remote server file system using a FTP connection.
PHP Class 'BaseDB' released
PHP Class 'BaseDB' released
10/11/2002 07:54 AMExcellent oo base class for mysql interaction. worth looking at. you
must use this as a base class and extend your classes which map to a
table name.
your tables must have a 'id', 'created' and 'modified' field to work
properly and the class takes care of the rest. check it out.
PHP Class 'htmldoc' released
PHP Class 'htmldoc' released
10/11/2002 07:54 AMObject Library for Creation of PDF Documents out of HTML Pages by
using htmldoc as conversion facility.
PHP Class 'CISVC' released
PHP Class 'CISVC' released
01/16/2004 11:05 AMThis class is meant to encapsulate the APIs around the COM object for
Microsoft Indexing service (CISVC).
The class can perform the search query, output the search results
split in multiple pages and also a navigation let the user go back and
forth between the presented search results pages.
Grok Description matches for PHP Class 'MySQL to XML - XML to MySQL' released
GrokA matches for PHP Class 'MySQL to XML - XML to MySQL' released
EnGarde Secure Linux Advisory: MySQL,
MySQL-client, MySQL-shared, mod_php, php
EnGarde Secure Linux Advisory: MySQL,
MySQL-client, MySQL-shared, mod_php, php
12/16/2002 04:17 PM"Stefan Esser from the PHP.net project discovered two vulnerabilities
in MySQL which range from crashing the server to executing arbitrary
code as the user under which the MySQL daemon runs (mysql)..."
SearchEnterpriseLinux: MySQL CEO: Open
Source MySQL Will Rise, Legal Foes Will
Fall
SearchEnterpriseLinux: MySQL CEO: Open
Source MySQL Will Rise, Legal Foes Will
Fall
02/01/2005 09:06 PM"None of the legal attacks on open source or Linux have been
successful. None of that stuff has gone anywhere. That's the biggest
story..."
Forum Stories: VB script to connect to
MySQL
Forum Stories: VB script to connect to
MySQL
09/07/2004 03:34 AMMySQL: MySQL Administrator Announced
MySQL: MySQL Administrator Announced
01/22/2004 10:26 AMIn a startling new note from the
MySQL
development team, information about their newest application has
been posted on their site.
MySQL: MySQL Administrator Now Availible
MySQL: MySQL Administrator Now Availible
02/12/2004 10:10 AMIn a new note passed along to me from
MarkL this morning,
there's some new information about the admin tool that the
MySQL folks have created.
Navicat (mysql client) 5.1 Released!
Navicat (mysql client) 5.1 Released!
05/19/2004 05:41 PMNavicat (mysql client) 5.1 allows editing text in Blob field and
supports MySQL 4.1.x and MySQL 5.0 Alpha.
An evaluation version of Navicat for Mac OS X 10.1 or later is
avaliable for download at
http://www.navicat.com/sh
areware.php3Navicat (MySQL Client Tool) 4.4.2
Navicat (MySQL Client Tool) 4.4.2
12/12/2003 04:18 PMThe most popular MySQL Frontend Client for MySQL database
administration.
Navicat 5.1 MySQL client released
Navicat 5.1 MySQL client released
05/20/2004 07:13 AMPremiumSoft has released Navicat 5.1, the latest release of the
company's MySQL client for Mac OS X...
MySQL AB starts certification program
MySQL AB starts certification program
03/13/2003 11:41 AMMySQL begins certification program
MySQL begins certification program
03/13/2003 10:21 AM Navicat (Database administration - MySQL
Client) 5.3.1
Navicat (Database administration - MySQL
Client) 5.3.1
01/06/2005 12:25 AMA powerful and easy-to-use database management and development tool
for Mac OS X user.
Two new versions ofPremiumSoft Navicat
(MySQL Client) released
Two new versions ofPremiumSoft Navicat
(MySQL Client) released
10/29/2003 12:10 AMYou can convert your CSV, Text or XML files to MySQL databases,
eliminating time-consuming data entry and the errors that accompany
it. ...
MySQL: MySQL 4.0.20 Released
MySQL: MySQL 4.0.20 Released
05/20/2004 06:59 PM"MySQL 4.0.20, a new version of the popular Open Source/Free Software
Database
Management System, has been released..."
MySQL: MySQL 5.0.0 Has Been Released
MySQL: MySQL 5.0.0 Has Been Released
12/26/2003 07:47 PM"MySQL 5.0.0, a new version of the popular Open Source/Free Software
Database Management System, has been released..."
MySQL: PHP and MySQL Get a Little Closer
MySQL: PHP and MySQL Get a Little Closer
02/18/2003 04:17 PMMySQL GOES GPL
MySQL GOES GPL
06/12/2002 06:22 AM"We have always considered ourselves committed members of the Open
Source and Free Software communities," said Monty Widenius, project
leader on MySQL. Moving to the GNU General Public License (GPL) is a
way to show this". It is the latest beta (version 3.23.19) and all new
releases that is being GPLed.
MySQL 4.0.16 now available!
MySQL 4.0.16 now available!
11/05/2003 10:36 PMMySQL AB, developer of the world's most popular open source database,
has released 4.0.16, the current production release of MySQL. Users
with previous versions are encouraged to download this release.
MySQL 5.0
MySQL 5.0
12/29/2003 11:50 PMChanges in
release 5.0.0 (Development): MySQL has released an alpha of
version 5.0. They include support for stored procedures, but no views
yet.
C
lick here to comment on this entry
God Uses MySQL
God Uses MySQL
11/10/2003 11:40 PM There was a lot of reaction to my recent post about MySQL at Sabre,
most of which I don't have the time or interest to respond to. Too
many people just Don't Get It and Never Will. But I was inspired to
visit the church sign generator and make the image you see with this
post. I think it's amusing. :-) Anyway, life would be so much easier
if people stopped trying to think of MySQL in terms of...
XAO-MySQL-1.01
XAO-MySQL-1.01
11/13/2003 12:45 AMMySQL to XML - XML to MySQL
MySQL to XML - XML to MySQL
10/02/2002 06:05 PMInsert XML in MySQL and export MySQL to XML. The class XMLFile and my
other class such as MySQL Connection, MySQL RecordSet and MySQL Log
are required.
MySQL 4.1.1 Now Available!
MySQL 4.1.1 Now Available!
12/07/2003 12:48 PMMySQL's newest offering, MySQL 4.1.1, has been released. Their second
alpha development release for the current version is now available in
source/binary for the major platforms. There are new features galore,
a more secure authentication scheme and support of multiple table
spaces by MySQL's transa
Use MySQL.
Use MySQL.
03/11/2003 10:45 AMIf you’re using Movable Type, use MySQL. If you have something
against MySQL, use something else, but don’t use DB files. Note:
Here comes the rant....
Using MySQL from PHP
Using MySQL from PHP
03/06/2004 02:00 AM
One of PHP's prime benefits is its close integration with
databases, especially MySQL. Having explained the basics of MySQL,
John Coggeshall turns his attention to demonstrating how to use MySQL
from PHP.
TCB-mysql-0.2
TCB-mysql-0.2
05/26/2004 04:50 PMMySQL Log
MySQL Log
09/28/2002 03:31 AMAdd and show the log provide by other classes such as MySQL Connection
and MySQL Recordset
MySQL 4.0.18
MySQL 4.0.18
05/06/2004 06:50 PMThe worlds most widely used open source database.
PHP vs mysql
PHP vs mysql
10/02/2002 01:58 PMDBD-mysql-2.9004
DBD-mysql-2.9004
07/13/2004 11:40 PMStart Using MySQL
Start Using MySQL
11/27/2002 09:47 PMA Brief introduction in how to use MySQL
PHP Class 'MySQL to XML - XML to MySQL' released