stargeek
PHP news website logo.
home    PHP scripts    articles    seo tools    links    search    contact    shop    realtors


PHP Class 'MySQL to XML - XML to MySQL' released







PHP Class 'MySQL to XML - XML to MySQL'
released

PHP Class 'MySQL to XML - XML to MySQL'
released
10/02/2002 08:10 PM

Insert 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.




This is a GrokNews Entry: (what is grok?)





Similar Items

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 AM
Run 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 PM
This 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 PM
This 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 PM
This 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 PM
This 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 PM
Allow 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 PM
This 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 PM
Functions 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 PM
Add 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 PM
Provide 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 PM
This 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 PM
This 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 PM
This 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 AM
This 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 PM
This 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 PM
This 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 AM
This 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 AM
This 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 PM
You 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 PM
Features: 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 PM
This 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 PM
This 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 PM
This 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 AM
Display 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 AM
RHC 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 AM
This 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 AM
These 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 AM
HTML 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 PM
WebWidgets 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 AM
This 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 AM
Show 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 AM
phplib 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 AM
Show 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 PM
Microsoft 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 PM
This 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 AM
Excellent 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 AM
Object 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 AM
This 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 AM

MySQL: MySQL Administrator Announced


MySQL: MySQL Administrator Announced 01/22/2004 10:26 AM
In 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 AM
In 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 PM
Navicat (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.php3

Navicat (MySQL Client Tool) 4.4.2


Navicat (MySQL Client Tool) 4.4.2 12/12/2003 04:18 PM
The 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 AM
PremiumSoft 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 AM

MySQL 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 AM
A 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 AM
You 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 PM

MySQL 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 PM
MySQL 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 PM

Changes 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 AM

MySQL to XML - XML to MySQL


MySQL to XML - XML to MySQL 10/02/2002 06:05 PM
Insert 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 PM
MySQL'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 AM
If 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 PM

MySQL Log


MySQL Log 09/28/2002 03:31 AM
Add 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 PM
The world’s most widely used open source database.

PHP vs mysql


PHP vs mysql 10/02/2002 01:58 PM

DBD-mysql-2.9004


DBD-mysql-2.9004 07/13/2004 11:40 PM

Start Using MySQL


Start Using MySQL 11/27/2002 09:47 PM
A Brief introduction in how to use MySQL

PHP Class 'MySQL to XML - XML to MySQL' released

The following phrases have been identified by the grok system as matching this entry: messagewash client php connect mysql 4.0 xml php classes load "xml to mysql" program php "xml to mysql"

















Also check out:


Grok

Ipod Porn on the
Rise

Brief Abstract of
Wikipedia's
Mesothelioma Cancer
page

Get first aid
instructions in your
cell phone

IE is crap
JSPWiki gains
podcasting support

Duplicate and Empty
Elements

TAG's Iron Fist
TAG Rejects HLink
Working with a
Metaschema

MySQL to XML - XML
to MySQL

blue2... 24
September 2002

shinyhappy... 25
September 2002

medesignprettyoneday
... 26 September
2002

factsoflife... 1
October 2002

Google's opinion on
Microsoft

SANS/FBI Names Top
20 Network Threats

SANS/FBI Names Top
20 Network Threats

dtddoc step 1:
Parsing a DTD

How To Justify A
Search Engine
Optimization Budget

A Reminder about
PHPCon and Discounts
on It

Question from a
Reader: IDE's for
PHP?

Linux Versus BSD for
Web Applications

New Content
Filtering Options on
AllTheWeb

Netscape
SmartDownload ELU
Not Applicable

class.uri
Handling events in
C#

PHP Class
'ms_dbx_reader'
released

How To Find Out What
Keywords Your
Customers Are
Searching With

ms_dbx_reader
School tool eyes
students' Web habits

Building Accessible
HTML Tables for the
Disabled

Microsoft: Web
Services is About
Business Agility

Obliquid 0.4
released!

NDoc version 1.1
released

EVMS 1.2.0 Released
PHP Class 'COutLook'
released

PHP Class
'numeroaletra'
released

OpenORB 1.3.0
released

PHP Class 'mixer'
released

Bugbear/Tanatos
E-mail Worm Detected

A Blip on the Radar
Google Algo Update
Discussion

COutLook
Tap Java HTTP
authentication

Updated release of
XVIF

Are Yahoo! Sponsor
Listings Worth The
Investment?

numeroaletra
Firebird: a famous
but 'unknown' Open
Source database

Zeev Suraski
Interview at
CodeWalkers.com

The Past, Present
and Future of Web
Services, part 1

Building accessible
tables.

what is grok?